PNG  IHDRxsBIT|d pHYs+tEXtSoftwarewww.inkscape.org<,tEXtComment File Manager

File Manager

Path: /proc/self/root/opt/passenger/src/ruby_supportlib/phusion_passenger/platform_info/

Viewing File: ruby.rb

# encoding: binary
#  Phusion Passenger - https://www.phusionpassenger.com/
#  Copyright (c) 2010-2025 Asynchronous B.V.
#
#  "Passenger", "Phusion Passenger" and "Union Station" are registered
#  trademarks of Asynchronous B.V.
#
#  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 'rbconfig'
require 'etc'
PhusionPassenger.require_passenger_lib 'platform_info'
PhusionPassenger.require_passenger_lib 'platform_info/operating_system'

module PhusionPassenger

  module PlatformInfo
    # Store original $GEM_HOME value so that even if the app customizes
    # $GEM_HOME we can still work with the original value.
    gem_home = ENV['GEM_HOME']
    if gem_home
      gem_home = gem_home.strip.freeze
      gem_home = nil if gem_home.empty?
    end
    GEM_HOME = gem_home

    # Ditto for $GEM_PATH
    gem_path = ENV['GEM_PATH']
    if gem_path
      gem_path = gem_path.strip.freeze
      gem_path = nil if gem_path.empty?
    end
    GEM_PATH = gem_path

    # 'bundle exec' modifies $GEM_HOME and $GEM_PATH so let's
    # store the values that we had before Bundler's modifications.
    gem_home = ENV['BUNDLER_ORIG_GEM_HOME']
    if gem_home
      gem_home = gem_home.strip.freeze
      gem_home = nil if gem_home.empty?
    end
    BUNDLER_ORIG_GEM_HOME = gem_home

    gem_path = ENV['BUNDLER_ORIG_GEM_PATH']
    if gem_path
      gem_path = gem_path.strip.freeze
      gem_path = nil if gem_path.empty?
    end
    BUNDLER_ORIG_GEM_PATH = gem_path

    if defined?(::RUBY_ENGINE)
      RUBY_ENGINE = ::RUBY_ENGINE
    else
      RUBY_ENGINE = "ruby"
    end

    # Returns correct command for invoking the current Ruby interpreter.
    # In case of RVM this function will return the path to the RVM wrapper script
    # that executes the current Ruby interpreter in the currently active gem set.
    def self.ruby_command
      # Detect usage of gem-wrappers: https://github.com/rvm/gem-wrappers
      # This is currently used by RVM >= 1.25, although it's not exclusive to RVM.
      if GEM_HOME && File.exist?("#{GEM_HOME}/wrappers/ruby")
        return "#{GEM_HOME}/wrappers/ruby"
      end

      if in_rvm?
        # Detect old-school RVM wrapper script location.
        name = rvm_ruby_string
        dirs = rvm_paths
        if name && dirs
          dirs.each do |dir|
            filename = "#{dir}/wrappers/#{name}/ruby"
            if File.exist?(filename)
              contents = File.open(filename, 'rb') do |f|
                f.read
              end
              # Old wrapper scripts reference $HOME which causes
              # things to blow up when run by a different user.
              if contents.include?("$HOME")
                filename = nil
              end
            else
              filename = nil
            end
            if filename
              return filename
            end
          end

          # Correctness of these commands are confirmed by mpapis.
          # If we ever encounter a case for which this logic is not sufficient,
          # try mpapis' pseudo code:
          #
          #   rvm_update_prefix  = write_to rvm_path ? "" : "rvmsudo"
          #   rvm_gemhome_prefix  = write_to GEM_HOME ? "" : "rvmsudo"
          #   repair_command  = "#{rvm_update_prefix} rvm get stable && rvm reload && #{rvm_gemhome_prefix} rvm repair all"
          #   wrapper_command = "#{rvm_gemhome_prefix} rvm wrapper #{rvm_ruby_string} --no-prefix --all"
          case rvm_installation_mode
          when :single
            repair_command  = "rvm get stable && rvm reload && rvm repair all"
            wrapper_command = "rvm wrapper #{rvm_ruby_string} --no-prefix --all"
          when :multi
            repair_command  = "rvmsudo rvm get stable && rvm reload && rvmsudo rvm repair all"
            wrapper_command = "rvmsudo rvm wrapper #{rvm_ruby_string} --no-prefix --all"
          when :mixed
            repair_command  = "rvmsudo rvm get stable && rvm reload && rvm repair all"
            wrapper_command = "rvm wrapper #{rvm_ruby_string} --no-prefix --all"
          end

          STDERR.puts "Your RVM wrapper scripts are too old, or some " +
            "wrapper scripts are missing. Please update/regenerate " +
            "them first by running:\n\n" +
            "  #{repair_command}\n\n" +
            "If that doesn't seem to work, please run:\n\n" +
            "  #{wrapper_command}"
          exit 1
        else
          # Something's wrong with the user's RVM installation.
          # Raise an error so that the user knows this instead of
          # having things fail randomly later on.
          # 'name' is guaranteed to be non-nil because rvm_ruby_string
          # already raises an exception on error.
          STDERR.puts "Your RVM installation appears to be broken: the RVM " +
            "path cannot be found. Please fix your RVM installation " +
            "or contact the RVM developers for support."
          exit 1
        end
      else
        return ruby_executable
      end
    end
    memoize :ruby_command

    # Returns the full path to the current Ruby interpreter's executable file.
    # This might not be the actual correct command to use for invoking the Ruby
    # interpreter; use ruby_command instead.
    def self.ruby_executable
      @@ruby_executable ||=
        rb_config['bindir'] + '/' + rb_config['RUBY_INSTALL_NAME'] + rb_config['EXEEXT']
    end

    # Returns whether the Ruby interpreter supports process forking.
    def self.ruby_supports_fork?
      # MRI >= 1.9.2's respond_to? returns false for methods
      # that are not implemented.
      return Process.respond_to?(:fork) &&
        RUBY_ENGINE != "jruby" &&
        RUBY_ENGINE != "macruby" &&
        rb_config['target_os'] !~ /mswin|windows|mingw/
    end

    # Returns whether Phusion Passenger needs Ruby development headers to
    # be available for the current Ruby implementation.
    def self.passenger_needs_ruby_dev_header?
      # Too much of a trouble for JRuby. We can do without it.
      return RUBY_ENGINE != "jruby"
    end

    # Returns the correct 'gem' command for this Ruby interpreter.
    # If `:sudo => true` is given, then the gem command is prefixed by a
    # sudo command if filesystem permissions require this.
    def self.gem_command(options = {})
      command = ruby_tool_command('gem')
      if options[:sudo] && gem_install_requires_sudo?
        command = "#{ruby_sudo_command} #{command}"
      end
      return command
    end
    memoize :gem_command

    # Returns whether running 'gem install' as the current user requires sudo.
    def self.gem_install_requires_sudo?
      `#{gem_command} env` =~ /INSTALLATION DIRECTORY: (.+)/
      if install_dir = $1
        return !File.writable?(install_dir)
      else
        return nil
      end
    end
    memoize :gem_install_requires_sudo?

    # Returns the absolute path to the Rake executable that
    # belongs to the current Ruby interpreter. Returns nil if it
    # doesn't exist.
    #
    # The return value may not be the actual correct invocation
    # for Rake. Use `rake_command` for that.
    def self.rake
      return locate_ruby_tool('rake')
    end
    memoize :rake

    # Returns the correct command string for invoking the Rake executable
    # that belongs to the current Ruby interpreter. Returns nil if Rake is
    # not found.
    def self.rake_command
      ruby_tool_command('rake')
    end
    memoize :rake_command

    # Returns the absolute path to the RSpec runner program that
    # belongs to the current Ruby interpreter. Returns nil if it
    # doesn't exist.
    def self.rspec
      return locate_ruby_tool('rspec')
    end
    memoize :rspec

    # Returns whether the current Ruby interpreter is managed by RVM.
    def self.in_rvm?
      bindir = rb_config['bindir']
      return bindir.include?('/.rvm/') || bindir.include?('/rvm/')
    end

    # If the current Ruby interpreter is managed by RVM, returns all
    # directories in which RVM places its working files. This is usually
    # ~/.rvm or /usr/local/rvm, but in mixed-mode installations there
    # can be multiple such paths.
    #
    # Otherwise returns nil.
    def self.rvm_paths
      if in_rvm?
        result = []
        [ENV['rvm_path'], "#{PhusionPassenger.home_dir}/.rvm", "/usr/local/rvm"].each do |path|
          next if path.nil?
          rubies_path = File.join(path, 'rubies')
          wrappers_path = File.join(path, 'wrappers')
          gems_path = File.join(path, 'gems')
          if File.directory?(path) && (File.directory?(rubies_path) ||
             File.directory?(wrappers_path) || File.directory?(gems_path))
            result << path
          end
        end
        if result.empty?
          # Failure to locate the RVM path is probably caused by the
          # user customizing $rvm_path. Older RVM versions don't
          # export $rvm_path, making us unable to detect its value.
          STDERR.puts "Unable to locate the RVM path. Your RVM installation " +
            "is probably too old. Please update it with " +
            "'rvm get head && rvm reload && rvm repair all'."
          exit 1
        else
          return result
        end
      else
        return nil
      end
    end
    memoize :rvm_paths

    # If the current Ruby interpreter is managed by RVM, returns the
    # RVM name which identifies the current Ruby interpreter plus the
    # currently active gemset, e.g. something like this:
    # "ruby-1.9.2-p0@mygemset"
    #
    # Returns nil otherwise.
    def self.rvm_ruby_string
      if in_rvm?
        # Getting the RVM name of the Ruby interpreter ("ruby-1.9.2")
        # isn't so hard, we can extract it from the #ruby_executable
        # string. Getting the gemset name is a bit harder, so let's
        # try various strategies...

        # $GEM_HOME usually contains the gem set name.
        # It may be something like:
        #   /Users/hongli/.rvm/gems/ruby-1.9.3-p392
        # But also:
        #   /home/bitnami/.rvm/gems/ruby-1.9.3-p385-perf@njist325/ruby/1.9.1
        #
        # Caveat when we're executed through 'bundle exec':
        # if `bundle install` was run with `--path=`, then `bundle exec`
        # will modify $GEM_HOME to the --path directory. That's
        # why we need to parse the version of $GEM_HOME *before*
        # `bundle exec` had modified it.
        [GEM_HOME, BUNDLER_ORIG_GEM_HOME].each do |gem_home|
          if gem_home && gem_home =~ %r{rvm/gems/(.+)}
            return $1.sub(/\/.*/, '')
          end
        end

        # User might have explicitly set GEM_HOME to a custom directory,
        # or might have nuked $GEM_HOME. Extract info from $GEM_PATH.
        [GEM_PATH, BUNDLER_ORIG_GEM_PATH].each do |gem_path|
          if gem_path
            gem_path.split(':').each do |gem_path_part|
              if gem_path_part =~ %r{rvm/gems/(.+)}
                return $1.sub(/\/.*/, '')
              end
            end
          end
        end

        # That failed too. Try extracting info from from $LOAD_PATH.
        matching_path = $LOAD_PATH.find_all do |item|
          item.include?("rvm/gems/") || item.include?("rvm/rubies/")
        end
        if matching_path && !matching_path.empty?
          subpath = matching_path.to_s.gsub(/^.*rvm\/(gems|rubies)\//, '')
          result = subpath.split('/').first
          return result if result
        end

        # On Ruby 1.9, $LOAD_PATH does not contain any gem paths until
        # at least one gem has been required so the above can fail.
        # We're out of options now, we can't detect the gem set.
        # Raise an exception so that the user knows what's going on
        # instead of having things fail in obscure ways later.
        STDERR.puts "Unable to autodetect the currently active RVM gem " +
          "set name. This could happen if you ran this program using 'sudo' " +
          "instead of 'rvmsudo'. When using RVM, you're always supposed to " +
          "use 'rvmsudo' instead of 'sudo!'.\n\n" +
          "Please try rerunning this program using 'rvmsudo'. If that " +
          "doesn't help, please contact this program's author for support."
        exit 1
      end
      return nil
    end
    memoize :rvm_ruby_string

    # Returns the RVM installation mode:
    # :single - RVM is installed in single-user mode.
    # :multi  - RVM is installed in multi-user mode.
    # :mixed  - RVM is in a mixed-mode installation.
    # nil     - The current Ruby interpreter is not using RVM.
    def self.rvm_installation_mode
      if in_rvm?
        if ENV['rvm_path'] =~ /\.rvm/
          return :single
        else
          if GEM_HOME =~ /\.rvm/
            return :mixed
          else
            return :multi
          end
        end
      else
        return nil
      end
    end

    # Returns either 'sudo' or 'rvmsudo' depending on whether the current
    # Ruby interpreter is managed by RVM.
    def self.ruby_sudo_command
      if in_rvm?
        return "rvmsudo"
      else
        return "sudo"
      end
    end

    # Returns a `sudo` or `rvmsudo` command that spawns a shell, depending
    # on whether the current Ruby interpreter is managed by RVM.
    def self.ruby_sudo_shell_command(args = nil)
      if in_rvm?
        shell = ENV['SHELL'].to_s
        if shell.empty?
          begin
            user = Etc.getpwuid(0)
          rescue ArgumentError
            user = nil
          end
          shell = user.shell if user
          shell = "bash" if !shell || shell.empty?
        end
        result = "rvmsudo "
        result << "#{args} " if args
        result << shell
        return result
      else
        return "sudo -s #{args}".strip
      end
    end

    # Locates a Ruby tool, e.g. 'gem', 'rake', 'bundle', etc. Instead of
    # naively looking in $PATH, this function uses a variety of search heuristics
    # to find the tool that's really associated with the current Ruby interpreter.
    # It should never locate a tool that's actually associated with a different
    # Ruby interpreter.
    # Returns nil when nothing's found.
    #
    # This method only returns the path to the tool script. Running this script
    # directly does not necessarily mean that it's run under the correct Ruby
    # interpreter. You may have to prepend it with the Ruby command. Use
    # `ruby_tool_command` if you want to get a command that you can execute.
    def self.locate_ruby_tool(name)
      result = locate_ruby_tool_by_basename(name)
      if !result
        exeext = rb_config['EXEEXT']
        exeext = nil if exeext.empty?
        if exeext
          result = locate_ruby_tool_by_basename("#{name}#{exeext}")
        end
        if !result
          result = locate_ruby_tool_by_basename(transform_according_to_ruby_exec_format(name))
        end
        if !result && exeext
          result = locate_ruby_tool_by_basename(transform_according_to_ruby_exec_format(name) + exeext)
        end
      end
      return result
    end

    # Locates a Ruby tool command, e.g. 'gem', 'rake', 'bundle', etc. Instead of
    # naively looking in $PATH, this function uses a variety of search heuristics
    # to find the command that's really associated with the current Ruby interpreter.
    # It should never locate a command that's actually associated with a different
    # Ruby interpreter.
    # Returns nil when nothing's found.
    #
    # Unlike `locate_ruby_tool`, which only returns the path to the tool script,
    # this method returns a full command that you can execute. The returned command
    # guarantees that the tool is run under the correct Ruby interpreter.
    def self.ruby_tool_command(name)
      path = locate_ruby_tool(name)
      if path
        if is_ruby_program?(path)
          "#{ruby_command} #{path}"
        else
          # The found tool is a wrapper script, e.g. in RVM's ~/.rvm/wrappers.
          # In this case, don't include the Ruby command in the result.
          path
        end
      else
        nil
      end
    end

  private
    def self.locate_ruby_tool_by_basename(name)
      if os_name_simple == "macosx" &&
         ruby_command =~ %r(\A/System/Library/Frameworks/Ruby.framework/Versions/.*?/usr/bin/ruby\Z)
        # On OS X we must look for Ruby binaries in /usr/bin.
        # RubyGems puts executables (e.g. 'rake') in there, not in
        # /System/Libraries/(...)/bin.
        filename = "/usr/bin/#{name}"
      else
        filename = File.dirname(ruby_command) + "/#{name}"
      end

      if !File.file?(filename) || !File.executable?(filename)
        # RubyGems might put binaries in a directory other
        # than Ruby's bindir. Debian packaged RubyGems and
        # DebGem packaged RubyGems are the prime examples.
        begin
          require 'rubygems' unless defined?(Gem)
          filename = Gem.bindir + "/#{name}"
        rescue LoadError
          filename = nil
        end
      end

      if !filename || !File.file?(filename) || !File.executable?(filename)
        # Looks like it's not in the RubyGems bindir. Search in $PATH, but
        # be very careful about this because whatever we find might belong
        # to a different Ruby interpreter than the current one.
        ENV['PATH'].split(':').each do |dir|
          filename = "#{dir}/#{name}"
          if File.file?(filename) && File.executable?(filename)
            shebang = File.open(filename, 'rb') do |f|
              f.readline.strip
            end
            if shebang == "#!#{ruby_command}"
              # Looks good.
              break
            end
          end

          # Not found. Try next path.
          filename = nil
        end
      end

      filename
    end
    private_class_method :locate_ruby_tool_by_basename

    def self.is_ruby_program?(filename)
      File.open(filename, 'rb') do |f|
        return f.readline =~ /ruby/
      end
    rescue EOFError
      return false
    end
    private_class_method :is_ruby_program?

    # Deduce Ruby's --program-prefix and --program-suffix from its install name
    # and transforms the given input name accordingly.
    #
    #   transform_according_to_ruby_exec_format("rake")    => "jrake", "rake1.8", etc
    def self.transform_according_to_ruby_exec_format(name)
      install_name = rb_config['RUBY_INSTALL_NAME']
      if install_name.include?('ruby')
        format = install_name.sub('ruby', '%s')
        return sprintf(format, name)
      else
        return name
      end
    end
    private_class_method :transform_according_to_ruby_exec_format
  end

end # module PhusionPassenger
b IDATxytVսϓ22 A@IR :hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-EIENT ;@xT.i%-X}SvS5.r/UHz^_$-W"w)Ɗ/@Z &IoX P$K}JzX:;` &, ŋui,e6mX ԵrKb1ԗ)DADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADA݀!I*]R;I2$eZ#ORZSrr6mteffu*((Pu'v{DIߔ4^pIm'77WEEE;vƎ4-$]'RI{\I&G :IHJ DWBB=\WR޽m o$K(V9ABB.}jѢv`^?IOȅ} ڶmG}T#FJ`56$-ھ}FI&v;0(h;Б38CӧOWf!;A i:F_m9s&|q%=#wZprrrla A &P\\СC[A#! {olF} `E2}MK/vV)i{4BffV\|ۭX`b@kɶ@%i$K z5zhmX[IXZ` 'b%$r5M4º/l ԃߖxhʔ)[@=} K6IM}^5k㏷݆z ΗÿO:gdGBmyT/@+Vɶ纽z񕏵l.y޴it뭷zV0[Y^>Wsqs}\/@$(T7f.InݺiR$푔n.~?H))\ZRW'Mo~v Ov6oԃxz! S,&xm/yɞԟ?'uaSѽb,8GלKboi&3t7Y,)JJ c[nzӳdE&KsZLӄ I?@&%ӟ۶mSMMњ0iؐSZ,|J+N ~,0A0!5%Q-YQQa3}$_vVrf9f?S8`zDADADADADADADADADAdqP,تmMmg1V?rSI꒟]u|l RCyEf٢9 jURbztѰ!m5~tGj2DhG*{H9)꒟ר3:(+3\?/;TUݭʴ~S6lڧUJ*i$d(#=Yݺd{,p|3B))q:vN0Y.jkק6;SɶVzHJJЀ-utѹսk>QUU\޲~]fFnK?&ߡ5b=z9)^|u_k-[y%ZNU6 7Mi:]ۦtk[n X(e6Bb."8cۭ|~teuuw|ήI-5"~Uk;ZicEmN/:]M> cQ^uiƞ??Ңpc#TUU3UakNwA`:Y_V-8.KKfRitv޲* 9S6ֿj,ՃNOMߤ]z^fOh|<>@Å5 _/Iu?{SY4hK/2]4%it5q]GGe2%iR| W&f*^]??vq[LgE_3f}Fxu~}qd-ږFxu~I N>\;͗O֊:̗WJ@BhW=y|GgwܷH_NY?)Tdi'?խwhlmQi !SUUsw4kӺe4rfxu-[nHtMFj}H_u~w>)oV}(T'ebʒv3_[+vn@Ȭ\S}ot}w=kHFnxg S 0eޢm~l}uqZfFoZuuEg `zt~? b;t%>WTkķh[2eG8LIWx,^\thrl^Ϊ{=dž<}qV@ ⠨Wy^LF_>0UkDuʫuCs$)Iv:IK;6ֲ4{^6եm+l3>݆uM 9u?>Zc }g~qhKwڭeFMM~pМuqǿz6Tb@8@Y|jx](^]gf}M"tG -w.@vOqh~/HII`S[l.6nØXL9vUcOoB\xoǤ'T&IǍQw_wpv[kmO{w~>#=P1Pɞa-we:iǏlHo׈꒟f9SzH?+shk%Fs:qVhqY`jvO'ρ?PyX3lх]˾uV{ݞ]1,MzYNW~̈́ joYn}ȚF߾׮mS]F z+EDxm/d{F{-W-4wY듏:??_gPf ^3ecg ҵs8R2מz@TANGj)}CNi/R~}c:5{!ZHӋӾ6}T]G]7W6^n 9*,YqOZj:P?Q DFL|?-^.Ɵ7}fFh׶xe2Pscz1&5\cn[=Vn[ĶE鎀uˌd3GII k;lNmشOuuRVfBE]ۣeӶu :X-[(er4~LHi6:Ѻ@ԅrST0trk%$Č0ez" *z"T/X9|8.C5Feg}CQ%͞ˣJvL/?j^h&9xF`њZ(&yF&Iݻfg#W;3^{Wo^4'vV[[K';+mӍִ]AC@W?1^{එyh +^]fm~iԵ]AB@WTk̏t uR?l.OIHiYyԶ]Aˀ7c:q}ힽaf6Z~қm(+sK4{^6}T*UUu]n.:kx{:2 _m=sAߤU@?Z-Vކеz왍Nэ{|5 pڶn b p-@sPg]0G7fy-M{GCF'%{4`=$-Ge\ eU:m+Zt'WjO!OAF@ik&t݆ϥ_ e}=]"Wz_.͜E3leWFih|t-wZۍ-uw=6YN{6|} |*={Ѽn.S.z1zjۻTH]흾 DuDvmvK.`V]yY~sI@t?/ϓ. m&["+P?MzovVЫG3-GRR[(!!\_,^%?v@ҵő m`Y)tem8GMx.))A]Y i`ViW`?^~!S#^+ѽGZj?Vģ0.))A꨷lzL*]OXrY`DBBLOj{-MH'ii-ϰ ok7^ )쭡b]UXSְmռY|5*cֽk0B7镹%ڽP#8nȎq}mJr23_>lE5$iwui+ H~F`IjƵ@q \ @#qG0".0" l`„.0! ,AQHN6qzkKJ#o;`Xv2>,tێJJ7Z/*A .@fفjMzkg @TvZH3Zxu6Ra'%O?/dQ5xYkU]Rֽkق@DaS^RSּ5|BeHNN͘p HvcYcC5:y #`οb;z2.!kr}gUWkyZn=f Pvsn3p~;4p˚=ē~NmI] ¾ 0lH[_L hsh_ғߤc_њec)g7VIZ5yrgk̞W#IjӪv>՞y睝M8[|]\շ8M6%|@PZڨI-m>=k='aiRo-x?>Q.}`Ȏ:Wsmu u > .@,&;+!!˱tﭧDQwRW\vF\~Q7>spYw$%A~;~}6¾ g&if_=j,v+UL1(tWake:@Ș>j$Gq2t7S?vL|]u/ .(0E6Mk6hiۺzښOrifޱxm/Gx> Lal%%~{lBsR4*}{0Z/tNIɚpV^#Lf:u@k#RSu =S^ZyuR/.@n&΃z~B=0eg뺆#,Þ[B/?H uUf7y Wy}Bwegל`Wh(||`l`.;Ws?V@"c:iɍL֯PGv6zctM̠':wuW;d=;EveD}9J@B(0iհ bvP1{\P&G7D޴Iy_$-Qjm~Yrr&]CDv%bh|Yzni_ˆR;kg}nJOIIwyuL}{ЌNj}:+3Y?:WJ/N+Rzd=hb;dj͒suݔ@NKMԄ jqzC5@y°hL m;*5ezᕏ=ep XL n?מ:r`۵tŤZ|1v`V뽧_csج'ߤ%oTuumk%%%h)uy]Nk[n 'b2 l.=͜E%gf$[c;s:V-͞WߤWh-j7]4=F-X]>ZLSi[Y*We;Zan(ӇW|e(HNNP5[= r4tP &0<pc#`vTNV GFqvTi*Tyam$ߏWyE*VJKMTfFw>'$-ؽ.Ho.8c"@DADADADADADADADADA~j*֘,N;Pi3599h=goضLgiJ5փy~}&Zd9p֚ e:|hL``b/d9p? fgg+%%hMgXosج, ΩOl0Zh=xdjLmhݻoO[g_l,8a]٭+ӧ0$I]c]:粹:Teꢢ"5a^Kgh,&= =՟^߶“ߢE ܹS J}I%:8 IDAT~,9/ʃPW'Mo}zNƍ쨓zPbNZ~^z=4mswg;5 Y~SVMRXUյڱRf?s:w ;6H:ºi5-maM&O3;1IKeamZh͛7+##v+c ~u~ca]GnF'ټL~PPPbn voC4R,ӟgg %hq}@#M4IÇ Oy^xMZx ) yOw@HkN˖-Sǎmb]X@n+i͖!++K3gd\$mt$^YfJ\8PRF)77Wא!Cl$i:@@_oG I{$# 8磌ŋ91A (Im7֭>}ߴJq7ޗt^ -[ԩSj*}%]&' -ɓ'ꫯVzzvB#;a 7@GxI{j޼ƌ.LÇWBB7`O"I$/@R @eee@۷>}0,ɒ2$53Xs|cS~rpTYYY} kHc %&k.], @ADADADADADADADADA@lT<%''*Lo^={رc5h %$+CnܸQ3fҥK}vUVVs9G R,_{xˇ3o߾;TTTd}馛]uuuG~iԩ@4bnvmvfϞ /Peeeq}}za I~,誫{UWW뮻}_~YƍSMMMYχ֝waw\ďcxꩧtEƍկ_?۷5@u?1kNׯWzz/wy>}zj3 k(ٺuq_Zvf̘:~ ABQ&r|!%KҥKgԞ={<_X-z !CyFUUz~ ABQIIIjݺW$UXXDٳZ~ ABQƍecW$<(~<RSSvZujjjԧOZQu@4 8m&&&jԩg$ď1h ͟?_{768@g =@`)))5o6m3)ѣƌJ;wҿUTT /KZR{~a=@0o<*狔iFɶ[ˎ;T]]OX@?K.ۈxN pppppppppppppppppPfl߾] ,{ァk۶mڿo5BTӦMӴiӴ|r DB2e|An!Dy'tkΝ[A $***t5' "!駟oaDnΝ:t֭[gDШQ06qD;@ x M6v(PiizmZ4ew"@̴ixf [~-Fٱc&IZ2|n!?$@{[HTɏ#@hȎI# _m(F /6Z3z'\r,r!;w2Z3j=~GY7"I$iI.p_"?pN`y DD?: _  Gÿab7J !Bx@0 Bo cG@`1C[@0G @`0C_u V1 aCX>W ` | `!<S `"<. `#c`?cAC4 ?c p#~@0?:08&_MQ1J h#?/`7;I  q 7a wQ A 1 Hp !#<8/#@1Ul7=S=K.4Z?E_$i@!1!E4?`P_  @Bă10#: "aU,xbFY1 [n|n #'vEH:`xb #vD4Y hi.i&EΖv#O H4IŶ}:Ikh @tZRF#(tXҙzZ ?I3l7q@õ|ۍ1,GpuY Ꮿ@hJv#xxk$ v#9 5 }_$c S#=+"K{F*m7`#%H:NRSp6I?sIՖ{Ap$I$I:QRv2$Z @UJ*$]<FO4IENDB`