chrislo-sourceclassifier 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/HISTORY +7 -0
 - data/Manifest +1 -0
 - data/README.textile +9 -1
 - data/Rakefile +33 -14
 - data/sourceclassifier.gemspec +3 -3
 - data/trainer.bin +2587 -1168
 - metadata +3 -2
 
    
        data/HISTORY
    ADDED
    
    
    
        data/Manifest
    CHANGED
    
    
    
        data/README.textile
    CHANGED
    
    | 
         @@ -2,6 +2,8 @@ h1. SourceClassifier 
     | 
|
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            Source classifier identifies programming language using a Bayesian classifier trained on a corpus generated from the "Computer Language Benchmarks Game":http://shootout.alioth.debian.org/ . It is written in Ruby and availabe as a gem. To train the classifier to identify new languages download the sources from github.
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
      
 5 
     | 
    
         
            +
            Out of the box SourceClassifier recognises Css, C, Java, Javascript, Perl, Php, Python and Ruby.
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
       5 
7 
     | 
    
         
             
            h2. Usage
         
     | 
| 
       6 
8 
     | 
    
         | 
| 
       7 
9 
     | 
    
         
             
            First install the gem using github as a source
         
     | 
| 
         @@ -44,7 +46,13 @@ Download the sources from github and in the directory run the training rake test 
     | 
|
| 
       44 
46 
     | 
    
         | 
| 
       45 
47 
     | 
    
         
             
            In the ./sources directory are subdirectories for each language you wish to be able to identify. Each subdirectory contains examples of programs written in that language. The name of the directory is significant - it is the value returned by the SourceClassifier.identify() method.
         
     | 
| 
       46 
48 
     | 
    
         | 
| 
       47 
     | 
    
         
            -
            The rake task populate can be used to build these subdirectories from a checkout of the "computer language shootout sources":http://alioth.debian.org/scm/?group_id=30402 but you are free to train the classifier using any available examples.
         
     | 
| 
      
 49 
     | 
    
         
            +
            The rake task populate:shootout can be used to build these subdirectories from a checkout of the "computer language shootout sources":http://alioth.debian.org/scm/?group_id=30402 but you are free to train the classifier using any available examples. Edit the Rakefile to point to your checkout of the shootout sources
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
            Run rake populate:css to grab the css files used to train the classifier from csszengarden.com. 
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
            To populate the sources directory using all available sources run
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
              $ rake populate:all
         
     | 
| 
       48 
56 
     | 
    
         | 
| 
       49 
57 
     | 
    
         
             
            h2. Acknowledgments
         
     | 
| 
       50 
58 
     | 
    
         | 
    
        data/Rakefile
    CHANGED
    
    | 
         @@ -6,7 +6,7 @@ require 'find' 
     | 
|
| 
       6 
6 
     | 
    
         
             
            require 'fileutils'
         
     | 
| 
       7 
7 
     | 
    
         
             
            require 'echoe'
         
     | 
| 
       8 
8 
     | 
    
         | 
| 
       9 
     | 
    
         
            -
            Echoe.new('sourceclassifier', '0.2. 
     | 
| 
      
 9 
     | 
    
         
            +
            Echoe.new('sourceclassifier', '0.2.2') do |p|
         
     | 
| 
       10 
10 
     | 
    
         
             
              p.description    = "Determine the programming language used in a code snippet"
         
     | 
| 
       11 
11 
     | 
    
         
             
              p.url            = "http://github.com/chrislo/sourceclassifier/tree/master"
         
     | 
| 
       12 
12 
     | 
    
         
             
              p.author         = "Chris Lowis"
         
     | 
| 
         @@ -26,7 +26,7 @@ module Find 
     | 
|
| 
       26 
26 
     | 
    
         
             
              end
         
     | 
| 
       27 
27 
     | 
    
         
             
              module_function :match
         
     | 
| 
       28 
28 
     | 
    
         
             
            end	
         
     | 
| 
       29 
     | 
    
         
            -
             
     | 
| 
      
 29 
     | 
    
         
            +
             
         
     | 
| 
       30 
30 
     | 
    
         
             
            SHOOTOUT_CVS_ROOT = '/Users/chris/tmp/shootout-scm-2008-08-24/'
         
     | 
| 
       31 
31 
     | 
    
         | 
| 
       32 
32 
     | 
    
         
             
            task :default => [:test_units]
         
     | 
| 
         @@ -38,23 +38,42 @@ Rake::TestTask.new("test_units") { |t| 
     | 
|
| 
       38 
38 
     | 
    
         
             
              t.warning = false
         
     | 
| 
       39 
39 
     | 
    
         
             
            }
         
     | 
| 
       40 
40 
     | 
    
         | 
| 
       41 
     | 
    
         
            -
             
     | 
| 
       42 
     | 
    
         
            -
             
     | 
| 
       43 
     | 
    
         
            -
               
     | 
| 
      
 41 
     | 
    
         
            +
            namespace :populate do
         
     | 
| 
      
 42 
     | 
    
         
            +
              desc "Run all population rake tasks"
         
     | 
| 
      
 43 
     | 
    
         
            +
              task :all => ['shootout','css']
         
     | 
| 
       44 
44 
     | 
    
         | 
| 
       45 
     | 
    
         
            -
               
     | 
| 
       46 
     | 
    
         
            -
             
     | 
| 
       47 
     | 
    
         
            -
                 
     | 
| 
       48 
     | 
    
         
            -
             
     | 
| 
      
 45 
     | 
    
         
            +
              desc "Populate training data directories from shootout sources"
         
     | 
| 
      
 46 
     | 
    
         
            +
              task :shootout do
         
     | 
| 
      
 47 
     | 
    
         
            +
                languages = %w[gcc java javascript perl php python ruby]
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
                languages.each do |language|
         
     | 
| 
      
 50 
     | 
    
         
            +
                  # create directories
         
     | 
| 
      
 51 
     | 
    
         
            +
                  target_dir = "./sources/#{language}"
         
     | 
| 
      
 52 
     | 
    
         
            +
                  FileUtils.mkdir_p target_dir
         
     | 
| 
       49 
53 
     | 
    
         | 
| 
       50 
     | 
    
         
            -
             
     | 
| 
       51 
     | 
    
         
            -
             
     | 
| 
       52 
     | 
    
         
            -
             
     | 
| 
       53 
     | 
    
         
            -
             
     | 
| 
       54 
     | 
    
         
            -
             
     | 
| 
      
 54 
     | 
    
         
            +
                  # copy source files to appropriate directories
         
     | 
| 
      
 55 
     | 
    
         
            +
                  Find.match(SHOOTOUT_CVS_ROOT) do |file| 
         
     | 
| 
      
 56 
     | 
    
         
            +
                    this_ext = File.extname(file).downcase
         
     | 
| 
      
 57 
     | 
    
         
            +
                    if this_ext == ".#{language}"
         
     | 
| 
      
 58 
     | 
    
         
            +
                      FileUtils.cp file, "#{target_dir}/#{File.basename(file)}"
         
     | 
| 
      
 59 
     | 
    
         
            +
                    end
         
     | 
| 
       55 
60 
     | 
    
         
             
                  end
         
     | 
| 
       56 
61 
     | 
    
         
             
                end
         
     | 
| 
       57 
62 
     | 
    
         
             
              end
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
              desc "Populate using css from csszengarden"
         
     | 
| 
      
 65 
     | 
    
         
            +
              task :css do
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
                target_dir = "./sources/css"
         
     | 
| 
      
 68 
     | 
    
         
            +
                FileUtils.mkdir_p target_dir
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
                (100..200).each do |i|
         
     | 
| 
      
 71 
     | 
    
         
            +
                  url = "http://csszengarden.com/#{i}/#{i}.css"
         
     | 
| 
      
 72 
     | 
    
         
            +
                  puts "Fetching #{url}"
         
     | 
| 
      
 73 
     | 
    
         
            +
                  system("curl -o ./sources/css/csszengarden_#{i}.css #{url}")
         
     | 
| 
      
 74 
     | 
    
         
            +
                  sleep(2) # be kind
         
     | 
| 
      
 75 
     | 
    
         
            +
                end
         
     | 
| 
      
 76 
     | 
    
         
            +
              end
         
     | 
| 
       58 
77 
     | 
    
         
             
            end
         
     | 
| 
       59 
78 
     | 
    
         | 
| 
       60 
79 
     | 
    
         
             
            desc "Train using training data directory"
         
     | 
    
        data/sourceclassifier.gemspec
    CHANGED
    
    | 
         @@ -2,15 +2,15 @@ 
     | 
|
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            Gem::Specification.new do |s|
         
     | 
| 
       4 
4 
     | 
    
         
             
              s.name = %q{sourceclassifier}
         
     | 
| 
       5 
     | 
    
         
            -
              s.version = "0.2. 
     | 
| 
      
 5 
     | 
    
         
            +
              s.version = "0.2.2"
         
     | 
| 
       6 
6 
     | 
    
         | 
| 
       7 
7 
     | 
    
         
             
              s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
         
     | 
| 
       8 
8 
     | 
    
         
             
              s.authors = ["Chris Lowis"]
         
     | 
| 
       9 
     | 
    
         
            -
              s.date = %q{ 
     | 
| 
      
 9 
     | 
    
         
            +
              s.date = %q{2009-01-06}
         
     | 
| 
       10 
10 
     | 
    
         
             
              s.description = %q{Determine the programming language used in a code snippet}
         
     | 
| 
       11 
11 
     | 
    
         
             
              s.email = %q{chris.lowis@gmail.com}
         
     | 
| 
       12 
12 
     | 
    
         
             
              s.extra_rdoc_files = ["lib/sourceclassifier.rb", "lib/trainer.rb", "README.textile"]
         
     | 
| 
       13 
     | 
    
         
            -
              s.files = ["examples/example.rb", "lib/sourceclassifier.rb", "lib/trainer.rb", "Rakefile", "README.textile", "sourceclassifier.gemspec", "test/fixtures/sources/gcc/ackermann.gcc-2.gcc", "test/fixtures/sources/python/ackermann.python", "test/fixtures/sources/ruby/ackermann.ruby", "test/test_source_classifier.rb", "test/test_trainer.rb", "trainer.bin", "Manifest"]
         
     | 
| 
      
 13 
     | 
    
         
            +
              s.files = ["examples/example.rb", "lib/sourceclassifier.rb", "lib/trainer.rb", "Rakefile", "HISTORY", "README.textile", "sourceclassifier.gemspec", "test/fixtures/sources/gcc/ackermann.gcc-2.gcc", "test/fixtures/sources/python/ackermann.python", "test/fixtures/sources/ruby/ackermann.ruby", "test/test_source_classifier.rb", "test/test_trainer.rb", "trainer.bin", "Manifest"]
         
     | 
| 
       14 
14 
     | 
    
         
             
              s.has_rdoc = true
         
     | 
| 
       15 
15 
     | 
    
         
             
              s.homepage = %q{http://github.com/chrislo/sourceclassifier/tree/master}
         
     | 
| 
       16 
16 
     | 
    
         
             
              s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Sourceclassifier", "--main", "README.textile"]
         
     | 
    
        data/trainer.bin
    CHANGED
    
    | 
         @@ -1,1193 +1,2610 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            o:Classifier::Bayes:@categories{ 
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 1 
     | 
    
         
            +
            o:Classifier::Bayes:@categories{
         
     | 
| 
      
 2 
     | 
    
         
            +
            infini:selfthreadsremovethreadi:
         
     | 
| 
      
 3 
     | 
    
         
            +
            integi:joinsequppi:xrangemin_depthi:first_lockreleasi:
         
     | 
| 
      
 4 
     | 
    
         
            +
            :maxi:	pieci:	()))i:pressurizedbottle3i:waitobject__init__selfi:	codei:usrbinpythoni&:])]i:
         
     | 
| 
      
 5 
     | 
    
         
            +
            removi:&sconnect_exgethostbynamelocalhosti:solutionxi:
         
     | 
| 
      
 6 
     | 
    
         
            +
            36524i:get_portsocki:a1cycli:	firei:t0t0dti:	nodei
         
     | 
| 
      
 7 
     | 
    
         
            +
            :
         
     | 
| 
      
 8 
     | 
    
         
            +
            writei:unpressurizedemptii:)(i:x1yi:503i:('\i:
         
     | 
| 
      
 9 
     | 
    
         
            +
            my_idi:greateri:
         
     | 
| 
      
 10 
     | 
    
         
            +
            cjoini:	aliai:singletoni:olappendbi:
         
     | 
| 
      
 11 
     | 
    
         
            +
            fibn1i:sqrtselfdotselfi:10yi:wai:lenonepossi:
         
     | 
| 
      
 12 
     | 
    
         
            +
            statei:creaturethreadi:countwordi:	sendi:951592254519715870e05i:instanci:
         
     | 
| 
      
 13 
     | 
    
         
            +
            vdotvi:accesswaiti:maxsizi:heii:	booli:):iU:workerworker_idi:'),i:'(\i:484143144246472090e00i:perm1_insrperm1_pop0i:	sqrti:switcherobjecti:antoini:sort_seqseqi:threadfunmy_numbi:ssockaccepti:(agcctgggcgacagagcgagactccgtctcaaaaai:1jgrid1reshapesi:secondi:bottle3i:dictewi:
         
     | 
| 
      
 14 
     | 
    
         
            +
            adapti:sol_socketi:instanceappendclsargi:[~(i:lambdai:numi(:rational_taylor_serii:
         
     | 
| 
      
 15 
     | 
    
         
            +
            _exiti:agggtacgtatacgtacccti:	'=='i:stringofmasksmaski:().i:bottle_checka1i:leni:
         
     | 
| 
      
 16 
     | 
    
         
            +
            ())):i:pi_tmp0i:fmti:#selfgselfy0selft0selft1gy0t0t1i:181016i:fxyi:
         
     | 
| 
      
 17 
     | 
    
         
            +
            availi:reversefilepythonvi:	fib3i:messagi:create_coroutinen1i:
         
     | 
| 
      
 18 
     | 
    
         
            +
            classi;:""i:initialstateselfi	:	basei:
         
     | 
| 
      
 19 
     | 
    
         
            +
            uranui	:dtypenpdoubli:__rmul__yxi:heapsortni:binarii:viai:
         
     | 
| 
      
 20 
     | 
    
         
            +
            rddddi:
         
     | 
| 
      
 21 
     | 
    
         
            +
            deltai:	wildi:stdouti	:mycomplexi:k05i:findali:
         
     | 
| 
      
 22 
     | 
    
         
            +
            fib1fi:xrangesi:joininput_zooi:%.i:	8193i:sixi:hash1ki:socketi:
         
     | 
| 
      
 23 
     | 
    
         
            +
            mallni:selfpossiblemovesxii:buckethas_keyvi:
         
     | 
| 
      
 24 
     | 
    
         
            +
            '>;':i:285885980666130812e04i:flips_counti	:
         
     | 
| 
      
 25 
     | 
    
         
            +
            foundi:seqappendi:
         
     | 
| 
      
 26 
     | 
    
         
            +
            derivi:$threadstart_new_threadthreadfuni:
         
     | 
| 
      
 27 
     | 
    
         
            +
            to_goi
         
     | 
| 
      
 28 
     | 
    
         
            +
            :sloweri:lodi:[:,i:queuewaitobjecti:23ki:server_socki:clientmsg_counti:	):",i:kimi:considi:bottlechecka1i:	nonei:printsolutionsoluti:returnsocki:selfsumi	:leti:)/(i	:y0newtony010fooi:
         
     | 
| 
      
 29 
     | 
    
         
            +
            numeri	:accessi:mainisliceitertoolsislici:selfadothi:vectori:"}i:sumeval_aijuji:(*i:complianti:selfstateinitialsti:
         
     | 
| 
      
 30 
     | 
    
         
            +
            perm1i
         
     | 
| 
      
 31 
     | 
    
         
            +
            :sumblabi:	bodii:xrange1n1i:.,i:
         
     | 
| 
      
 32 
     | 
    
         
            +
            fibn2i:unitiseselfi:[(i:	sumgi:selfcondnotifyali:linetranslatetransspliti:
         
     | 
| 
      
 33 
     | 
    
         
            +
            groupi:
         
     | 
| 
      
 34 
     | 
    
         
            +
            pistri:yeti:integri:__init__selfgy0t0t1i:	4096i:selfpressuri:\i=:
         
     | 
| 
      
 35 
     | 
    
         
            +
            thingi:create_coroutineni:	typei:bottlestatesealedsti:nxni:
         
     | 
| 
      
 36 
     | 
    
         
            +
            nativi:
         
     | 
| 
      
 37 
     | 
    
         
            +
            degrei:out_lockacquiri:fannkuchni:	aloni:
         
     | 
| 
      
 38 
     | 
    
         
            +
            aliasi:xr_sizei:
         
     | 
| 
      
 39 
     | 
    
         
            +
            bakeri
         
     | 
| 
      
 40 
     | 
    
         
            +
            :
         
     | 
| 
      
 41 
     | 
    
         
            +
            knowni:ray_sphereselfi:selfgridindi:prepari:.iK:nsievemi:countitemi:hash2foo_9999i:fibopythonvi:
         
     | 
| 
      
 42 
     | 
    
         
            +
            loweri:performi:enumeratebodii:burleii:-i@:with_stati:
         
     | 
| 
      
 43 
     | 
    
         
            +
            )[::-i:230417297573763929e05i:joinstri1i:johanssoni:
         
     | 
| 
      
 44 
     | 
    
         
            +
            depthi:releasi:threadrunnernexti:make_tree0i:<<i!:line03i:this_lockacquiri:new_colori:pressurizedbottle1i:]*i
         
     | 
| 
      
 45 
     | 
    
         
            +
            breaki:socklisten2i:terminusthreadi:	[:]=i:(footrapezoid_method_rootergy0t0t0dti:sailorni:cstringiostringioi:isvalidi	:newnodi:fullstatebottlesti:	stryi:	())]i:selfothi:)**i:eval_a_times_uui:181116i:+i	:	olofi:
         
     | 
| 
      
 46 
     | 
    
         
            +
            orderi:inversi:as_i:arealbimagaimagbri:fibfpni:dotm1m2i:locksid1releasi:[]i:
         
     | 
| 
      
 47 
     | 
    
         
            +
            jupiti	:	spedi:npcoski:jiti:lenrefindali:in_locki:	]))*i:producti:sizerepeatsi:hellopythonvi:complementi:027i:ss2i:simulateblui:__cmp__selfi:3colori:blii:
         
     | 
| 
      
 48 
     | 
    
         
            +
            myhexi:dotselfi:wrapperi:
         
     | 
| 
      
 49 
     | 
    
         
            +
            selfbi:
         
     | 
| 
      
 50 
     | 
    
         
            +
            colori:onepossibleaddmni:reti:rl4095i:	suchi:
         
     | 
| 
      
 51 
     | 
    
         
            +
            poweri:deli	:]=i:268067772490389322e03i:xrangeni:
         
     | 
| 
      
 52 
     | 
    
         
            +
            chaini:reporti:xrange0numi:
         
     | 
| 
      
 53 
     | 
    
         
            +
            magici:	abovi:permk1i	:threadobjecti:max_counti	:seqiiiii:xrange01000i:
         
     | 
| 
      
 54 
     | 
    
         
            +
            updati:bottle2i:singletoncli:*prtrapezoid_methodt0dtx0sqrintegrandni:]*(i:takfpni:agggacgaaatttcgtcccti:solvecellceli:pressurizedbottlebottli:lo_functionnumi:'[^i:joinpi0i:sqrxad2i:[-i:unknowni:iani:spellcheckpythonvi:pressurizeselfi:--i
         
     | 
| 
      
 55 
     | 
    
         
            +
            :validxii:	mpz0i
         
     | 
| 
      
 56 
     | 
    
         
            +
            :
         
     | 
| 
      
 57 
     | 
    
         
            +
            tak3ni:181110i:
         
     | 
| 
      
 58 
     | 
    
         
            +
            :suni:buf_sizi	:]-i:__sub__xii:	aryii:rddddddi:)'i:masktostri:out_lock_acquiri	:	helpi:
         
     | 
| 
      
 59 
     | 
    
         
            +
            n09fti:`i:	makei	:
         
     | 
| 
      
 60 
     | 
    
         
            +
            denoti:]),i:solar_massi:	filli:sysstdoutwriti:reportinput_zooi:isliceai:	fivei:hash1iterkeii:importiw:	ninei:selfradiui:ray_tracelighti:minlensofari
         
     | 
| 
      
 61 
     | 
    
         
            +
            :simulatecolori:://iN:
         
     | 
| 
      
 62 
     | 
    
         
            +
            14142i:bucketi:))]i:hash2foo_1i:	falsi:self__priori	:usi:%i�:__future__i:
         
     | 
| 
      
 63 
     | 
    
         
            +
            1000ji:lenlinespliti:	')):i:bit_numi:499852801234917238e03i:(-i
         
     | 
| 
      
 64 
     | 
    
         
            +
            phonei:]',i:
         
     | 
| 
      
 65 
     | 
    
         
            +
            floati
         
     | 
| 
      
 66 
     | 
    
         
            +
            procei:])+i:
         
     | 
| 
      
 67 
     | 
    
         
            +
            spliti:range3i:groupobjsappendi:selfgridcount0i:goti:spelloutsumi:);i:popi:hai:syssetcheckinterval10000i:':i:enumeratebli:fasteri	:__rmul__selfi:
         
     | 
| 
      
 68 
     | 
    
         
            +
            selfai:gcount0i:	srcni:!i:b25i:179258772950371181e01i:onlypossiblemovi	:range14i:precisi:lenli1i:#httpwwwpythonorgdevpepspep0342i:
         
     | 
| 
      
 69 
     | 
    
         
            +
            anttii:bottle1i:nwwi:	findi:
         
     | 
| 
      
 70 
     | 
    
         
            +
            2sizei:tasksnjoini:10fi:ratintegrandi:sock_streami:floatsysargv1i:aggacttaaatttaagtccti:hi_functionnumi:,masksatcellcellcountercolorappendmasksji:	bytei:selfstatedo_nextselfi	:
         
     | 
| 
      
 71 
     | 
    
         
            +
            childi:	socki:pi_tmpi:	lessi:floodfillboardi	:bottle__init__selfi:	gmpyi:pi2i:bottlestatefullsti:['i:matrixmultiplym1i:
         
     | 
| 
      
 72 
     | 
    
         
            +
            n_lowi
         
     | 
| 
      
 73 
     | 
    
         
            +
            :&=i:__radd__yxi:submiti:	skewi
         
     | 
| 
      
 74 
     | 
    
         
            +
            :)<i:
         
     | 
| 
      
 75 
     | 
    
         
            +
            cleari:	couti:
         
     | 
| 
      
 76 
     | 
    
         
            +
            eighti:izipcount2i:hash1foo_i:
         
     | 
| 
      
 77 
     | 
    
         
            +
            :return1i:threadingconditi:lenlini:
         
     | 
| 
      
 78 
     | 
    
         
            +
            :$pressurizedbottlestateinitialsti:ywidthi:selfinqgeti:
         
     | 
| 
      
 79 
     | 
    
         
            +
            yt0y0i:
         
     | 
| 
      
 80 
     | 
    
         
            +
            widthi:modifii$:summarii:bennetti:gen_randomi:do_nextselfi:	meeti:xrange6i:
         
     | 
| 
      
 81 
     | 
    
         
            +
            guessi:
         
     | 
| 
      
 82 
     | 
    
         
            +
            :)i�:toggle1i:sysstdoutflushi:
         
     | 
| 
      
 83 
     | 
    
         
            +
            29573i:
         
     | 
| 
      
 84 
     | 
    
         
            +
            whichi:niemeyi:registi:__sub__selfi:setselfgridi:othergridii:selfcondwaiti:deviati:
         
     | 
| 
      
 85 
     | 
    
         
            +
            \(])'i:joini1i:seei:pressurizedbottle9i:toggle__init__selfi:reberti:scalabli:arypythonvi:frequencescleari:
         
     | 
| 
      
 86 
     | 
    
         
            +
            limiti:serverni:/ccagcctggccaacatggtgaaaccccgtctctactaaaaati:
         
     | 
| 
      
 87 
     | 
    
         
            +
            afteri:	treei:
         
     | 
| 
      
 88 
     | 
    
         
            +
            boardi":	nenwi:
         
     | 
| 
      
 89 
     | 
    
         
            +
            counti-:
         
     | 
| 
      
 90 
     | 
    
         
            +
            fsizei:
         
     | 
| 
      
 91 
     | 
    
         
            +
            lenani:	uponi:energybodii:
         
     | 
| 
      
 92 
     | 
    
         
            +
            doubli:."i:sqrintegrandi:
         
     | 
| 
      
 93 
     | 
    
         
            +
            speedi	:takfpzi:agactgtaaatttacagtcti:pressurizedsealedsti:masksji:selfstate_typeinitial_sti:7dti:requesti:strgmpypiint335i:newton110mysqrti:widthii:)pressurizedbottlepressurizedbottlesti:}i:)"i:	onexi:add_lineline1i:fibfp280ni:reshapearange1i:">i:selffuli:502i:librarii:buf_size50000i:)]i:flxayai	:sysstdinreadlini	:
         
     | 
| 
      
 94 
     | 
    
         
            +
            uint8i:
         
     | 
| 
      
 95 
     | 
    
         
            +
            seveni:]:i
         
     | 
| 
      
 96 
     | 
    
         
            +
            :	fouri:scene__init__selfi:selfmallnotifyselfnami:',iS:columni:	minxi
         
     | 
| 
      
 97 
     | 
    
         
            +
            :li3i:"psplitstringlowersysstdinreadi:hash1foo_1i:')i
         
     | 
| 
      
 98 
     | 
    
         
            +
            howevi:waiteri:tupteqi:get_portssocki:
         
     | 
| 
      
 99 
     | 
    
         
            +
            :403523417114321381e01i:(selfready_objectsdiscardwait_objecti:
         
     | 
| 
      
 100 
     | 
    
         
            +
            occuri:add_waiterselfi:screcvrequest_si:	ileni	:nsxi:lendatai:/((i:
         
     | 
| 
      
 101 
     | 
    
         
            +
            line0i:recommendi:xrange2i:emptystatebottlesti:gen_xkmpz0i:adaxbxadxbxaxbdxbxbxi:[-(i:	passi:verifii:()i:selfpressurizedsi:
         
     | 
| 
      
 102 
     | 
    
         
            +
            wherei:xrangeintsysargv1i:/)i:imaplambdai:abi:"%(i:ifii:metid1i:''i	:
         
     | 
| 
      
 103 
     | 
    
         
            +
            belowi:xrange1rows1i:npnumpii:xpwrxk1i:	formi:bremmeri:
         
     | 
| 
      
 104 
     | 
    
         
            +
            resubi:():iG:numpyarange0i:in_lock_acquiri
         
     | 
| 
      
 105 
     | 
    
         
            +
            :	wordi :bitsj3i:hexi:li1reversi:("%i:
         
     | 
| 
      
 106 
     | 
    
         
            +
            noneni:groupspherevectorxi:plui:strcmeti:	longi:	danii:gustavoi:	gouii:vectorselfxi:kurtosii
         
     | 
| 
      
 107 
     | 
    
         
            +
            :answeri:selfgridii:acquiri:
         
     | 
| 
      
 108 
     | 
    
         
            +
            queuei:transo_ao_zi:	cleni:
         
     | 
| 
      
 109 
     | 
    
         
            +
            inputi:b23i:153796971148509165e01i:repeatfastasrci:global_switcherruni:li3appendli2popi:
         
     | 
| 
      
 110 
     | 
    
         
            +
            tobiai	:'(?:^|[^\i:nthtoggletoggli:
         
     | 
| 
      
 111 
     | 
    
         
            +
            ack3di:_exit0i:	ans1i:/gaggccgaggcgggcggatcacctgaggtcaggagttcgagai:
         
     | 
| 
      
 112 
     | 
    
         
            +
            ignori:creaturi:
         
     | 
| 
      
 113 
     | 
    
         
            +
            mainni:190138i:mysqrtxi:itertoolsizipuvi:	fadei:())i
         
     | 
| 
      
 114 
     | 
    
         
            +
            pilhoi:praimagi::",i:
         
     | 
| 
      
 115 
     | 
    
         
            +
            therei:__add__xii:arii:reworki:
         
     | 
| 
      
 116 
     | 
    
         
            +
            finali:origini:
         
     | 
| 
      
 117 
     | 
    
         
            +
            stacki:setrecursionlimit20000i: priorityqueueputnewnodecopii:spelloutni:
         
     | 
| 
      
 118 
     | 
    
         
            +
            digiti:iterkeii:
         
     | 
| 
      
 119 
     | 
    
         
            +
            scenei	:$selfready_objectsaddwait_objecti:	.)).i:zerocounti:check_treelefti:	stfri:main_thread_lockacquiri:fixi:	7biti:bottle8i:validxi:sysexc_info0i:indexerrori:	gridi:[integrate_functionsmycomplexfl10fl00mycomplexfl002fl002mycomplexfl10mycomplexflfloatnni:xrangemsg_counti:)-i:
         
     | 
| 
      
 120 
     | 
    
         
            +
            stdini
         
     | 
| 
      
 121 
     | 
    
         
            +
            :xrangeintsysargv11i:allbitmaskspieci	:bottlestateobjecti:	(["%i:gmpympz10i:xdxydyxyydxxdyyii:numsmid12i:xrange28193i:
         
     | 
| 
      
 122 
     | 
    
         
            +
            sumcni:.)i
         
     | 
| 
      
 123 
     | 
    
         
            +
            :selfunpressurizedfuli:
         
     | 
| 
      
 124 
     | 
    
         
            +
            gen_xi:__radd__bai:::-i:
         
     | 
| 
      
 125 
     | 
    
         
            +
            ackm1i:arrayij1rowi:benchmarki*:colorsid1i:1000frni:	rayoi:kthi:pythoni:sysstdinreadi:my_lock_acquiri:
         
     | 
| 
      
 126 
     | 
    
         
            +
            perm0i	:coutchrbyte_acci	:gregorii:
         
     | 
| 
      
 127 
     | 
    
         
            +
            isaaci:__add__selfi:varianci:cellgroupsappendi:jobi:i_ro_ao_zi:combini:meeting_placi:b2_mass_x_magi	:adi	:	probi	:taskincomingput0i:	.)))i:dti:li2reversi:lockacquiri:pressurizedbottle8i:complexi
         
     | 
| 
      
 128 
     | 
    
         
            +
            :activateselfi	:perm1_popi:vali:orienti:_readywaitobjecti:['(i:seti:executi:gen_freqseqi:syssetrecursionlimit10000i:clientni:multipli:)'}i:receiverbuffersi:/ggccgggcgcggtggctcacgcctgtaatcccagcactttggi:
         
     | 
| 
      
 129 
     | 
    
         
            +
            briani:
         
     | 
| 
      
 130 
     | 
    
         
            +
            ratyti:	elifi:takfptakfpxi:cgtgggtaaatttacccacgi:packagi:[((i:id_i:pressurizedunsealedsti:+(i
         
     | 
| 
      
 131 
     | 
    
         
            +
            :numberi:widthheight1i:x0x0valxvaldxi:	])))i:mathsqrtvarii:
         
     | 
| 
      
 132 
     | 
    
         
            +
            sizesi
         
     | 
| 
      
 133 
     | 
    
         
            +
            :	linei:ifi:sumi:xaflooraexpk605expk6i:threadri:regexmatchpythonvi:"-"i:	))),i:long_lived_trei:in_lock_releasi:centeri:
         
     | 
| 
      
 134 
     | 
    
         
            +
            doitni:uk1i:	[[[]i:setrecursionlimiti:nodesuccessornodi:complc1i:"+"i:
         
     | 
| 
      
 135 
     | 
    
         
            +
            islici:	nexti
         
     | 
| 
       3 
136 
     | 
    
         
             
            :
         
     | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
            :
         
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
       10 
     | 
    
         
            -
             
     | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
      
 137 
     | 
    
         
            +
            threei:	hosti:harmoni:
         
     | 
| 
      
 138 
     | 
    
         
            +
            hash1i:[i�:selfobjsii:	(''.i:rowi:fewesti:his_nami:globali:	intmi:409600i:
         
     | 
| 
      
 139 
     | 
    
         
            +
            sendni:834336671824457987e00i:
         
     | 
| 
      
 140 
     | 
    
         
            +
            line1i:
         
     | 
| 
      
 141 
     | 
    
         
            +
            .))).i:check_treeitemi:threadallocate_locki:osgoodi:__str__selfi:	valui:
         
     | 
| 
      
 142 
     | 
    
         
            +
            pointi:dictionarii:
         
     | 
| 
      
 143 
     | 
    
         
            +
            closei:solvecellwidthheight1i:/(i:
         
     | 
| 
      
 144 
     | 
    
         
            +
            lighti:neptuni	:
         
     | 
| 
      
 145 
     | 
    
         
            +
            arraii	:	packi:create_coroutine500i:));i:selfunpressurizedemptii:anii:[:i:"mycomplexarealbrealaimagbimagi:mkmatrixrowscoli:
         
     | 
| 
      
 146 
     | 
    
         
            +
            wahlii	:colorsid2i:limi:
         
     | 
| 
      
 147 
     | 
    
         
            +
            pwrxki:
         
     | 
| 
      
 148 
     | 
    
         
            +
            ackx1i:	abszi:	venui:<i.:
         
     | 
| 
      
 149 
     | 
    
         
            +
            modeli:alti:
         
     | 
| 
      
 150 
     | 
    
         
            +
            befori:	dimai:
         
     | 
| 
      
 151 
     | 
    
         
            +
            selfzi
         
     | 
| 
      
 152 
     | 
    
         
            +
            :notifyselfi:standard_devii
         
     | 
| 
      
 153 
     | 
    
         
            +
            :!httpwwwbagleyorgdougshootouti:selfgridcolxi:transordaordz1i:070703i:	gaini:b_mass_x_magi	:436624404335156298e05i:genrandom1i:
         
     | 
| 
      
 154 
     | 
    
         
            +
            equali:
         
     | 
| 
      
 155 
     | 
    
         
            +
            argv1i:
         
     | 
| 
      
 156 
     | 
    
         
            +
            uncomi:valgadx0onex0i:200844i:1intsysargv1i:elementi:'\i
         
     | 
| 
      
 157 
     | 
    
         
            +
            :prai:|=i:	2004i:	mm32i:seqii60i:bottlestateibottlesti:	datai:httpwwwpfduboiscomnumpii:kintlogfabsai:raji	:'.'i:10ijij12i1i:usrpkgbinpythoni:in_lockacquiri:lowesti:"",i:),"i:	verii:":i:range8i
         
     | 
| 
      
 158 
     | 
    
         
            +
            :](i:	worki
         
     | 
| 
      
 159 
     | 
    
         
            +
            :
         
     | 
| 
      
 160 
     | 
    
         
            +
            hash2i:
         
     | 
| 
      
 161 
     | 
    
         
            +
            ([''.i:programi:toplefti:li2i
         
     | 
| 
      
 162 
     | 
    
         
            +
            :runselfi:	sun5i:randomfastaiubi:t1starti:squareobjecti:creaturebluenexti:processi:cyclesendfuncri:
         
     | 
| 
      
 163 
     | 
    
         
            +
            leveli:lennumi:diagoni:b26i	:selfthreadsaddthreadi:make_treeitem2i	:next_lockreleasi:
         
     | 
| 
      
 164 
     | 
    
         
            +
            )')):i:
         
     | 
| 
      
 165 
     | 
    
         
            +
            initii:bottle7i:get_waiterselfi:.integrate_functionsfl10fl002fl10flfloatnni:screcvi:/=i	:bottle_checkp6i:solveni:linkthreadi:Ct0prselft0t1prselft1y0prselfy0g0prselfg0y1pry1retprretrazprrazi:
         
     | 
| 
      
 166 
     | 
    
         
            +
            illegi:	zetai:072500i:bottlecheckp1i:getbitmaskxypieci:')+i:	forki:
         
     | 
| 
      
 167 
     | 
    
         
            +
            mpz10i:ntoggleactivatevalui:adaxbxadxbxaxbdxi:taky1zxi:stringi:cn1i:)+i	:bottlestate__init__selfi:(`i:__add__abi:
         
     | 
| 
      
 168 
     | 
    
         
            +
            readii:(('i:xxi:	meani	:ffmi:creaturemy_idi:perm10i:itertoolscycleset_biti:][i
         
     | 
| 
      
 169 
     | 
    
         
            +
            ):]).i:
         
     | 
| 
      
 170 
     | 
    
         
            +
            selfii
         
     | 
| 
      
 171 
     | 
    
         
            +
            :selfgridrowii:
         
     | 
| 
      
 172 
     | 
    
         
            +
            :igouyguesti:
         
     | 
| 
      
 173 
     | 
    
         
            +
            ordz1i:
         
     | 
| 
      
 174 
     | 
    
         
            +
            printi�:summaplambdai:
         
     | 
| 
      
 175 
     | 
    
         
            +
            placei
         
     | 
| 
      
 176 
     | 
    
         
            +
            :ibottlesti:[:-i	:saturni	:])-i:doitintsysargv1i:	xa00i:ra1i:[["i:takfpz10xii:sceneintersecti:leninput_zooi:	)*((i:improvi:	klaai:uk1ukftkukftkdtuk1dt2i:"]]i:03015094502008i:
         
     | 
| 
      
 177 
     | 
    
         
            +
            optimi
         
     | 
| 
       15 
178 
     | 
    
         
             
            :
         
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
     | 
    
         
            -
             
     | 
| 
       23 
     | 
    
         
            -
             
     | 
| 
      
 179 
     | 
    
         
            +
            validi:twoi
         
     | 
| 
      
 180 
     | 
    
         
            +
            :selfobi:selfmeti:findfewestmovesselfi:	copii:authori:	sun4i:001i:repeatfastaalui:threadtargetconsumi:nobodii:selfqueuepop0i:schedulethreadi:
         
     | 
| 
      
 181 
     | 
    
         
            +
            tsendi:[:]i:reduceoperatoraddi:954791938424326609e04i:gen_random10i:064757i:threadruni:
         
     | 
| 
      
 182 
     | 
    
         
            +
            njoini:
         
     | 
| 
      
 183 
     | 
    
         
            +
            item2i:main_thread_lockreleasi:
         
     | 
| 
      
 184 
     | 
    
         
            +
            ',('(i:
         
     | 
| 
      
 185 
     | 
    
         
            +
            stilli:
         
     | 
| 
      
 186 
     | 
    
         
            +
            starti	:((i :#pressurizedbottlestatebottlesti:
         
     | 
| 
      
 187 
     | 
    
         
            +
            10000i:alterni:
         
     | 
| 
      
 188 
     | 
    
         
            +
            squari:zooi:]i:cooksoni:itertoolsizipxrange2i:objintersectpti:	:]])i:
         
     | 
| 
      
 189 
     | 
    
         
            +
            simpli:sum10ii:fooi:
         
     | 
| 
      
 190 
     | 
    
         
            +
            selfxi:satisfii:selfmust_waiti	:	ordai:	dxdxi	:237847173959480950e03i:genrandomlimi:selfincominggeti:./i:knotweli:
         
     | 
| 
      
 191 
     | 
    
         
            +
            csocki:main_locki:rangeni:gen_randommaxi:getselfi:argi	: syssetrecursionlimit5000000i:matrixi:srecvreply_si:child_pidi:socksendsockrecvi:
         
     | 
| 
      
 192 
     | 
    
         
            +
            primei:	musti:
         
     | 
| 
      
 193 
     | 
    
         
            +
            alloci:180955i:ratintegrandtii:ggtatti:%pressurizedbottlestateinitial_sti:...i:=%i:xrangewidthheighti:wljustwi:
         
     | 
| 
      
 194 
     | 
    
         
            +
            changi:]))i:nthtoggle1i:*x2pwrx23pwrx67pwrx1151x5pwrx36pwrx732i:veval_ata_times_uui:1797693e308i:
         
     | 
| 
      
 195 
     | 
    
         
            +
            00211i:	mm00i:isinstancebmycomplexi:"%.i:&tgvhcdmnknsyaawbrtgvhcdmknsyaawbri:
         
     | 
| 
      
 196 
     | 
    
         
            +
            ">;":i:)):i:
         
     | 
| 
      
 197 
     | 
    
         
            +
            k2sumi:__init__xa0i:	rairi:	waiti:takfpy10zxi:
         
     | 
| 
      
 198 
     | 
    
         
            +
            rotati	:	))*(i:01975473066391i:
         
     | 
| 
      
 199 
     | 
    
         
            +
            :correcti:speedupi:scenedeleti:priorityqueueemptii:dictc1i:contributi1:lenwordi:(["i:mapsievi:
         
     | 
| 
      
 200 
     | 
    
         
            +
            matchi:vbvi:
         
     | 
| 
      
 201 
     | 
    
         
            +
            otheri:	sun3i:raydirecti:
         
     | 
| 
      
 202 
     | 
    
         
            +
            argsni:roundrobini:
         
     | 
| 
      
 203 
     | 
    
         
            +
            ('|')i:bottle6i:
         
     | 
| 
      
 204 
     | 
    
         
            +
            psycoi:
         
     | 
| 
      
 205 
     | 
    
         
            +
            imbali:
         
     | 
| 
      
 206 
     | 
    
         
            +
            reduci:laboratorii:	sqrxi:clienti:doitfloatsysargv1i:nthtogglevi:	subfi:spelloutsummeti:magi:
         
     | 
| 
      
 207 
     | 
    
         
            +
            flinti:
         
     | 
| 
      
 208 
     | 
    
         
            +
            locali
         
     | 
| 
      
 209 
     | 
    
         
            +
            :unset_biti:helloni:selfboundray_sphereraii:spelloutii:{i
         
     | 
| 
      
 210 
     | 
    
         
            +
            :numsmidi:selffindfewestmovi:<=i:freqssorti:rangeiti:	solvi	:
         
     | 
| 
      
 211 
     | 
    
         
            +
            :o_zi:	faili:intenti:b22i	:excepti:296460137564761618e03i:selfincomi	:
         
     | 
| 
      
 212 
     | 
    
         
            +
            ssocki:main_lockreleasi:)=(i:solveintsysargv1i:
         
     | 
| 
      
 213 
     | 
    
         
            +
            helloi:linktasksni:	sqryi:	ggtai:	flagi:.pressurizedsealedstatepressurizedbottlesti:unpressurizedemptysti:!=i :)),i:masksatceli
         
     | 
| 
      
 214 
     | 
    
         
            +
            :joinislicedigiti:)[i:#eval_at_times_ueval_a_times_uui:emptyselfi:	joshi	:	openi:pressurizedbottlesti:	sinci:-=i#:
         
     | 
| 
      
 215 
     | 
    
         
            +
            legali:joinimapstri:__coerce__abi::tablestringmaketransacbdghknmnsrutwvyacbdghkmnsrutwvii:matrixpython2pythonvi:scheduli:
         
     | 
| 
      
 216 
     | 
    
         
            +
            kcsumi:raii:
         
     | 
| 
      
 217 
     | 
    
         
            +
            yieldi:
         
     | 
| 
      
 218 
     | 
    
         
            +
            tnexti:769901118419740425e03i:__name____main__i:([[i:'%i:_abi:spherei:readyadd_waiterthreadi:
         
     | 
| 
      
 219 
     | 
    
         
            +
            numpii	:	holdi:
         
     | 
| 
      
 220 
     | 
    
         
            +
            emptii	:wlambdai:mapi:appeari:selfswitchi:	dydii	:	ackmi:xnewton106rati:dtbytei: sbindgethostbynamelocalhosti:flagsii:agti:maskscolori
         
     | 
| 
      
 221 
     | 
    
         
            +
            bunchi:adaxbxadxbdxi:stdoutwritelineswi:emptysti:
         
     | 
| 
      
 222 
     | 
    
         
            +
            xnexti:check_treelong_lived_trei:	chari:find_seqsequi:
         
     | 
| 
      
 223 
     | 
    
         
            +
            ofteni:printsolutionminsoluti:sockconnect127001i:
         
     | 
| 
      
 224 
     | 
    
         
            +
            0xffmi:'],i:lenstri:generatebitmaski	:	namei:0pressurizedunsealedstatepressurizedbottlesti:midi:	chrii:
         
     | 
| 
      
 225 
     | 
    
         
            +
            takfpi:]+i:
         
     | 
| 
      
 226 
     | 
    
         
            +
            kssumi:rrai
         
     | 
| 
      
 227 
     | 
    
         
            +
            :lowprecisi:input_zooi:))."""i:distanci	:stretch_depthi
         
     | 
| 
      
 228 
     | 
    
         
            +
            equati:floatni:computi?:priorityqueui:creature_colori:psplitlowerlini:routini:
         
     | 
| 
      
 229 
     | 
    
         
            +
            greati:intersectselfi:
         
     | 
| 
      
 230 
     | 
    
         
            +
            generi:highestcandidatesappendni:exactlii:selfcolori:
         
     | 
| 
      
 231 
     | 
    
         
            +
            lsorti:dzdz05i:randomnexti:exampli:producerni:->i:
         
     | 
| 
      
 232 
     | 
    
         
            +
            :
         
     | 
| 
      
 233 
     | 
    
         
            +
            radiui:add_threadselfi:	1sumi:keylambdai:
         
     | 
| 
      
 234 
     | 
    
         
            +
            ackeri:client_sockporti:main_thread_locki:('>.*',i:flipscounti	:senderdati:sapieni:bottle5i:yellowi:dictelambdai:switchernoni:prnewton1010mysqrti:oni	:ssetsockoptsol_socketi:cgti:pressurizedbottleii:
         
     | 
| 
      
 235 
     | 
    
         
            +
            bottli:geni:	mpz3i:	overi:toggleactivatevalui:selfxselfdxxdxi:wreversi:
         
     | 
| 
      
 236 
     | 
    
         
            +
            brenti:	gamei:
         
     | 
| 
      
 237 
     | 
    
         
            +
            xrangi:tagselfi:	feedi:nparangen_lowi:expensi:isinstanceyfli:finditlini:
         
     | 
| 
      
 238 
     | 
    
         
            +
            degrdi:")i	:"threadstart_new_threadcreaturi:	fmt1i:trapezoid_method_rooti:critici:lenfindallfi:
         
     | 
| 
      
 239 
     | 
    
         
            +
            linuxi:	bothi:nestedlooppythonvi:sqrt12i:gridcolselfi:
         
     | 
| 
      
 240 
     | 
    
         
            +
            minori:	celli:print_color_changi:	trani:151111514016986312e01i:bisecti:b20i	:<>i:singletonswitchi:check_treemake_treeii	:ggtattttaatttatagtspliti:lock_acquiri:sokolovi:pressurizedbottle5i:solutionsappendni:putselfi:
         
     | 
| 
      
 241 
     | 
    
         
            +
            ssendi:a3cycli:solveintargv1i:returnporti:tasksni:`]i:
         
     | 
| 
      
 242 
     | 
    
         
            +
            :minimumi:strtelli:flipceli:.unpressurizedfullstatepressurizedbottlesti:#!/i*:	stdni:	ratxi:sumeval_ajiuji:	themi:pressurizedunsi:xy21y1i:(%i	:selffili	:
         
     | 
| 
      
 243 
     | 
    
         
            +
            worldi:chameneosiateintsysargv1i:)*(i:	mathi
         
     | 
| 
      
 244 
     | 
    
         
            +
            :xpri::',i:takfpxi:let_them_meetmeetings_lefti:
         
     | 
| 
      
 245 
     | 
    
         
            +
            )."""i:elsi@:max_depthi
         
     | 
| 
      
 246 
     | 
    
         
            +
            11000i:differentii:
         
     | 
| 
      
 247 
     | 
    
         
            +
            soluti:xrangewidthi:accessreleasi:
         
     | 
| 
      
 248 
     | 
    
         
            +
            toggli
         
     | 
| 
      
 249 
     | 
    
         
            +
            :newtonsqrt_2i:
         
     | 
| 
      
 250 
     | 
    
         
            +
            substi:
         
     | 
| 
      
 251 
     | 
    
         
            +
            :togglevi:stdinreadlini:takfp30i:ibottlestatefuli:	seali	:create_coroutini:n_highi	:__coerce__xii:	aryni:
         
     | 
| 
      
 252 
     | 
    
         
            +
            smundi:("i:riemanni:(((i:imaginarii:
         
     | 
| 
      
 253 
     | 
    
         
            +
            subnni:takdddi:
         
     | 
| 
      
 254 
     | 
    
         
            +
            righti	:".i
         
     | 
| 
      
 255 
     | 
    
         
            +
            :primes_in_rangemi	:groupsceni:	1111i:successornodesselfi:enumeratecolori:hidi:'.i:bucketvalappendkeii:)/i:
         
     | 
| 
      
 256 
     | 
    
         
            +
            b2_mmi	:
         
     | 
| 
      
 257 
     | 
    
         
            +
            builti:leei:pthreadi:rn_coefficii:selfgridxi:li1i:complementc1i	:
         
     | 
| 
      
 258 
     | 
    
         
            +
            :threadfunnumbi:
         
     | 
| 
      
 259 
     | 
    
         
            +
            creati:
         
     | 
| 
      
 260 
     | 
    
         
            +
            simuli:pressurizedbottle4i:>"i:swidthi:flagski:
         
     | 
| 
      
 261 
     | 
    
         
            +
            srecvi:sockgetsocknami:homosapieni:128i	:a2cycli:lenargvi:consumi	:chain_lengthi:sqrintegrandtii:strwritehelloni:rotateceli:	samei:/unpressurizedemptystatepressurizedbottlesti:053611i:runi:outextendjoinislicedigiti:"],i:
         
     | 
| 
      
 262 
     | 
    
         
            +
            pradxi:mediani	:eval_at_times_uui:unpressurizedfuli:
         
     | 
| 
      
 263 
     | 
    
         
            +
            xy2y1i:])iH:cycleselfi	:
         
     | 
| 
      
 264 
     | 
    
         
            +
            checki$:
         
     | 
| 
      
 265 
     | 
    
         
            +
            :hi_excepti:onepossiblepopi:zipcountvalui:515138902046611451e05i:randomfastati:	sidei:	b4b4i:
         
     | 
| 
      
 266 
     | 
    
         
            +
            shakei:accessnotifii:
         
     | 
| 
      
 267 
     | 
    
         
            +
            sniffi:).i:
         
     | 
| 
      
 268 
     | 
    
         
            +
            anothi:	nwnei:csocksendcsockrecvi:instance0i:
         
     | 
| 
      
 269 
     | 
    
         
            +
            framei:prratad0251i:	addri	:so_reuseaddri:servermsg_counti:agggtaacgtacgttacccti:([i:solutionsappendi:"%i:bottleii:xrange0i:selfg0gt0y0i:
         
     | 
| 
      
 270 
     | 
    
         
            +
            replii:	fredi:noislandsmaski	:
         
     | 
| 
      
 271 
     | 
    
         
            +
            kevini:
         
     | 
| 
      
 272 
     | 
    
         
            +
            giveni:
         
     | 
| 
      
 273 
     | 
    
         
            +
            sums0i:requiri:__div__xii:071004i:finditi:xrangec_noi:calculi:	movei:
         
     | 
| 
      
 274 
     | 
    
         
            +
            whosei:stdinreadi:	lefti:xr_iteri	:	bajoi:
         
     | 
| 
      
 275 
     | 
    
         
            +
            lenpmi:creaturei1i:bucketvi:170539i:	b_mmi	:
         
     | 
| 
      
 276 
     | 
    
         
            +
            jacobi:Php{�):justintimi:
         
     | 
| 
      
 277 
     | 
    
         
            +
            kludgi:
         
     | 
| 
      
 278 
     | 
    
         
            +
            olderi:
         
     | 
| 
      
 279 
     | 
    
         
            +
            thomai:jimi:863736i:worldemi:4793k4792k10940ki;
         
     | 
| 
      
 280 
     | 
    
         
            +
            cheapi:7514k7113k8216ki:selectrandomai:increasesthtri	:
         
     | 
| 
      
 281 
     | 
    
         
            +
            dirtii:
         
     | 
| 
      
 282 
     | 
    
         
            +
            :	0544i:fieldpi:errortimeouti:l2ii:externi:	2573i:	usemi:codelogi:	3958i;	i:emhelloi:	7130i:precedi:imagecreatewhi
         
     | 
| 
      
 283 
     | 
    
         
            +
            :rubyapi:comparennameai:	hipei:newlispi;�i:	1687i:tdai:	3929i:171i:colspancolscpui:	'');i
         
     | 
| 
      
 284 
     | 
    
         
            +
            :>hrefhttpwwwfacultycsuiuceduzillespapershealthpdfbenchmarki:400i	:swiprologi;�i:
         
     | 
| 
      
 285 
     | 
    
         
            +
            stabli:
         
     | 
| 
      
 286 
     | 
    
         
            +
            :o2forci;�i:l1ii:
         
     | 
| 
      
 287 
     | 
    
         
            +
            320kbi:lilutzi:	1683i;�i:	5633i:
         
     | 
| 
      
 288 
     | 
    
         
            +
            />');i:
         
     | 
| 
      
 289 
     | 
    
         
            +
            deleti:
         
     | 
| 
      
 290 
     | 
    
         
            +
            fviaci:
         
     | 
| 
      
 291 
     | 
    
         
            +
            sizeni:
         
     | 
| 
      
 292 
     | 
    
         
            +
            sharei:
         
     | 
| 
      
 293 
     | 
    
         
            +
            exitpi:9913k3769k10940ki:vdata_fullcpui:	isapi:]<<i;�i:bdata_testvalui	:
         
     | 
| 
      
 294 
     | 
    
         
            +
            22005i:	emuli:	1222i:
         
     | 
| 
      
 295 
     | 
    
         
            +
            felixi:	1679i;�i;�i:7145k6618k8216ki:
         
     | 
| 
      
 296 
     | 
    
         
            +
            span1i:'<i>:performanceaplii:	julii:count_freqi:	0540i:ddpmarki:
         
     | 
| 
      
 297 
     | 
    
         
            +
            554kbi:	7028i:hscalei:!hrefhttpwwwrubylangorgenrubii:	])),i:adata_testvalui	:	beami:skalleri:
         
     | 
| 
      
 298 
     | 
    
         
            +
            exceli:	1676i:
         
     | 
| 
      
 299 
     | 
    
         
            +
            steeli:resultsah3i:array_walkresulti:	editi:3690k3289k8216ki:nameproblemii:liimplementi:array_popl3i:highlightai:	2562i:326300224i:9914k9913k10940ki:minseci:
         
     | 
| 
      
 300 
     | 
    
         
            +
            :ifcompute_freqi:	0530i:hrefproblemi:pageslii:array_pushl2i:180i: hrefhttpwwwandresimondeandri:namebad5strongbadi:
         
     | 
| 
      
 301 
     | 
    
         
            +
            63985i:
         
     | 
| 
      
 302 
     | 
    
         
            +
            :kiii:bdata_langi:winkelmanni:	1673i:Chrefhttpwwwerlangorgdownloadhtmlhttpwwwerlangorgdownloadhtmlapi;Ni:	3912i:
         
     | 
| 
      
 303 
     | 
    
         
            +
            pmarki:compiletimi:	09lii:
         
     | 
| 
      
 304 
     | 
    
         
            +
            storei:range1si:
         
     | 
| 
      
 305 
     | 
    
         
            +
            ptelli;Hi:
         
     | 
| 
      
 306 
     | 
    
         
            +
            :	1662i:0hrefhttpwwwdadgumcomjamesshootouthtmlerlangi;4i	:stressi:	3906i;C	i:classlayouttrtdi:systemsaplii:
         
     | 
| 
      
 307 
     | 
    
         
            +
            16638i:perm1ji:tdtdtri:0000000i:
         
     | 
| 
      
 308 
     | 
    
         
            +
            choici:
         
     | 
| 
      
 309 
     | 
    
         
            +
            liseti:heapsortphpvi:
         
     | 
| 
      
 310 
     | 
    
         
            +
            16628i:
         
     | 
| 
      
 311 
     | 
    
         
            +
            :formeri:
         
     | 
| 
      
 312 
     | 
    
         
            +
            16624i;�i	:6791k5881k8216ki:intersecti:%nfullcpukbdatadata_gzelapsedloadi:144481833i:whileii:	0468i:statusstrongi:itemchecki:cascadi:3digiti:
         
     | 
| 
      
 313 
     | 
    
         
            +
            usedpi:instali:	eveni
         
     | 
| 
      
 314 
     | 
    
         
            +
            :defaulti
         
     | 
| 
      
 315 
     | 
    
         
            +
            testpi:testsselectedtesttest_tagi:hrefhttpdacapobenchorgthi:
         
     | 
| 
      
 316 
     | 
    
         
            +
            16655i:
         
     | 
| 
      
 317 
     | 
    
         
            +
            :ordlineslast0i:comparefullcputimeai:oberoni	:	1639i:throughputi:	1024i:testsselectedtesttest_nami:
         
     | 
| 
      
 318 
     | 
    
         
            +
            16656i;i	:	3888i:
         
     | 
| 
      
 319 
     | 
    
         
            +
            2004ai:
         
     | 
| 
      
 320 
     | 
    
         
            +
            recipi:
         
     | 
| 
      
 321 
     | 
    
         
            +
            ;i
         
     | 
| 
      
 322 
     | 
    
         
            +
            :termini:
         
     | 
| 
      
 323 
     | 
    
         
            +
            16659i:paragraphi;�i:
         
     | 
| 
      
 324 
     | 
    
         
            +
            shorti	:
         
     | 
| 
      
 325 
     | 
    
         
            +
            pmanii;mi,:5664k5268k8216ki:datadata_testvalue0i:strlenkeii:	0393i: strongnsieveruby2rubystrongi:callslii:2321111i:5516k4747k8216ki:namereportwheri:233636pi:
         
     | 
| 
      
 326 
     | 
    
         
            +
            hrefai:
         
     | 
| 
      
 327 
     | 
    
         
            +
            inteli:contentnoindexnofollowi;i�:
         
     | 
| 
      
 328 
     | 
    
         
            +
            16640i:followi:
         
     | 
| 
      
 329 
     | 
    
         
            +
            renami:itemchecktreenodi:listandardi:9999999i:	l2lii:namebad2strongbadi:	2536i:hrefreporti:classbtdai:
         
     | 
| 
      
 330 
     | 
    
         
            +
            mltoni:	1632i:onci:gregori:
         
     | 
| 
      
 331 
     | 
    
         
            +
            inlini	:bodysetp4i:gp4i:microbenchmarki:
         
     | 
| 
      
 332 
     | 
    
         
            +
            16660i:5291k4768k8216ki:elapsedtimedatai:
         
     | 
| 
      
 333 
     | 
    
         
            +
            10790i:	utcpi:
         
     | 
| 
      
 334 
     | 
    
         
            +
            1998ai:7hrefbenchmarkphptestheapsortamplanggccampsortsortci:
         
     | 
| 
      
 335 
     | 
    
         
            +
            spelli:	>?</i:4798k4797k10940ki:attempti:blocksbi:bdata_fullcpui
         
     | 
| 
      
 336 
     | 
    
         
            +
            16650i:logi%:	3868i:sprintf02fdatadata_fullcpui:generate_frequenciessequi:]>i:	0358i:listrongotherwisestrongi:newitemi:capturi:7777777i:<hrefbenchmarkphptestlistsamplanggstampsortsortsmalltalki;�i
         
     | 
| 
      
 337 
     | 
    
         
            +
            :!array_walkbad1printprettytagi:converti:5559k4620k8216ki:titlefindi:
         
     | 
| 
      
 338 
     | 
    
         
            +
            :adata_fullcpui
         
     | 
| 
      
 339 
     | 
    
         
            +
            :
         
     | 
| 
      
 340 
     | 
    
         
            +
            :
         
     | 
| 
      
 341 
     | 
    
         
            +
            !).</i:
         
     | 
| 
      
 342 
     | 
    
         
            +
            )&&($i:namebad1strongbadi:
         
     | 
| 
      
 343 
     | 
    
         
            +
            lifori
         
     | 
| 
      
 344 
     | 
    
         
            +
            >).</i:9918k3774k11068ki:
         
     | 
| 
      
 345 
     | 
    
         
            +
            smlnji:	1622i:readswritespi:
         
     | 
| 
      
 346 
     | 
    
         
            +
            scorei:theorii:	3860i:,readselecteddataarraysdata_pathndatacsvi: statusmessagedatadata_statui:	crlfi:	0334i:strongalreadii:singlii:4444444i:libraryapi:	#".$i:
         
     | 
| 
      
 347 
     | 
    
         
            +
            pnicei:multiconferi:functionlii:/{i:	6838i:Shrefiofilephptestselectedtestamplangselectedlangampsortsortampfileoutputoutputi:comparetestcputimeai:205072742pi:
         
     | 
| 
      
 348 
     | 
    
         
            +
            blumei:
         
     | 
| 
      
 349 
     | 
    
         
            +
            unseti;�i:	1611i:liclosi
         
     | 
| 
      
 350 
     | 
    
         
            +
            :160i	:
         
     | 
| 
      
 351 
     | 
    
         
            +
            romani:benchmarkai:
         
     | 
| 
      
 352 
     | 
    
         
            +
            pleasi:platformai:
         
     | 
| 
      
 353 
     | 
    
         
            +
            ungeri:spelledouti;�i:#)i:	6804i:dddi:array_shiftki:
         
     | 
| 
      
 354 
     | 
    
         
            +
            nhc98i:
         
     | 
| 
      
 355 
     | 
    
         
            +
            sumlii:Hhrefhttpopenmapbbncomkandersoperformancepostscriptfannkuchpsperformi:4767k3998k8216ki:neti:thelapsednbspsecsthi:fgetsstdini:	causi:4401k4399k5312ki:filestrongi:310i:
         
     | 
| 
      
 356 
     | 
    
         
            +
            :gen_random1i:beti:clearii:
         
     | 
| 
      
 357 
     | 
    
         
            +
            :confirmi:damagepi:],'i;�i:(array_walkmissinglogsprintprettytagi;�i:5450k4513k8216ki:longeri:?hrefhttpwww106ibmcomdeveloperworkslibraryjalj10064htmltwici:
         
     | 
| 
      
 358 
     | 
    
         
            +
            lomowi:contributingpi:	;?</i:	6788i:strtrstrtoupperseqi;6i:
         
     | 
| 
       24 
359 
     | 
    
         
             
            :
         
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
     | 
    
         
            -
             
     | 
| 
       27 
     | 
    
         
            -
             
     | 
| 
       28 
     | 
    
         
            -
             
     | 
| 
       29 
     | 
    
         
            -
             
     | 
| 
       30 
     | 
    
         
            -
             
     | 
| 
       31 
     | 
    
         
            -
             
     | 
| 
       32 
     | 
    
         
            -
             
     | 
| 
       33 
     | 
    
         
            -
             
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
       35 
     | 
    
         
            -
             
     | 
| 
       36 
     | 
    
         
            -
             
     | 
| 
       37 
     | 
    
         
            -
            :arylasti:(/\i:	listi:start_stati
         
     | 
| 
       38 
     | 
    
         
            -
            southi:))/i:!httpwwwbagleyorgdougshootouti:	row5i:xffi:	goodi:avii:->i:/aggcggaggttgcagtgagccgagatcgcgccactgcactcci:[]i:0b10001i:999eachi:)})i:other_valui:180937i:	("%.i:sockreadlini:secondi:planetnew00i:threadnewii:regionspushcur_regioni:!(/>.*\i:]',i:revcompseqi:
         
     | 
| 
       39 
     | 
    
         
            -
            shifti:
         
     | 
| 
       40 
     | 
    
         
            -
            4pipii:objecttcli:tcpservernewi:	wanti:	10fni:initial_collector_counti:
         
     | 
| 
       41 
     | 
    
         
            -
            smalli:initializetagi:hashnewi:printfni:
         
     | 
| 
       42 
     | 
    
         
            -
            elsifi:
         
     | 
| 
       43 
     | 
    
         
            -
            defini:	1001i:
         
     | 
| 
       44 
     | 
    
         
            -
            10000i:printfmeani:
         
     | 
| 
       45 
     | 
    
         
            -
            incodi:	zeroi:..i(:varianci
         
     | 
| 
       46 
     | 
    
         
            -
            giveni:
         
     | 
| 
       47 
     | 
    
         
            -
            greati:zcomposeai:	themi:1thread_numi:li1i
         
     | 
| 
       48 
     | 
    
         
            -
            :yself1i:numi :)/i:tablesto_stsupcasi:)-i:seqsizi:
         
     | 
| 
       49 
     | 
    
         
            -
            12345i:usrbinrubii*:
         
     | 
| 
       50 
     | 
    
         
            -
            ylasti:053655i:^-i:0b11000i	:print_resulti:v1rand0i:a1cycli:
         
     | 
| 
       51 
     | 
    
         
            -
            couldi:ggtatti:=~i:]}i:directionscollecti	:printftakdddi:danieli:
         
     | 
| 
       52 
     | 
    
         
            -
            paveli:datacounti:'(?:^|[^\i:odd_offseti	:'|'i:	2429i:	filli:momentsrubyvi:bottomi:pressurizedbottlenew1i:mailboxpopi:accessi:collector_found2i:
         
     | 
| 
       53 
     | 
    
         
            -
            chunki:b2massi	:
         
     | 
| 
       54 
     | 
    
         
            -
            saveri:	new5i:"+i:+=iq:[@i:strlengthi:
         
     | 
| 
       55 
     | 
    
         
            -
            stevei:againsti:bit_countsii:heapsortni:?(i:alti
         
     | 
| 
       56 
     | 
    
         
            -
            :	bluei:
         
     | 
| 
       57 
     | 
    
         
            -
            yieldi:ueval_ata_times_uvi:flags0dupi:gonzaloi:500i:
         
     | 
| 
       58 
     | 
    
         
            -
            spliti:'[i:regionspushi:	manii:|=i:lavanai:checkci:0uptooffseti:
         
     | 
| 
      
 360 
     | 
    
         
            +
            lisumi:	528pi:
         
     | 
| 
      
 361 
     | 
    
         
            +
            advisi:(!@i:filedti:loci;�i	:	2517i:
         
     | 
| 
      
 362 
     | 
    
         
            +
            :	1604i:writtenlii:analyzi:7829k3871k8728ki:3hrefhttpresearchmicrosoftcomfsharpreleaseaspxfi:nameprogramnbsptitleah2i:
         
     | 
| 
      
 363 
     | 
    
         
            +
            ln_idi:icci:3506k3505k5056ki:directorii
         
     | 
| 
      
 364 
     | 
    
         
            +
            :214i:	leavi:	lioni:	("/$i:negligi:,',');i:filesstrongabri:fastesti:
         
     | 
| 
      
 365 
     | 
    
         
            +
            v871pi:suiteai:	emthi
         
     | 
| 
      
 366 
     | 
    
         
            +
            :	?"><i:	6771i:
         
     | 
| 
      
 367 
     | 
    
         
            +
            :
         
     | 
| 
      
 368 
     | 
    
         
            +
            avoidi:wallaci:sini:pre0263i:carefullii:arrayni:	3790i:fapi:hrefprogrami:read_sequenceidi:	0253i:
         
     | 
| 
      
 369 
     | 
    
         
            +
            ifseqi:issetsplitdatai;�i5:4187k3300k8216ki
         
     | 
| 
      
 370 
     | 
    
         
            +
            revivi;[i://$i:particulari
         
     | 
| 
      
 371 
     | 
    
         
            +
            tcpipi	:dtnbspbrenti;i
         
     | 
| 
       59 
372 
     | 
    
         
             
            :
         
     | 
| 
       60 
     | 
    
         
            -
             
     | 
| 
       61 
     | 
    
         
            -
             
     | 
| 
       62 
     | 
    
         
            -
             
     | 
| 
       63 
     | 
    
         
            -
             
     | 
| 
       64 
     | 
    
         
            -
             
     | 
| 
       65 
     | 
    
         
            -
             
     | 
| 
       66 
     | 
    
         
            -
            :toggleactivatevalui:
         
     | 
| 
       67 
     | 
    
         
            -
            roundi:seei:xself0i:
         
     | 
| 
       68 
     | 
    
         
            -
            anothi:ifii:stdinreadlinesjoini:item_checklong_lived_trei:&&i:seqslengthi:0b11111i
         
     | 
| 
      
 373 
     | 
    
         
            +
            ]))))i:secspri:emsomethingemi:	3781i:
         
     | 
| 
      
 374 
     | 
    
         
            +
            pfreei:dy0i:Chrefbenchmarkphptestallamplangselectedlangamplang2selectedlangi:cannoti:fclosestdini:	0237i:extensi
         
     | 
| 
      
 375 
     | 
    
         
            +
            :fomitframepointi:287i:nav_list_endi:)';i:exemplarii;�i:datacsvdti:5299k4530k8216ki:help8230adti:lispapi:emsimplifii:Jhrefhttpsmarteiffelloriafrwikienindexphplibsequencerttlibsequencerttai:
         
     | 
| 
      
 376 
     | 
    
         
            +
            ">~'.i:
         
     | 
| 
      
 377 
     | 
    
         
            +
            ddpwei:
         
     | 
| 
      
 378 
     | 
    
         
            +
            []='(i:
         
     | 
| 
       69 
379 
     | 
    
         
             
            :
         
     | 
| 
       70 
     | 
    
         
            -
             
     | 
| 
       71 
     | 
    
         
            -
             
     | 
| 
       72 
     | 
    
         
            -
             
     | 
| 
       73 
     | 
    
         
            -
             
     | 
| 
       74 
     | 
    
         
            -
             
     | 
| 
       75 
     | 
    
         
            -
             
     | 
| 
       76 
     | 
    
         
            -
             
     | 
| 
       77 
     | 
    
         
            -
             
     | 
| 
       78 
     | 
    
         
            -
             
     | 
| 
       79 
     | 
    
         
            -
             
     | 
| 
       80 
     | 
    
         
            -
             
     | 
| 
       81 
     | 
    
         
            -
             
     | 
| 
       82 
     | 
    
         
            -
             
     | 
| 
       83 
     | 
    
         
            -
             
     | 
| 
       84 
     | 
    
         
            -
             
     | 
| 
       85 
     | 
    
         
            -
             
     | 
| 
       86 
     | 
    
         
            -
             
     | 
| 
       87 
     | 
    
         
            -
             
     | 
| 
       88 
     | 
    
         
            -
             
     | 
| 
       89 
     | 
    
         
            -
             
     | 
| 
       90 
     | 
    
         
            -
             
     | 
| 
       91 
     | 
    
         
            -
             
     | 
| 
       92 
     | 
    
         
            -
             
     | 
| 
       93 
     | 
    
         
            -
             
     | 
| 
       94 
     | 
    
         
            -
             
     | 
| 
       95 
     | 
    
         
            -
             
     | 
| 
       96 
     | 
    
         
            -
             
     | 
| 
       97 
     | 
    
         
            -
             
     | 
| 
       98 
     | 
    
         
            -
             
     | 
| 
       99 
     | 
    
         
            -
             
     | 
| 
       100 
     | 
    
         
            -
             
     | 
| 
       101 
     | 
    
         
            -
             
     | 
| 
       102 
     | 
    
         
            -
             
     | 
| 
       103 
     | 
    
         
            -
             
     | 
| 
       104 
     | 
    
         
            -
             
     | 
| 
       105 
     | 
    
         
            -
             
     | 
| 
       106 
     | 
    
         
            -
             
     | 
| 
       107 
     | 
    
         
            -
             
     | 
| 
       108 
     | 
    
         
            -
             
     | 
| 
       109 
     | 
    
         
            -
             
     | 
| 
       110 
     | 
    
         
            -
             
     | 
| 
       111 
     | 
    
         
            -
            :maxflipi	:
         
     | 
| 
       112 
     | 
    
         
            -
            follwi:eval_ata_times_uui:flags0ii:threadnewntimesnext_qpush0i:	yurai	:bitmaski:#!/i.:hillsni:
         
     | 
| 
       113 
     | 
    
         
            -
            spacei	:brannani:)).i:	zizii
         
     | 
| 
       114 
     | 
    
         
            -
            :valuesmini:vector3dnewvxi:
         
     | 
| 
       115 
     | 
    
         
            -
            breaki:fsourci:
         
     | 
| 
       116 
     | 
    
         
            -
            imaski:("\i:
         
     | 
| 
       117 
     | 
    
         
            -
            glenni:
         
     | 
| 
       118 
     | 
    
         
            -
            widthi:zerozerozerozeroi:
         
     | 
| 
       119 
     | 
    
         
            -
            raat1i:
         
     | 
| 
       120 
     | 
    
         
            -
            1timei:add_boardi	:gabrieli:board_arraii	:sievemi	:mathsqrtvbvvvi:benchmarki:perminserti:
         
     | 
| 
       121 
     | 
    
         
            -
            afteri:mathsqrtdxi:valueii:attr_writi:
         
     | 
| 
       122 
     | 
    
         
            -
            32005i:robberti:
         
     | 
| 
       123 
     | 
    
         
            -
            whichi	:row_oni	:	massi:higheri:
         
     | 
| 
       124 
     | 
    
         
            -
            }}/).i:\"i:K----------------------------------------------------------------------i	:scratchi:item_itemi:",i;:seqslicex60i:vali:
         
     | 
| 
       125 
     | 
    
         
            -
            8d9dni:,-i:('^i:kimi:
         
     | 
| 
       126 
     | 
    
         
            -
            blanki:preservi:b1vsubsb1poi:#i�:injectseqsarii:detlefi:bottle_checkb1i:128943695621391310e01i:
         
     | 
| 
       127 
     | 
    
         
            -
            fibn2i:other2scali:
         
     | 
| 
       128 
     | 
    
         
            -
            5timei:item_checktemp_trei:attr_accessori	:a1eachi:""i
         
     | 
| 
       129 
     | 
    
         
            -
            :mainintegerargvshifti:mkmatrixsizesi:#all_boardsstoreboard_stringtrui:6to_iupto9i:	joini:counteri
         
     | 
| 
       130 
     | 
    
         
            -
            permli:odd_mapbiti:
         
     | 
| 
       131 
     | 
    
         
            -
            earlii:usi:	unusi:181016i:incoming_colouri:/~i:	2089i:bodiesenergii:arraynewmax1i:	pauli:q2pushqpop1i:sokolovi	:printf9ftflinti:
         
     | 
| 
       132 
     | 
    
         
            -
            ignori:()i:	sumni:
         
     | 
| 
       133 
     | 
    
         
            -
            :515138902046611451e05i:vector3dnewxi:>i :preceedi:116032004402742839e00i:
         
     | 
| 
       134 
     | 
    
         
            -
            closei:agggtaacgtacgttaccctii:listsrubyvi:181335i:addi
         
     | 
| 
       135 
     | 
    
         
            -
            :boundrii:onezerozerooni:raatiri:!piecemasksstart_locationeachi:=>iN:	packi:)*i:fill_arraii:	vivii:variabli
         
     | 
| 
       136 
     | 
    
         
            -
            :kreversi:topi
         
     | 
| 
       137 
     | 
    
         
            -
            :/ggccgggcgcggtggctcacgcctgtaatcccagcactttggi:0b10010i:even_offsetscollecti:move_from_ibodii:	seali
         
     | 
| 
       138 
     | 
    
         
            -
            :<i&:receivers0putargv0to_ii:
         
     | 
| 
       139 
     | 
    
         
            -
            /^>/)i:	muchi:	parei:	longi:methcallruby2rubyvi:
         
     | 
| 
       140 
     | 
    
         
            -
            queuei:	awaii:
         
     | 
| 
       141 
     | 
    
         
            -
            totali:printf9ftgregoryni:,#{i:odd_mapi:bottom_up_treeitemi:"):i:):i
         
     | 
| 
       142 
     | 
    
         
            -
            :	slowi:anthonii:fari:
         
     | 
| 
       143 
     | 
    
         
            -
            separi:
         
     | 
| 
       144 
     | 
    
         
            -
            pilhoi:
         
     | 
| 
       145 
     | 
    
         
            -
            echoli:partiali:
         
     | 
| 
       146 
     | 
    
         
            -
            self2i:	takni:	bytei:consumerjoini:bottom_up_treeii:tablesortabi:	socki	:count_maxi	:all_boardsboard_stri:friedeli:	conni:
         
     | 
| 
       147 
     | 
    
         
            -
            :	multi:toplefti:datalengthi:	mm32i:	westi:ratheri:lindexi:bottlenew6i:mailboxi:	rulei:collector_maski:')i:
         
     | 
| 
       148 
     | 
    
         
            -
            uniqui:fullnextbottli:argvfirstto_ii:returni#:	ibiti:
         
     | 
| 
       149 
     | 
    
         
            -
            creati:unpruni:waiting_colouri
         
     | 
| 
       150 
     | 
    
         
            -
            :eval_at_times_uui:flags0i:algorithmi:	dicti:
         
     | 
| 
       151 
     | 
    
         
            -
            escapi:951592254519715870e05i:thui:initializexi:484143144246472090e00i:
         
     | 
| 
       152 
     | 
    
         
            -
            scalei:agggtacgtatacgtaccctii:
         
     | 
| 
       153 
     | 
    
         
            -
            exponi:
         
     | 
| 
       154 
     | 
    
         
            -
            29573i:zakiyai:colouri:overlapi	:
         
     | 
| 
       155 
     | 
    
         
            -
            raatli:	acgti:earlieri:gmpznew10i:item_checktree0i:	backi:echo_clientni:0upto4i:	forki	:christophi	:boardstart_loci:stringi
         
     | 
| 
       156 
     | 
    
         
            -
            :mathsqrtdi:500timei:rotate_convertervalui:	uivii:	)...i:permlslice0i:alui:linessortreversi:20ysize10i:offset_momentumbodii:start_masksoffseti	:10ijij12i1i:
         
     | 
| 
       157 
     | 
    
         
            -
            uranui:multipli	:serveri:mathpi2i:pressurizedbottlenew0i:0151116i:receiverskmessageloopi:	6400i:/^>i:rtni:seqlengthi:usrbintclshi:judgementi:nfloatargv0i:	maskiA:collectori%:155937i:
         
     | 
| 
       158 
     | 
    
         
            -
            maximi:fcoi:!wait_signalwaitmeeting_pointi:eval_ajiuji:create_collector_supporti	:	(/.{i:packagi:	exiti:item_checktree2i:,%i:%.i:kurtosisni:	gamei:
         
     | 
| 
       159 
     | 
    
         
            -
            adjaci:dati:stringlenseqlengthi:
         
     | 
| 
       160 
     | 
    
         
            -
            3timei:b1massi:://iC:seti:
         
     | 
| 
       161 
     | 
    
         
            -
            notati:	sidei	:
         
     | 
| 
       162 
     | 
    
         
            -
            alwaii:	treei:
         
     | 
| 
       163 
     | 
    
         
            -
            sizexi:jeremii:285885980666130812e04i:reasoni:
         
     | 
| 
       164 
     | 
    
         
            -
            activi:imagini:other1scali:producerjoini:
         
     | 
| 
       165 
     | 
    
         
            -
            printi(:pidigitspigotnewi:hashhas_keii:0ulength1collectii:printfack3di:stop_counti	:180943i:masksbi:make_random_fastaidi:
         
     | 
| 
       166 
     | 
    
         
            -
            novici:	valuiI:stdinread4096i:rotation_even_addi:exampli:	mm23i:bottlenew5i:	showi:	incri:receivi:becausi:
         
     | 
| 
       167 
     | 
    
         
            -
            1iteri:	fouri	:collectorscollector_numi
         
     | 
| 
       168 
     | 
    
         
            -
            identi:}ii:riverai:162824170038242295e03i:zself2other2i:agggtcgtaattacgaccctii:	####i:
         
     | 
| 
       169 
     | 
    
         
            -
            kevini:jabarii:>>i
         
     | 
| 
      
 380 
     | 
    
         
            +
            geardi:javalangobjectltinitgti:
         
     | 
| 
      
 381 
     | 
    
         
            +
            ).'</i	:
         
     | 
| 
      
 382 
     | 
    
         
            +
            :pseudorandomi:bogusstrongadti:7589k7198k8216ki:3hrefhttpwwwfreepascalorghttpwwwfreepascalorgapi:dx0i:.hrefbenchmarkphptestselectedtestamplangali:bonvillaini:1716k1715k5056ki:smalltalktdtdvwtdtri:gcci:306i:becausi:requirehtmltestnavphpi:/';i:
         
     | 
| 
      
 383 
     | 
    
         
            +
            simoni:	">'.i:analysii:	3770i:wirthapi	:selectedlangidi:damieni:
         
     | 
| 
      
 384 
     | 
    
         
            +
            []='/i:permissionlii;�i
         
     | 
| 
      
 385 
     | 
    
         
            +
            :!namemissingrowsstrongdatacsvi:5337k4403k8216ki:overheadpi:]}\i:rendezvouspi:
         
     | 
| 
      
 386 
     | 
    
         
            +
            einari:	ulddi:	3761i:returnni:pre1000i:genomicsai:objectivectdtdobjctdtri;i�:Mhrefhttpwwwhaskellorgghcdistcurrentdocsusers_guidelangparallelhtmlhaskeli:nori:5311k4441k8216ki:
         
     | 
| 
      
 387 
     | 
    
         
            +
            pressi:fgetcsvi:
         
     | 
| 
      
 388 
     | 
    
         
            +
            ()));i:
         
     | 
| 
      
 389 
     | 
    
         
            +
            nicoli:
         
     | 
| 
      
 390 
     | 
    
         
            +
            treati:dmdsrcphobosstdthreaddi:
         
     | 
| 
      
 391 
     | 
    
         
            +
            fiboni	:lijoini:
         
     | 
| 
      
 392 
     | 
    
         
            +
            pmorei:lineithi:	2496i:buttoni:number_formatndatani:
         
     | 
| 
      
 393 
     | 
    
         
            +
            enteri
         
     | 
| 
      
 394 
     | 
    
         
            +
            :Ahrefhttpwwwnekovmcomdocdownloadhttpwwwnekovmcomdocdownloadapi:treatedlii;	i;�i:	dougi:9923k9922k11068ki:
         
     | 
| 
      
 395 
     | 
    
         
            +
            lipari:	0009i:6962k6316k8216ki:
         
     | 
| 
      
 396 
     | 
    
         
            +
            chorei;|i:
         
     | 
| 
      
 397 
     | 
    
         
            +
            owneri:benchmarksplii:	0092i:	3753i:_hrefhttpmathworldwolframcomfibonaccinumberhtmlhttpmathworldwolframcomfibonaccinumberhtmlapi:producerlii:9hrefhttpwwwhicomborghicomb2002papershicomb200303pdfai:trtdmozartoztdtdoztdtri;?i:rightpi:materii;�i:5184k4415k8216ki:
         
     | 
| 
      
 398 
     | 
    
         
            +
            pfaili:
         
     | 
| 
      
 399 
     | 
    
         
            +
            ddprei:timeoutcountpi:482i:printf09fni:
         
     | 
| 
      
 400 
     | 
    
         
            +
            lipdoi:	0029i:6835k6066k8216ki:pcalculi	:consumedlii:classifi:trtdinteli:205i:	maybi
         
     | 
| 
      
 401 
     | 
    
         
            +
            xhtmli::<i
         
     | 
| 
      
 402 
     | 
    
         
            +
            :	p503i:retaini:	2486i:namekindersometimi:sizeofbadpermissionspi:eachvzi:1453695i:emremovi:
         
     | 
| 
      
 403 
     | 
    
         
            +
            40000i:
         
     | 
| 
      
 404 
     | 
    
         
            +
            thesei:
         
     | 
| 
      
 405 
     | 
    
         
            +
            :-)</i:trtdgnui:382i;�i
         
     | 
| 
      
 406 
     | 
    
         
            +
            ;Ii$:).<i:@hrefhttpresearchmicrosoftcombirrellpapersthreadscsharppdfani:liredistributi:
         
     | 
| 
      
 407 
     | 
    
         
            +
            activi;i:6839k5939k8216ki:programsstrongi:liretrievi:ggtattttaatttatagtlii:trtddtdtddlangtdtri:451i:tokenlii:	metpi:5193k4325k8216ki:gentoosources2620r6pi:acrossi:hrefdeniedbadi:
         
     | 
| 
      
 408 
     | 
    
         
            +
            emaddi:	6598i:	mvari:centurii:
         
     | 
| 
      
 409 
     | 
    
         
            +
            :461i:predistributi:	2481i:stronggentooi:sizeofbigpi:eachvxi:treatmenti:+/i:
         
     | 
| 
      
 410 
     | 
    
         
            +
            blocki:
         
     | 
| 
      
 411 
     | 
    
         
            +
            keylii:
         
     | 
| 
      
 412 
     | 
    
         
            +
            99990i:basictdtdfbasictdtri:544i:lipassi:reservedpi:
         
     | 
| 
      
 413 
     | 
    
         
            +
            triagi:	6581i:atomicreferi:	prepi:issetrowexcl_idi:
         
     | 
| 
      
 414 
     | 
    
         
            +
            k1000i:667i:fibonaccii:namelicensenbsprevisi:5100k4169k8216ki:machineadti:hrefbad6badi:definedays_per_yeari:
         
     | 
| 
      
 415 
     | 
    
         
            +
            mmulti:
         
     | 
| 
      
 416 
     | 
    
         
            +
            :sectionlii:procedurefuncti:fileextensi:implicitlii:hreflicensi:	2470i:nameoswhati:sizeofbad5pi:	">:-i:definesolar_massi:hospitalpi:
         
     | 
| 
      
 417 
     | 
    
         
            +
            ;?>">i,:
         
     | 
| 
      
 418 
     | 
    
         
            +
            spendi:	foldi;
         
     | 
| 
      
 419 
     | 
    
         
            +
            hrefoi:
         
     | 
| 
      
 420 
     | 
    
         
            +
            /">:-i:
         
     | 
| 
       170 
421 
     | 
    
         
             
            :
         
     | 
| 
       171 
     | 
    
         
            -
             
     | 
| 
       172 
     | 
    
         
            -
             
     | 
| 
       173 
     | 
    
         
            -
             
     | 
| 
       174 
     | 
    
         
            -
             
     | 
| 
       175 
     | 
    
         
            -
             
     | 
| 
       176 
     | 
    
         
            -
             
     | 
| 
       177 
     | 
    
         
            -
             
     | 
| 
       178 
     | 
    
         
            -
             
     | 
| 
       179 
     | 
    
         
            -
             
     | 
| 
       180 
     | 
    
         
            -
             
     | 
| 
       181 
     | 
    
         
            -
             
     | 
| 
       182 
     | 
    
         
            -
             
     | 
| 
       183 
     | 
    
         
            -
             
     | 
| 
       184 
     | 
    
         
            -
             
     | 
| 
       185 
     | 
    
         
            -
             
     | 
| 
       186 
     | 
    
         
            -
             
     | 
| 
       187 
     | 
    
         
            -
             
     | 
| 
       188 
     | 
    
         
            -
             
     | 
| 
       189 
     | 
    
         
            -
             
     | 
| 
       190 
     | 
    
         
            -
             
     | 
| 
       191 
     | 
    
         
            -
             
     | 
| 
       192 
     | 
    
         
            -
             
     | 
| 
       193 
     | 
    
         
            -
             
     | 
| 
       194 
     | 
    
         
            -
             
     | 
| 
       195 
     | 
    
         
            -
             
     | 
| 
       196 
     | 
    
         
            -
             
     | 
| 
       197 
     | 
    
         
            -
             
     | 
| 
       198 
     | 
    
         
            -
             
     | 
| 
       199 
     | 
    
         
            -
             
     | 
| 
       200 
     | 
    
         
            -
             
     | 
| 
       201 
     | 
    
         
            -
             
     | 
| 
       202 
     | 
    
         
            -
             
     | 
| 
       203 
     | 
    
         
            -
             
     | 
| 
      
 422 
     | 
    
         
            +
            ><?=$i:	1550i:261527386i:	3708i:factorstrongi:
         
     | 
| 
      
 423 
     | 
    
         
            +
            occupi:diecannoti:'--i:
         
     | 
| 
      
 424 
     | 
    
         
            +
            :;hrefbenchmarkphptestmessageamplangallampsortsortmessagi:procedurefunctionstrongi:wyki:	."</i:
         
     | 
| 
      
 425 
     | 
    
         
            +
            namepi:lireplii:titleopeni:
         
     | 
| 
      
 426 
     | 
    
         
            +
            relevi:	loadi
         
     | 
| 
      
 427 
     | 
    
         
            +
            :lirequesti:2hrefhttpwwwopensourceorglicensesbsdlicensephpi:pentiumsup174supi:hrefbad4badi:4943k4174k8216ki;i:hospitalspi:
         
     | 
| 
      
 428 
     | 
    
         
            +
            win32i:9928k9927k11068ki:parallelppreparallelmapi:doublevalt0i:hreffannkuchi:sigchldi:dtnbspisaaci:	1543i:	3700i:Khrefhttpwwwfreebasicnetindexphpabouthttpwwwfreebasicnetindexphpaboutapi:
         
     | 
| 
      
 429 
     | 
    
         
            +
            :byteslii
         
     | 
| 
      
 430 
     | 
    
         
            +
            :intelsup174supi:sizeofbad3pi;i:	2459i:
         
     | 
| 
      
 431 
     | 
    
         
            +
            listpi:	1540i: srcimage_pathjnsievebitspngi:403i:
         
     | 
| 
      
 432 
     | 
    
         
            +
            textpi:userinterfaci:libuffi;�i:
         
     | 
| 
      
 433 
     | 
    
         
            +
            :
         
     | 
| 
      
 434 
     | 
    
         
            +
            positi:4904k4162k8216ki:?hrefbenchmarkphptestprodconsamplangpythonampsortsortpythoni:stdinlii:006i:>::i:advertsstrongi:experii
         
     | 
| 
      
 435 
     | 
    
         
            +
            drivei:hrefbad3badi:4975k4047k8216ki:orderedcollectionati:5kbi:
         
     | 
| 
      
 436 
     | 
    
         
            +
            sourci#:	1536i:td715tdi:115609i:	3694i:,hreffaqphpsortsortsamewaybsamenbspwaybai:formatai	:998i:
         
     | 
| 
      
 437 
     | 
    
         
            +
            promoi:
         
     | 
| 
      
 438 
     | 
    
         
            +
            triali:
         
     | 
| 
      
 439 
     | 
    
         
            +
            sendpi:
         
     | 
| 
      
 440 
     | 
    
         
            +
            stylei:codespi:671i:
         
     | 
| 
      
 441 
     | 
    
         
            +
            ensuri:listopi:pblankdi:,'i*:
         
     | 
| 
      
 442 
     | 
    
         
            +
            :_serverargv1i:@hrefbenchmarkphptestmessageamplangallampsortsortthreadsflowi:memberi:doi:8hrefbenchmarkphptestfastaamplangallampsortsortfastai:	4999i:322i:headerstrongi;1ik:msubisubni:bscore_meani:rami:hrefbad2badi:4943k4079k8216ki:orderedcollectiondoi:healthcari:7882k7881k10940ki:/hrefhttpcedriccnamfrpublisrc474pdfchameneoi:definescore_mean1i;�i:pwei:
         
     | 
| 
      
 443 
     | 
    
         
            +
            pwithi:3hrefiofilephptestselectedtestampfileinputinputi	:
         
     | 
| 
      
 444 
     | 
    
         
            +
            20000i:
         
     | 
| 
      
 445 
     | 
    
         
            +
            limaki:'|'i:ascore_meani:sizeofbad1pi:	2450i;�i:$shootoutbodyincreasevelocityyzmi:
         
     | 
| 
      
 446 
     | 
    
         
            +
            metlii:definescore_ratio0i:	"-//i:	allpi:saii:	1528i:hrefnsievebiti:">].</i:arrayii:
         
     | 
| 
      
 447 
     | 
    
         
            +
            pre10i:
         
     | 
| 
      
 448 
     | 
    
         
            +
            pkaffi:mari:	ideai
         
     | 
| 
      
 449 
     | 
    
         
            +
            :lineendingspi:tcpi:comparemeanscoreai:sempron8482i:
         
     | 
| 
      
 450 
     | 
    
         
            +
            endlii:match3i:definemem_min1i:
         
     | 
| 
      
 451 
     | 
    
         
            +
            poveri:
         
     | 
| 
      
 452 
     | 
    
         
            +
            ("",$i:#hrefhttpkaffeorghttpkaffeorgapi:600000i:strongunixi:requestspi:scorekscore_ratioi:sizeoforphanspi:	2444i:10052005pi:bodies0vii:shootoutbodyandvelocityafti:	=".$i:	6389i:liafteri	:ssni:definecpu_min0i:dtnbspacknowledgementsdti:	1521i:td006tdi:">^(</i:arrayri:
         
     | 
| 
      
 453 
     | 
    
         
            +
            ())){i:jsci;
         
     | 
| 
      
 454 
     | 
    
         
            +
            i$:behindi:142i:
         
     | 
| 
      
 455 
     | 
    
         
            +
            pmakei:
         
     | 
| 
      
 456 
     | 
    
         
            +
            negati:vscore_meanfirsti:hreforphanorphani:
         
     | 
| 
      
 457 
     | 
    
         
            +
            :match2i:definen_exclude10i:
         
     | 
| 
      
 458 
     | 
    
         
            +
            ?>');i:8050k7795k8728ki:emkeepi:	((!$i:i386jruby112pi:	7924i:nextadti:reply_sizepi:first0i:sizeofmissinglogspi:4846k3920k8216ki:
         
     | 
| 
      
 459 
     | 
    
         
            +
            onadti:bodiesivzi	:shootoutnbodysystemafti	:	+");i:5835k5834k10940ki:switchcasi:phonenumbersii:definen_gz9i:	1517i:"namebinarytreesbinarytreesadti:	'<',i:arrayki:	('<?i:	3620i:emcreateemi:	.)</i:	finei:tcpstreami:vscore_meani:filesai:	2439i:namemachinewhati:
         
     | 
| 
      
 460 
     | 
    
         
            +
            ifelsi:preg_matchregexi:definen_lines8i:ifni	:	1514i:hrefbinarytrei:arrayhi:
         
     | 
| 
      
 461 
     | 
    
         
            +
            marchi:namenextthi:tcprequestreplii:issetfirsti:hrefmissinglogsmissi:
         
     | 
| 
      
 462 
     | 
    
         
            +
            :.",i:langnameah3i:
         
     | 
| 
      
 463 
     | 
    
         
            +
            ilasti:easieri:!$i:definen_n3i:ifmi:	1511i: srcimage_pathjmandelbrotpngi:arraydi:7536k7154k8216ki:primeii:
         
     | 
| 
      
 464 
     | 
    
         
            +
            prubii:
         
     | 
| 
      
 465 
     | 
    
         
            +
            40960i:2ndi:sizeofmissingrowspi:4812k3950k8216ki:setsapi:bodiesivxi	:	>".$i:nonbspprogrami:
         
     | 
| 
      
 466 
     | 
    
         
            +
            futuri:4812k4811k10940ki:sizeofphonenumbers1i:definen_color10i:klimovi;I	i:	1507i:td320tdi:arraybi:	3609i:printfdthi:+hrefhttpdistcodehausorgjrubyjrubybinapi:	'"',i:judgementstrongpi:varioui:comparemeanscori:
         
     | 
| 
      
 467 
     | 
    
         
            +
            rowsai:
         
     | 
| 
      
 468 
     | 
    
         
            +
            sampli
         
     | 
| 
      
 469 
     | 
    
         
            +
            ]+/',i:.',i:printftdspani	:
         
     | 
| 
      
 470 
     | 
    
         
            +
            ('/[^i:	*)\.i:classmessagesspantdi:repeatedlii:9932k3788k11068ki:
         
     | 
| 
      
 471 
     | 
    
         
            +
            resizi:definen_memory7i:ackermannphpvi;�iM:
         
     | 
| 
      
 472 
     | 
    
         
            +
            ]*)(\i:colspan2spani:lieachi	:	6267i:
         
     | 
| 
      
 473 
     | 
    
         
            +
            entiri:regexmatchphpi:>>+i:definen_fullcpu6i:phpi};-i:	1496i:
         
     | 
| 
      
 474 
     | 
    
         
            +
            minimi:]*)-([i:printftdnbsptdtdnbsptdtdi:creatureslii:
         
     | 
| 
      
 475 
     | 
    
         
            +
            ("/([i:langsvn_langlang_nami:licreati:beautii:9933k9932k11068ki:>>*i:definen_full4i:valuepi:	1493i:td001tdi:switchi	:	3592i;�i&:printsubstrs0ii:printf1sti:">.*<\/i	:
         
     | 
| 
      
 476 
     | 
    
         
            +
            datapi:	leafi:>**i:definen_name3i:longinti:
         
     | 
| 
      
 477 
     | 
    
         
            +
            :	1489i:td005tdi:6759k5995k8216ki:printsubstrsilinelengthi;�i:primeni:ascendingorderlii:	3565i:trtdnbsptdtdnbsptdtri:accounti:	ptcli:w20i:	bad5i:
         
     | 
| 
      
 478 
     | 
    
         
            +
            >.)</i	:4678k3818k8216ki:strongcompili:forwardi:
         
     | 
| 
      
 479 
     | 
    
         
            +
            bmassi:
         
     | 
| 
      
 480 
     | 
    
         
            +
            :brieflii;�i
         
     | 
| 
      
 481 
     | 
    
         
            +
            i:langshootoutargii:	1486i:td237tdi:	3586i;�i2:makerepeatfastaidi;i	:ceilsqrtki:
         
     | 
| 
      
 482 
     | 
    
         
            +
            moduli:	1482i:classtxtmeanthi:6755k5863k8216ki:makerandomfastaidi:h2nbsptitleh2i:mthi:trtdthreadstdtdprocesstdtri:	3504i:
         
     | 
| 
      
 483 
     | 
    
         
            +
            wxloci:	bad2i:4550k3782k8216ki:compressionpi:bvyi:8hrefbenchmarkphptestnbodyamplangjavaampsortsortjavai:	pfkbi:strongcoopi:ouri:7886k7885k10940ki:
         
     | 
| 
      
 484 
     | 
    
         
            +
            ahi10i:
         
     | 
| 
      
 485 
     | 
    
         
            +
            parami:liremovi:#trtdtcpstreamtdtdtcpstreamtdtri:
         
     | 
| 
      
 486 
     | 
    
         
            +
            size2i	:symplecticintegri:pfvn_fullcpui:threads8230i:	whati:	6216i:
         
     | 
| 
      
 487 
     | 
    
         
            +
            ysizei:defuncti:definelanguage_excluded5i:	2732i:4194k3295k8216ki
         
     | 
| 
      
 488 
     | 
    
         
            +
            wxmemi:orphani:
         
     | 
| 
      
 489 
     | 
    
         
            +
            2i1d1i:trtdtcpechotdtdtcpechotdtri:	3484i:|</i:wxfullcpui;}i:missinglogi	:4577k3654k8216ki:stronggzipi:
         
     | 
| 
      
 490 
     | 
    
         
            +
            orbiti:namestartupi:kerneli:	wishi	:6863k6862k10940ki:
         
     | 
| 
      
 491 
     | 
    
         
            +
            appari:defineprogram_special3i:	/">"i	:4185k3298k8216ki:hrefnsievi;�i:	3567i:	morei6:genelisti11i;�i:Ohrefhttpwwwcsbhamacukresearchpoplognewhttpwwwcsbhamacukresearchpoplognewapi:josephui:trtdsumfiletdtdsumcoltdtri:
         
     | 
| 
      
 492 
     | 
    
         
            +
            anythi:	6199i:oroi:defineprogram_error2i:	1475i:hadi;ji:
         
     | 
| 
      
 493 
     | 
    
         
            +
            boundi	:ehrefhttpwwwcsbhamacukresearchpoplogfreepoploghtmlhttpwwwcsbhamacukresearchpoplogfreepoploghtmlapi:"trtdstatisticstdtdmomentstdtri:25875k19796k64832ki;�i:*($i:
         
     | 
| 
      
 494 
     | 
    
         
            +
            minsti:missingrowi	:
         
     | 
| 
      
 495 
     | 
    
         
            +
            elapsi;i:5592k5214k8216ki:specifi:countgenelisti:ppolymli:trtdstartuptdtdhellotdtri:	3455i;di:)%i	:nameauditnbspauditah2i:4539k3681k8216ki:
         
     | 
| 
      
 496 
     | 
    
         
            +
            failpi:
         
     | 
| 
      
 497 
     | 
    
         
            +
            vn_n0i:itselfi:5840k5839k10940ki:
         
     | 
| 
      
 498 
     | 
    
         
            +
            partii:defineexcludedxi:	1472i:pini
         
     | 
| 
      
 499 
     | 
    
         
            +
            :
         
     | 
| 
      
 500 
     | 
    
         
            +
            vn_idi:pstandardi;Ki:	6179i:ocamlapi:defineexcl_id3i:4192k3292k8216ki:
         
     | 
| 
      
 501 
     | 
    
         
            +
            lookpi:tests_phrasi:
         
     | 
| 
      
 502 
     | 
    
         
            +
            learni	:error_reportinge_stricti:+hrefhttpwwwpolymlorghttpwwwpolymlorgapi: trtdregextdtdregexmatchtdtri:25808k20051k64832ki:issettimeoutki:h2ai:
         
     | 
| 
      
 503 
     | 
    
         
            +
            ]])){i:!scalaconcurrentmailboxreceivi:nameaboutnbspthi:5167k4696k8216ki;�i
         
     | 
| 
      
 504 
     | 
    
         
            +
            leungi;/i:portableneti:&trtdobjectmethodstdtdmethcalltdtri:	3423i;Qi:	8meri;^i	:
         
     | 
| 
      
 505 
     | 
    
         
            +
            :chrefhttpmathworldwolframcomackermannfunctionhtmlhttpmathworldwolframcomackermannfunctionhtmlapi;_i	:
         
     | 
| 
      
 506 
     | 
    
         
            +
            studii:&tdnonbspprogramtdtdtdtdtdtdtdtdtdi:002i:	3546i:wingchungi;�i	::hrefhttpwwwgnuorgsoftwaredotgnupnetpackageshtmldotgnui:pjavascriptci:trtdobjecttdtdobjinsttdtri:
         
     | 
| 
      
 507 
     | 
    
         
            +
            :	6163i:&httpsourceforgenetprojectsregxpcri:defineexcl_use0i:
         
     | 
| 
      
 508 
     | 
    
         
            +
            :resourcebrai:)*$i:selectedtestkhtmlnami;�i:
         
     | 
| 
      
 509 
     | 
    
         
            +
            vmrssi:rowtest_linki
         
     | 
| 
      
 510 
     | 
    
         
            +
            :4content3urlhttpshootoutaliothdebianorggp4calphpi:
         
     | 
| 
      
 511 
     | 
    
         
            +
            carloi:&hrefbenchmarkphptestsamplangssatdi;�i:4272k4271k8216ki:
         
     | 
| 
      
 512 
     | 
    
         
            +
            residi:gmdateli:;=i:numbersmid1i:nthi
         
     | 
| 
       204 
513 
     | 
    
         
             
            :
         
     | 
| 
       205 
     | 
    
         
            -
             
     | 
| 
       206 
     | 
    
         
            -
             
     | 
| 
       207 
     | 
    
         
            -
             
     | 
| 
       208 
     | 
    
         
            -
             
     | 
| 
       209 
     | 
    
         
            -
             
     | 
| 
       210 
     | 
    
         
            -
             
     | 
| 
       211 
     | 
    
         
            -
             
     | 
| 
       212 
     | 
    
         
            -
             
     | 
| 
       213 
     | 
    
         
            -
             
     | 
| 
       214 
     | 
    
         
            -
             
     | 
| 
       215 
     | 
    
         
            -
             
     | 
| 
       216 
     | 
    
         
            -
             
     | 
| 
       217 
     | 
    
         
            -
             
     | 
| 
       218 
     | 
    
         
            -
             
     | 
| 
       219 
     | 
    
         
            -
             
     | 
| 
       220 
     | 
    
         
            -
             
     | 
| 
       221 
     | 
    
         
            -
             
     | 
| 
       222 
     | 
    
         
            -
             
     | 
| 
       223 
     | 
    
         
            -
             
     | 
| 
       224 
     | 
    
         
            -
             
     | 
| 
       225 
     | 
    
         
            -
             
     | 
| 
       226 
     | 
    
         
            -
             
     | 
| 
      
 514 
     | 
    
         
            +
            p170pi:9937k3793k11068ki:expressionsai:570i:defineincl_link0i:	1457i:compilationadti:-hrefhttpmathworldwolframcomimathworldiaai:printftdtdtdai:	3530i;?i
         
     | 
| 
      
 515 
     | 
    
         
            +
            :preconverti;�i	:v76i:'trtdknucleotidetdtdknucleotidetdtri:
         
     | 
| 
      
 516 
     | 
    
         
            +
            3n2nni:
         
     | 
| 
      
 517 
     | 
    
         
            +
            dynami:weissteini:vlang_htmli:
         
     | 
| 
      
 518 
     | 
    
         
            +
            ppikei:3hrefhttpwwwmozillaorgjslanguagee2623pdfecma262i:trtdfibonaccitdtdfibotdtri:	181pi:
         
     | 
| 
      
 519 
     | 
    
         
            +
            reseti:24711k19596k64832ki:floatingpointi:datalangtesti:
         
     | 
| 
      
 520 
     | 
    
         
            +
            ddpini:
         
     | 
| 
      
 521 
     | 
    
         
            +
            regexi:
         
     | 
| 
      
 522 
     | 
    
         
            +
            :namedynamicwhati:	pfori:issetno_program_langski:7349k3376k8344ki;�i
         
     | 
| 
      
 523 
     | 
    
         
            +
            :7hrefhttprsatscmbbulbacbersatrandomseq_formcgigeneri:/">i�:)>i;�i:;hrefhttppikeroxencomdownloadhttppikeroxencomdownloadapi:pecmascripti:trtdcountwordstdtdwctdtri:	3346i:i686linuxi:	270ni:datalangtestdata_fullcpui:"";i;Li:4396k3540k8216ki:usagestrongadti;�i:	adevi	:
         
     | 
| 
      
 524 
     | 
    
         
            +
            usethi:9937k9937k11068ki:
         
     | 
| 
      
 525 
     | 
    
         
            +
            nbodii
         
     | 
| 
      
 526 
     | 
    
         
            +
            revisi
         
     | 
| 
      
 527 
     | 
    
         
            +
            :doublevalnumbersii:thsmalleri:	6063i:languageapi:notestrongi:definedata_memory6i:
         
     | 
| 
      
 528 
     | 
    
         
            +
            :	),</i:
         
     | 
| 
      
 529 
     | 
    
         
            +
            timepi
         
     | 
| 
      
 530 
     | 
    
         
            +
            :filephpstdini:classnum2bri:.=i:
         
     | 
| 
      
 531 
     | 
    
         
            +
            quarki:hypheni:definedata_testvalue3i:h2nbspdownloadh2i;�i:	1439i:
         
     | 
| 
      
 532 
     | 
    
         
            +
            dddlii:251i:definedata_id2i:v1015pi:	ax11i:
         
     | 
| 
      
 533 
     | 
    
         
            +
            intxti	:
         
     | 
| 
      
 534 
     | 
    
         
            +
            spacei:colspan5langnami:	6026i:Vhrefhttpshootoutaliothdebianorgdebiancphphttpshootoutaliothdebianorgdebiancphpah3i:iexchangeii:definedata_lang1i:pdigiti:axii:	1436i:	3471i:prandomi:printftdstdtdnbsptdtddtdi:printfsstdni:%hrefhttpwwwsuncomhttpwwwsuncomapi:namecvswheri;�i:$.)i:	keepi:
         
     | 
| 
      
 535 
     | 
    
         
            +
            nowapi:issetincltesti:	.');i:
         
     | 
| 
      
 536 
     | 
    
         
            +
            littli:	50kbi:momentsphpi:
         
     | 
| 
      
 537 
     | 
    
         
            +
            span4i:controli:
         
     | 
| 
      
 538 
     | 
    
         
            +
            accumi:169i;�i	:
         
     | 
| 
      
 539 
     | 
    
         
            +
            modepi	:
         
     | 
| 
      
 540 
     | 
    
         
            +
            ">.</i	:almosti:20658k16506k64832ki:hrefcvi:Nhrefhttpwwwcoliunisaarlanddekrislearnprolognowlpnpagephppageidonlinelearni:datarowi:	(!($i:4212k3395k8216ki:!prioritybsdresourcetimesa23pi:pagefetchpagetplphpi:
         
     | 
| 
      
 541 
     | 
    
         
            +
            170kbi;Bi:smalleremi:6868k6867k10940ki:pnbsppi:013i:definelang_specialurl8i:bottlecheckp6p7p8p9p0ii:na239vi
         
     | 
| 
      
 542 
     | 
    
         
            +
            codeii:	1309i:definelang_compare7i:bottlecheckp1p2p3p4p5ii:
         
     | 
| 
      
 543 
     | 
    
         
            +
            peachiY:	1388i:presiti:	3457i:designi:
         
     | 
| 
      
 544 
     | 
    
         
            +
            pwelli:ddata_statui:
         
     | 
| 
      
 545 
     | 
    
         
            +
            ">+</i:
         
     | 
| 
      
 546 
     | 
    
         
            +
            browsi:sumcolphpi:array100000010000001000000i:///i:4228k3316k8216ki:!contentnoindexnofollownoarchi
         
     | 
| 
      
 547 
     | 
    
         
            +
            :	diffi:	phowi;Ii	:
         
     | 
| 
      
 548 
     | 
    
         
            +
            iareai:946i:definelang_date6i:bottlecheckb6b7b8b9b0ii:	youriC:
         
     | 
| 
      
 549 
     | 
    
         
            +
            showpi:
         
     | 
| 
      
 550 
     | 
    
         
            +
            ">]</i:18664k14834k64832ki:
         
     | 
| 
      
 551 
     | 
    
         
            +
            minski:"<i:	2321i:pagesetroboti:betterah3i:5844k5844k10940ki:iterations1i;�i:	4118i:definelang_tag5i:bottlecheckb1b2b3b4b5ii:
         
     | 
| 
      
 552 
     | 
    
         
            +
            fileai.:	1384i:alii:
         
     | 
| 
      
 553 
     | 
    
         
            +
            345kbi:xrunhprofi:6928k6554k8216ki:0hrefhttpenwikipediaorgwikifasta_formatfastai
         
     | 
| 
      
 554 
     | 
    
         
            +
            :programsathtri:#gmp_cmptransformation_extractzi:hotspottmi:	argci:
         
     | 
| 
      
 555 
     | 
    
         
            +
            ">-</i:	perli:	3112i:programsstrongai:stewarti:9weighteddatafilenametestslangsinclexclwhasheadingtrui:
         
     | 
| 
      
 556 
     | 
    
         
            +
            pwhati:
         
     | 
| 
      
 557 
     | 
    
         
            +
            aprili:	3446i:linebylini	:namealtinteresti:
         
     | 
| 
      
 558 
     | 
    
         
            +
            mutexi:while0i:
         
     | 
| 
      
 559 
     | 
    
         
            +
            pjavai:[</i:
         
     | 
| 
      
 560 
     | 
    
         
            +
            ">)</i
         
     | 
| 
      
 561 
     | 
    
         
            +
            :15914k12840k64832ki:titlebrowsi:leshchinskiii:maxweighti:aboutfetchabouttemplatenami	:	2317i:Qhrefiofilephptestselectedtestamplangselectedlangampsortsortampfileinputinputi:height300i:4821k4820k10940ki:itemcheckti:litheri:
         
     | 
| 
      
 562 
     | 
    
         
            +
            tricki:definelang_name2i:1wmemv1i:	1380i:Shrefhttpwwwmozartozorgdocumentationapptutnode9htmlchapterconcurrencycheapdeathi:6532k6032k8216ki:dnai:colspan7ai:transformation_composezi:Lhrefhttpjavasuncomdocshotspothotspotfaqhtmlbenchmarking_simplebenchmarki:	((</i:	3040i:Khrefhttpsaliothdebianorgtrackerfuncbrowseampgroup_id30402ampatid411646i:
         
     | 
| 
      
 563 
     | 
    
         
            +
            coutti:
         
     | 
| 
      
 564 
     | 
    
         
            +
            cumuli;{i:sizeofspecial0i:pd0i:(</i
         
     | 
| 
      
 565 
     | 
    
         
            +
            allapi:pagesetfaqtitli:	2308i:
         
     | 
| 
      
 566 
     | 
    
         
            +
            invoki:">:=</i	:
         
     | 
| 
      
 567 
     | 
    
         
            +
            ">|</i:16350k10411k64832ki:Inamemovenbspmovenbspemopennbspitememnbspsourcecodenbspintonbspcvsadti:5hrefhttpwwwcseunsweduaudonspaperscls07htmlstreami:	"]){i:ereg09varski:pagesetbannertitli;�i@:4198k3333k8216ki:pmltoni:betterah2i:9942k9941k11068ki:
         
     | 
| 
      
 568 
     | 
    
         
            +
            ifnuli:eachcounti:definetest_name1i:1wsecv1i:	1371i:pzonnoni:3hrefhttpwwwsicssejoeericssondu98024htmlperformi:6123k5368k8216ki;�i: ddata_statusprogram_timeouti:	pagei�:harropi:	tr01i:blockquoteremembi:">!i:	2987i:hrefmovi:goei:customcodepi
         
     | 
| 
      
 569 
     | 
    
         
            +
            :"])i:strlenvarski:preperli;"i:titlebarsite_titli	:	2304i;�i:3hrefhttpmltonorgdownloadhttpmltonorgdownloadapi:nametitlenbspari:	5871i:treenode2i:2strongnotstrongi:definetest_link0i:
         
     | 
| 
      
 570 
     | 
    
         
            +
            00001i:4192k3293k8216ki;-i:
         
     | 
| 
      
 571 
     | 
    
         
            +
            ">^</i:
         
     | 
| 
      
 572 
     | 
    
         
            +
            underi	:ddata_langki:6110k5227k8216ki:tr3i:/hrefhttpjavasuncomj2sehttpjavasuncomj2seapi:
         
     | 
| 
      
 573 
     | 
    
         
            +
            ">!</i6:16144k10526k64832ki:emsomefileempi:spacepi:	"],$i:foreachmetri:titlemeasuri:bodysetnowi:	2300i:printfskewi:Ihrefhttpmltonorgpagesreferencesattachments060916mltonpdfwholeprogrami:Omkheadtoheadmenuformtestsselectedtestlangsselectedlangselectedlang2fullcpui:8919k8918k10940ki:lineari:?i�:bottomuptreenewitemi;�i:0codepi:
         
     | 
| 
      
 574 
     | 
    
         
            +
            ;i:+kwaintegerspansystemint32parseobjtostri;]i:
         
     | 
| 
      
 575 
     | 
    
         
            +
            liputi
         
     | 
| 
      
 576 
     | 
    
         
            +
            :foreachrejecti;�i:	3417i:tr1i:'</i3:	2950i:dppi:customcodi:
         
     | 
| 
      
 577 
     | 
    
         
            +
            "])){i:	xloci:/hrefhttpwwwdanljorgmkjladinfotimehtmlsec10i:bodysetbad6i:4230k3318k8216ki:printfvarii:langnameapi:	5851i:
         
     | 
| 
      
 578 
     | 
    
         
            +
            item1i:4188k3296k8216ki;�i:<=$i
         
     | 
| 
      
 579 
     | 
    
         
            +
            :kwareturnspani:465i:
         
     | 
| 
      
 580 
     | 
    
         
            +
            156kbi:	1364i;di:(($i-:objarraygetvalue1i:liholdi:unsetbetti:5431k5214k8216ki:transformation_extracttri:releasesapi:">''</i:15617k10320k64832ki:pcvi:conversionpi:newlini:]-$i:wdlinki:readlogfileslog_pathi:
         
     | 
| 
      
 581 
     | 
    
         
            +
            ">:</iK:sumfili:
         
     | 
| 
      
 582 
     | 
    
         
            +
            wlinki:listloi:4199k3334k8216ki: prioritybsdresourcetimesa23i:printfmeani:filemtimemisc_pathfphpi:measurementsapi:	5834i;8i	:baltruschati;�i;�i:matcheslii:	1357i;�i:kwabeginspani:464i:explicitlylinki:]<$i:classsmallernbspnbspstdi:	htmli+:
         
     | 
| 
      
 583 
     | 
    
         
            +
            :	3388i:	erici:transformation_compose2ii:Dhrefhttpwwwcodeplexcomwikiviewaspxprojectnameironpythoncodeplexi;i:
         
     | 
| 
      
 584 
     | 
    
         
            +
            smithi:prettii:,hrefbenchmarkphptestsamplangsampiddsatdi
         
     | 
| 
      
 585 
     | 
    
         
            +
            55876i:5hrefhttpwwwcsmuozauresearchmercurydownloadhtmlthi:])||($i:printftdstdtdai;i	:7581k3639k8600ki:gmp_addgmp_multr2i:	roomi:	2803i:
         
     | 
| 
      
 586 
     | 
    
         
            +
            stxapi:issetvarslinki:bodysetndatai:
         
     | 
| 
      
 587 
     | 
    
         
            +
            15961i:2hrefhttpwwwcsmuozauresearchmercuryindexhtmlthi:	',&$i:
         
     | 
| 
       227 
588 
     | 
    
         
             
            :
         
     | 
| 
       228 
     | 
    
         
            -
             
     | 
| 
       229 
     | 
    
         
            -
             
     | 
| 
       230 
     | 
    
         
            -
            : 
     | 
| 
       231 
     | 
    
         
            -
            6timei:elsi3:ggtattttaatttatagteachi:agactgtaaatttacagtctii:139968i:	calli:languagi&:mentali:	itemi
         
     | 
| 
       232 
     | 
    
         
            -
            basici:agggtaacgtacgttacccti:
         
     | 
| 
       233 
     | 
    
         
            -
            toggli:piecemasks0eachi:endi�:offi:make_random_fastatwoi:mapmaski:	4096i:10sunmassi:is_primeii:searchi:datadowncasetr_sazazi:]'i:arraynew60i:	meani	:anii:deviationabi:pressurizedbottlenew6i:0161117i:receiversi1nexti:foriK:convertercollector2i:pressurized_si:converti:	b2vyi:
         
     | 
| 
       234 
     | 
    
         
            -
            lto_ii:new_regionscollecti:connecti:
         
     | 
| 
       235 
     | 
    
         
            -
            emergi:days_per_yeari:	barni:'is:printf9ftriemanni:[iQ:deviation4i:
         
     | 
| 
       236 
     | 
    
         
            -
            bjarki:
         
     | 
| 
       237 
     | 
    
         
            -
            qrst0i:zagorodnikovi	:09fi:	#<--i:min_boardi
         
     | 
| 
       238 
     | 
    
         
            -
            csocki:"#{i:itemspi:make_repeat_fastaidi:sapieni:}:i:start_adjusti:")i
         
     | 
| 
       239 
     | 
    
         
            -
            :
         
     | 
| 
       240 
     | 
    
         
            -
            emptii:	evani:threadslasti:
         
     | 
| 
       241 
     | 
    
         
            -
            newlii:
         
     | 
| 
      
 589 
     | 
    
         
            +
            2008pi;i: strip_tagshttp_get_varstitli:rowlang_nami:	5797i:
         
     | 
| 
      
 590 
     | 
    
         
            +
            39822i:
         
     | 
| 
      
 591 
     | 
    
         
            +
            :sourceai:blankabouttplphpi:
         
     | 
| 
       242 
592 
     | 
    
         
             
            :
         
     | 
| 
       243 
     | 
    
         
            -
             
     | 
| 
       244 
     | 
    
         
            -
             
     | 
| 
       245 
     | 
    
         
            -
             
     | 
| 
       246 
     | 
    
         
            -
             
     | 
| 
       247 
     | 
    
         
            -
             
     | 
| 
       248 
     | 
    
         
            -
             
     | 
| 
       249 
     | 
    
         
            -
             
     | 
| 
       250 
     | 
    
         
            -
             
     | 
| 
       251 
     | 
    
         
            -
             
     | 
| 
       252 
     | 
    
         
            -
             
     | 
| 
       253 
     | 
    
         
            -
             
     | 
| 
       254 
     | 
    
         
            -
             
     | 
| 
       255 
     | 
    
         
            -
             
     | 
| 
       256 
     | 
    
         
            -
            ssocki:
         
     | 
| 
       257 
     | 
    
         
            -
            sleepi:offsetseachi:hash2foo_9999i:}";i:bryanti:ssockaddr1i:taktakxi:|i:prev_threadi:rowstimi:_statei:
         
     | 
| 
       258 
     | 
    
         
            -
            positi:argvemptii:
         
     | 
| 
       259 
     | 
    
         
            -
            cmaski:stdineachi:arraynew0b100000i
         
     | 
| 
       260 
     | 
    
         
            -
            tracki:420i:	eachi:
         
     | 
| 
       261 
     | 
    
         
            -
            optimi:	flipi
         
     | 
| 
       262 
     | 
    
         
            -
            primei:sprintf7di:pieceslengthtimi:	li10i:
         
     | 
| 
       263 
     | 
    
         
            -
            dto_fi:a4cycli:offseti:/>/i:rotationscollecti:600to_ii:hash1foo_1i:@i�:	fib3i:homosapieni:I0b111111111111111111111111111111111111111111111111111111111111111111i:arraynewmi:wordfreqrubyvi:)\)|(\i:clienti:	(/#{i:20zrzii:mask_for_offseti:pressurizedbottlenew4i:
         
     | 
| 
       264 
     | 
    
         
            -
            lenani:
         
     | 
| 
       265 
     | 
    
         
            -
            kcsumi:selfxselfdxxdxi:071004i:
         
     | 
| 
       266 
     | 
    
         
            -
            ack3di:	xflyi:
         
     | 
| 
       267 
     | 
    
         
            -
            writei;3i:grid15reshape1i:rl4095i:	gouii:
         
     | 
| 
       268 
     | 
    
         
            -
            islici:	sqrxi:__sub__selfi;6i :reporti;8i:emptyselfi:workerworker_idi;9i;;i:
         
     | 
| 
       269 
     | 
    
         
            -
            imbali:
         
     | 
| 
       270 
     | 
    
         
            -
            2sizei:solveintargv1i;Qi:pi_tmp0i:[integrate_functionsmycomplexfl10fl00mycomplexfl002fl002mycomplexfl10mycomplexflfloatnni:joincolori:xrange28193i:sysexc_info0i:solveri:generatebitmaski	:
         
     | 
| 
       271 
     | 
    
         
            -
            lighti:	sqrti:
         
     | 
| 
       272 
     | 
    
         
            -
            perm1i
         
     | 
| 
       273 
     | 
    
         
            -
            :	ratxi:dtbytei:fspliti:0pressurizedunsealedstatepressurizedbottlesti:fmtjoinnmi:make_treeitemi:aimagbrealarealbimagmagi;di:coutchrintgi:
         
     | 
| 
       274 
     | 
    
         
            -
            cjoini:
         
     | 
| 
       275 
     | 
    
         
            -
            denoti:prxi:client_sockporti:
         
     | 
| 
       276 
     | 
    
         
            -
            simuli:selfpossiblemovesxii:selfunpressurizedfuli:first_lockreleasi;si:deli	:(selfready_objectsdiscardwait_objecti:gridcolselfi;xi	;yi:byte_counti:makecumulativeti;|i
         
     | 
| 
       277 
     | 
    
         
            -
            ratyti;�i:runselfi:add_lineline1i;�i:floodfillmaski:	ans1i:
         
     | 
| 
       278 
     | 
    
         
            -
            infini:
         
     | 
| 
       279 
     | 
    
         
            -
            kssumi:__init__selfx0dx0i;�i:insteadi:
         
     | 
| 
       280 
     | 
    
         
            -
            fib1fi:
         
     | 
| 
       281 
     | 
    
         
            -
            modeli;�i
         
     | 
| 
       282 
     | 
    
         
            -
            isaaci:logexpfloorfabi;�i:
         
     | 
| 
       283 
     | 
    
         
            -
            to_goi
         
     | 
| 
       284 
     | 
    
         
            -
            ;�i:randomfastaiubi:	2004i:singletoncli:
         
     | 
| 
       285 
     | 
    
         
            -
            njoini:creaturemy_idi:number1i;�i:lenargvi;�i
         
     | 
| 
      
 593 
     | 
    
         
            +
            scalei:
         
     | 
| 
      
 594 
     | 
    
         
            +
            fieldi:4826k4825k10940ki:211720i:biglogi:
         
     | 
| 
      
 595 
     | 
    
         
            +
            ;�i:kwaimportspani:391i:
         
     | 
| 
      
 596 
     | 
    
         
            +
            pmawki:elapsedtimi:]];i:	3328i:,hrefhttpjavasysconcomread358792htmlearni:transformation_composetri:14598k8453k64832ki:	28cpi:
         
     | 
| 
      
 597 
     | 
    
         
            +
            pwerei;�i	:Chrefhttpwwwexeptde8080doconlineenglishprogrammingstcmanhtmlstci:abouttemplatenami:
         
     | 
| 
      
 598 
     | 
    
         
            +
            <!--#i	:	2269i:namemeasurecpuhowi:
         
     | 
| 
      
 599 
     | 
    
         
            +
            ">))!i:issethttp_get_varstitli:langsselectedlang2lang_fuli:.'.i:	5781i:	0962i:ndatakprogram_timeouti:	1335i;|i:benchmarksgami;�i:
         
     | 
| 
      
 600 
     | 
    
         
            +
            14289i:Shrefftpftpfuberlindepubunixlanguagesmawkftpftpfuberlindepubunixlanguagesmawkapi:$number_formatdoubleddata_memorii:
         
     | 
| 
      
 601 
     | 
    
         
            +
            :
         
     | 
| 
      
 602 
     | 
    
         
            +
            ">(</i:acknowledgi:langname2i
         
     | 
| 
      
 603 
     | 
    
         
            +
            :.'.'.$i:
         
     | 
| 
      
 604 
     | 
    
         
            +
            limovi:waii+:jitcompili:templatenami:	2265i:illusorypi:includemiscfili:rowlang_tagi:).'i:shootouttreenodeitemchecki:9946k3802k11068ki:	5252i:
         
     | 
| 
      
 605 
     | 
    
         
            +
            tillii:14151k8774k64832ki;7i:ligeneri;�i:psmalltalkxi:rowdata_gzi
         
     | 
| 
       286 
606 
     | 
    
         
             
            :
         
     | 
| 
       287 
     | 
    
         
            -
             
     | 
| 
       288 
     | 
    
         
            -
             
     | 
| 
       289 
     | 
    
         
            -
             
     | 
| 
       290 
     | 
    
         
            -
             
     | 
| 
       291 
     | 
    
         
            -
             
     | 
| 
       292 
     | 
    
         
            -
             
     | 
| 
       293 
     | 
    
         
            -
             
     | 
| 
       294 
     | 
    
         
            -
             
     | 
| 
       295 
     | 
    
         
            -
             
     | 
| 
       296 
     | 
    
         
            -
             
     | 
| 
       297 
     | 
    
         
            -
             
     | 
| 
       298 
     | 
    
         
            -
             
     | 
| 
       299 
     | 
    
         
            -
             
     | 
| 
       300 
     | 
    
         
            -
             
     | 
| 
       301 
     | 
    
         
            -
             
     | 
| 
       302 
     | 
    
         
            -
             
     | 
| 
       303 
     | 
    
         
            -
             
     | 
| 
       304 
     | 
    
         
            -
             
     | 
| 
       305 
     | 
    
         
            -
             
     | 
| 
       306 
     | 
    
         
            -
             
     | 
| 
       307 
     | 
    
         
            -
             
     | 
| 
       308 
     | 
    
         
            -
            :
         
     | 
| 
       309 
     | 
    
         
            -
             
     | 
| 
       310 
     | 
    
         
            -
             
     | 
| 
       311 
     | 
    
         
            -
             
     | 
| 
       312 
     | 
    
         
            -
             
     | 
| 
       313 
     | 
    
         
            -
             
     | 
| 
       314 
     | 
    
         
            -
             
     | 
| 
       315 
     | 
    
         
            -
             
     | 
| 
       316 
     | 
    
         
            -
             
     | 
| 
       317 
     | 
    
         
            -
             
     | 
| 
       318 
     | 
    
         
            -
             
     | 
| 
       319 
     | 
    
         
            -
             
     | 
| 
       320 
     | 
    
         
            -
             
     | 
| 
      
 607 
     | 
    
         
            +
            auditi:
         
     | 
| 
      
 608 
     | 
    
         
            +
            sweati:ntogglevalui:langtagi
         
     | 
| 
      
 609 
     | 
    
         
            +
            :.$i&:"shootouttreenodeleftrightitemi:	5695i:preg_replaceiubi:logsk0program_timeouti:	1326i:eclipsi:=-i	;	iA:#number_formatfullcputestvalue4i;ci:
         
     | 
| 
      
 610 
     | 
    
         
            +
            ;�i	:	2720i:	lenni:rowdata_memorii	:templatelib_pathi:	2260i:networki:
         
     | 
| 
      
 611 
     | 
    
         
            +
            pdonti:	dev2i	:nthtoggletrue3i:rowlang_fuli
         
     | 
| 
      
 612 
     | 
    
         
            +
            :!=$i:pre0202i:
         
     | 
| 
      
 613 
     | 
    
         
            +
            :
         
     | 
| 
      
 614 
     | 
    
         
            +
            :7641k6763k8216ki:ligaini:thisdigiti:as8230spani:listrongmovi:
         
     | 
| 
      
 615 
     | 
    
         
            +
            sizepi:rowdata_testi:comparetestnami:
         
     | 
| 
      
 616 
     | 
    
         
            +
            ]$",$i:
         
     | 
| 
      
 617 
     | 
    
         
            +
            iofili:	termi:)namecommitternbspcommitternbspfaqadti:14322k8945k64832ki:+excludedatarowlangsexclprogram_timeouti:listinclexcli:},i:	2235i:
         
     | 
| 
      
 618 
     | 
    
         
            +
            ]))){i	:strandi:	iubwi:	10k3i:vprogram_errori:	1298i;�i:i686linuxbri:!ddata_memoryfirstdata_memorii:
         
     | 
| 
      
 619 
     | 
    
         
            +
            finepi:6877k6876k10940ki:	')){i:iubnewacgi:
         
     | 
| 
      
 620 
     | 
    
         
            +
            runspi:togglestartsti:
         
     | 
| 
      
 621 
     | 
    
         
            +
            penali:	brbri:	5627i:]+$",$i:	iubvi:issetndataki
         
     | 
| 
      
 622 
     | 
    
         
            +
            :	1291i;1i:<$i6:subversi:
         
     | 
| 
      
 623 
     | 
    
         
            +
            priori:
         
     | 
| 
      
 624 
     | 
    
         
            +
            ratioi:
         
     | 
| 
      
 625 
     | 
    
         
            +
            i1001i:	2222i:outputpi:array_padarrayn0i:objinstphpi:timeslii
         
     | 
| 
      
 626 
     | 
    
         
            +
            :annotationspi:pati:	5606i;@id:	iubri:logsk0program_excludi:	1282i;�i:2hrefhttpwwwrubylangorgencommunityrubycorerubii:[hrefhttpmathworldwolframcommandelbrotsethtmlhttpmathworldwolframcommandelbrotsethtmlapi:sortgzi	:	3274i:Ihrefhttpresearchmicrosoftcomsimonpjpapershistoryofhaskellhistorypdfai:pidigitstreami;�i:strlenhttp_get_varsexti;Ai:14196k8819k64832ki:."<i	:Qhrefhttpwwwecepurdueeduqobisoftwarehtmlhttpwwwecepurdueeduqobisoftwarehtmlapi:classnum1number_formatitdi:
         
     | 
| 
      
 627 
     | 
    
         
            +
            liaddi
         
     | 
| 
      
 628 
     | 
    
         
            +
            :
         
     | 
| 
      
 629 
     | 
    
         
            +
            i1499i:	stepi:	2218i:pretesti:aryphpi;�i
         
     | 
| 
      
 630 
     | 
    
         
            +
            :
         
     | 
| 
      
 631 
     | 
    
         
            +
            defini:
         
     | 
| 
      
 632 
     | 
    
         
            +
            ;�i;^i:	facti:	10k2i:bytebybyti:classsorti	:martini:	3266i:testingalii:strvalthiski:http_get_varsfili:	pcmui:14517k8372k64832ki:
         
     | 
| 
      
 633 
     | 
    
         
            +
            roundi:
         
     | 
| 
      
 634 
     | 
    
         
            +
            d0999i:
         
     | 
| 
      
 635 
     | 
    
         
            +
            oncepi:expandi:
         
     | 
| 
      
 636 
     | 
    
         
            +
            :	bodyi:
         
     | 
| 
      
 637 
     | 
    
         
            +
            thiski:strlenhttp_get_varsfili	:	2559i:poi:preempti:classnum4number_formatd1tdi:4221k3309k8216ki:hrefpretesti:093i;�i:activationlii:
         
     | 
| 
      
 638 
     | 
    
         
            +
            ('^')i:a20i:	1269i;^i:pressurizedbottleidi:versionapi:subjecti:sortcolumni:5619k4873k8216ki:hrefhttpdromaeocommozillai:floordi:
         
     | 
| 
      
 639 
     | 
    
         
            +
            mm44ni:issethttp_get_varsfili;oi:
         
     | 
| 
      
 640 
     | 
    
         
            +
            d1001i:	2209i:measure8230adti:emlistempi:501i:lioverridi:pstrongnoti,:	5503i:classbinarytreestoi:	iubki:
         
     | 
| 
      
 641 
     | 
    
         
            +
            arenti:
         
     | 
| 
      
 642 
     | 
    
         
            +
            :iubnewacti:prettytagki:20050430zi:	1263i:checkci:/$i:300i; i:10kk10i:height200i:preferi	:
         
     | 
| 
      
 643 
     | 
    
         
            +
            d1499i:4190k3325k8216ki:	quiti	:namemeasurenbsphowi:(\i:randomaccessi:20060921pi;Di:liinheriti	;!i:generationpi:9951k9951k11068ki:shootouttesti
         
     | 
| 
      
 644 
     | 
    
         
            +
            pnotei:activatedpi:Chrefbenchmarkphptesthash2amplangallampsortsorthashtableupdateai:	5489i:blockclosuri
         
     | 
| 
      
 645 
     | 
    
         
            +
            :iubnewagti:ksortoldlogi:nextthii	;0i:	1257i:
         
     | 
| 
      
 646 
     | 
    
         
            +
            mulepi:altmandlebroti:	3254i:
         
     | 
| 
      
 647 
     | 
    
         
            +
            limori:gzbytei:strvalji:'hrefhttpwwwgigamonkeyscombookpracti:	2509i:linkselectedlang2i:	2201i:ddpnothi;6i:timespi:"(i:emnthtoggleemi:inplaci:noticeablypi:
         
     | 
| 
      
 648 
     | 
    
         
            +
            2003pi:bottlestateinitialsti:	1254i:i486linuxgnui;|i:"srcimage_pathmandelbrot200pngi:
         
     | 
| 
      
 649 
     | 
    
         
            +
            licali;�i:8928k8927k10940ki:iubnewcgti:closedirdhi:942i:thisempty_i:
         
     | 
| 
      
 650 
     | 
    
         
            +
            lucidi:4672k4671k8216ki:
         
     | 
| 
      
 651 
     | 
    
         
            +
            swampi;�i	:	5469i:	iubbi:arraycodebytesi:
         
     | 
| 
      
 652 
     | 
    
         
            +
            09620i:emtoggleemi;i:evaluatedpi:
         
     | 
| 
      
 653 
     | 
    
         
            +
            labeli	:
         
     | 
| 
      
 654 
     | 
    
         
            +
            patchi:	17thi:
         
     | 
| 
      
 655 
     | 
    
         
            +
            argv3i:7769k3776k8728ki:codingpi:foreachlangi:bcaddbcmulthissi:remembi:
         
     | 
| 
      
 656 
     | 
    
         
            +
            applii	:	5452i:
         
     | 
| 
      
 657 
     | 
    
         
            +
            incgci
         
     | 
| 
      
 658 
     | 
    
         
            +
            :iprefixi:thisbottlesti:7//////////////////////////////////////////////////i:	1244i:pxemaci:
         
     | 
| 
      
 659 
     | 
    
         
            +
            argv2i:	3164i:fashioni:contenti:thnbspcpunbsploadthi:sqti:flyi:14586k8441k64832ki:
         
     | 
| 
      
 660 
     | 
    
         
            +
            840kbi:Chrefhttpwwwcskunnlcleanindexhtmlhttpwwwcskunnlcleanindexhtmlapi:unsetcomparablel1i:	2192i:idiosyncrati:2hrefhttpcmbelllabscomcmcswhobwkinterpspaphtmli	:	/)</i:;hrefbenchmarkphptestmethcallamplangjavaampsortsortjavai:
         
     | 
| 
      
 661 
     | 
    
         
            +
            :
         
     | 
| 
      
 662 
     | 
    
         
            +
            monthi:8128k7769k8728ki:capricii:thsizenbspbthi:bcaddbcmulthisqi:
         
     | 
| 
      
 663 
     | 
    
         
            +
            aaroni:
         
     | 
| 
      
 664 
     | 
    
         
            +
            :lilefti:ridiculi:)&#i:strposstimeouti;i:	1235i;�i:moni:	3155i:rejectstrongi:scripti:thmemorynbspkbthi:	qrrti:limichaeli;i:14139k8762k64832ki:htmlapi:edata_testvalui:namealternativewhati:6hreffaqphpsortsortsamewaystrongsamenbspwaystrongai:
         
     | 
| 
      
 665 
     | 
    
         
            +
            1260pi:4223k3311k8216ki:	?)</i:harmonicphpi:
         
     | 
| 
      
 666 
     | 
    
         
            +
            notati:strposspermissi;Pi:	1232i:excelsiori:7720k7232k8216ki:forbidi:logsthi
         
     | 
| 
      
 667 
     | 
    
         
            +
            :bcmulthisqi:	bouli:
         
     | 
| 
      
 668 
     | 
    
         
            +
            ???</i:sprintsoluti:algorithmpi
         
     | 
| 
      
 669 
     | 
    
         
            +
            :	5415i:collectori	:
         
     | 
| 
      
 670 
     | 
    
         
            +
            ;i:lijohani:14076k8315k64832ki:p51619i:
         
     | 
| 
      
 671 
     | 
    
         
            +
            unroli:printstringlengthspani:edata_testi:
         
     | 
| 
      
 672 
     | 
    
         
            +
            tracki;�i:4192k3327k8216ki:	".</i;�i
         
     | 
| 
      
 673 
     | 
    
         
            +
            :sfindsoluti:doubleprecisi:
         
     | 
| 
      
 674 
     | 
    
         
            +
            thissi:ndataedata_testi:languagespi;Gi:analyti:	2179i:...)</i:solverargv1i:	serii:	rubii:4835k4835k10940ki;�i:maximumi:ullithi:
         
     | 
| 
      
 675 
     | 
    
         
            +
            po2m2i:]{i	:7438k6824k8216ki:
         
     | 
| 
      
 676 
     | 
    
         
            +
            ambiti:bytessortai:transformation1i:!hrefaltackermannpike3pikepiki:
         
     | 
| 
      
 677 
     | 
    
         
            +
            bestpi;ii:
         
     | 
| 
      
 678 
     | 
    
         
            +
            unitii:hrefaltackermannpike2piki:14204k8252k64832ki:functionspi;�i	:
         
     | 
| 
      
 679 
     | 
    
         
            +
            thisri:isseterrorrowl1i:namewhatlanguagewhati;�i:urchintrackerphpi:
         
     | 
| 
      
 680 
     | 
    
         
            +
            exit1i:=<i:
         
     | 
| 
      
 681 
     | 
    
         
            +
            peskii:itemcheckrightpri:
         
     | 
| 
      
 682 
     | 
    
         
            +
            ajivji:
         
     | 
| 
      
 683 
     | 
    
         
            +
            coursi:kbsortai:7284k6542k8216ki:pidigitsphpi:arealii:14141k8380k64832ki:	cinti:spanroundi:
         
     | 
| 
      
 684 
     | 
    
         
            +
            thisqi:-langsr1data_langlang_fullidnamer1data_idi:programspi	;�i:typetextjavascripti;�i&:	2171i:
         
     | 
| 
      
 685 
     | 
    
         
            +
            blasti:
         
     | 
| 
      
 686 
     | 
    
         
            +
            2006pi:	1207i:initialsti	:eachwordcounti:atvi:discouragi:secssortai:libi:
         
     | 
| 
      
 687 
     | 
    
         
            +
            nextbi
         
     | 
| 
      
 688 
     | 
    
         
            +
            wasnti:titlesorti:7256k6388k8216ki:kidi:	2259i:ghrefhttpwwwclipdiafiupmessoftwareciaoindexhtmlciaohttpwwwclipdiafiupmessoftwareciaoindexhtmlciaoapi:
         
     | 
| 
      
 689 
     | 
    
         
            +
            stuffi:outputiX:'floatprecisionfordecimalplacesspani:r1data_langi;ji:Zhrefhttpshootoutaliothdebianorgdebianadaphphttpshootoutaliothdebianorgdebianadaphpah3i:','-');i:	2162i:tdspectralnormnbspnbsptdi:thisboardremovepieci:	5298i:traversi:20050328embri:descriptionlinefei:sizeofexplodetagi;�i
         
     | 
| 
      
 690 
     | 
    
         
            +
            :
         
     | 
| 
      
 691 
     | 
    
         
            +
            aijvji;�i	:interestingemlii:Fhrefbenchmarkphptestselectedtestamplangselectedlangampsortfullcpui:	3098i:explosi:
         
     | 
| 
      
 692 
     | 
    
         
            +
            crossi:	utili:r1data_testi;i:h3ai:','');i;i:4225k3313k8216ki;ji:tdnbodynbspnbsptdi:thisfindsoluti:
         
     | 
| 
      
 693 
     | 
    
         
            +
            wirthi	:pthesei	;�i:filesizelog_pathfni:
         
     | 
| 
      
 694 
     | 
    
         
            +
            eventi:	="./i:	1200i:listkvi:emwi:classcnbspthi:
         
     | 
| 
      
 695 
     | 
    
         
            +
            nodepi:
         
     | 
| 
      
 696 
     | 
    
         
            +
            ack3ni;hi:oldtagi:	?>';i:	1197i:
         
     | 
| 
      
 697 
     | 
    
         
            +
            ptabli;Ni:r1data_gzi;`i:predirecti:'./');i:
         
     | 
| 
      
 698 
     | 
    
         
            +
            span3i:	3084i:
         
     | 
| 
      
 699 
     | 
    
         
            +
            cheati:
         
     | 
| 
      
 700 
     | 
    
         
            +
            dloadi:lfspani:r2data_gzi;i:7content3urlhttpshootoutaliothdebianorgdebianadaphpi:'./i:4194k3329k8216ki:tdbinarytreesnbspnbsptdi:takxyzi;�i:thispiecesknextorienti:preg_replaceltmi:
         
     | 
| 
      
 701 
     | 
    
         
            +
            evalui:twofoldi:8230subi:strposfnlogi;�i#:	1194i:pre4500i:countswi:printflinkslinkitemnlinki:historyalii:classtxtcolgroupi:
         
     | 
| 
      
 702 
     | 
    
         
            +
            thunki:7910k7909k10940ki:anywaii:readdirdhi:
         
     | 
| 
      
 703 
     | 
    
         
            +
            prebri:issetcountswi:infiniti:&printfdescriptionsdescriptiondesci:$hrefhttpwwwlevenezcomlangcomputi:
         
     | 
| 
      
 704 
     | 
    
         
            +
            span2i	:6048k5693k8216ki:intermedii:	2214i:linuxunixgnux86i:classsymspanunixprocessi	;Xi:r1data_memory0i:	'.</i;Ei:
         
     | 
| 
      
 705 
     | 
    
         
            +
            pwilli:	5261i:affecti:1788260sub3subsupksupi:whilefni:	1122i:pre450i:strtolowerwordsii:measurementstitlelangnami:;hrefhttppeoplekuedunkinnerslanglistextraslanglisthtmthi:
         
     | 
| 
      
 706 
     | 
    
         
            +
            kpieci:preg_replacespanmi:
         
     | 
| 
      
 707 
     | 
    
         
            +
            tokeni:	vivii:printfitemtitlenewi:	deadi:height150i:]==i:
         
     | 
| 
      
 708 
     | 
    
         
            +
            charti:	3014i:implementationpi:smallintegi:	hrefi
         
     | 
| 
      
 709 
     | 
    
         
            +
            usuali
         
     | 
| 
      
 710 
     | 
    
         
            +
            :
         
     | 
| 
      
 711 
     | 
    
         
            +
            cleani
         
     | 
| 
      
 712 
     | 
    
         
            +
            :5348k4739k8216ki:	xadti:shootouttransformi:
         
     | 
| 
      
 713 
     | 
    
         
            +
            nilpri:
         
     | 
| 
      
 714 
     | 
    
         
            +
            dataai:
         
     | 
| 
      
 715 
     | 
    
         
            +
            ('-',i:	1097i:lipressurizedbottli:outputtxti:fwritefoldfeedii:==-i
         
     | 
| 
      
 716 
     | 
    
         
            +
            :tests_phrasetestnami:5189k4452k8216ki:5hrefbenchmarkphptestmeteorlangallmeteorcontestapi:shootoutpidigitspigotissafi
         
     | 
| 
      
 717 
     | 
    
         
            +
            :perhapi:
         
     | 
| 
      
 718 
     | 
    
         
            +
            forali	:preg_replacespani:datatypi:	5208i:sepi:linefei:issetdsettagi:	]+-[i:	1094i:libottli:invalidi:wordfreqphpi:fwritefnewitemi:)."i:titlechecki:	2997i:strongcontestsstrongpi:
         
     | 
| 
      
 719 
     | 
    
         
            +
            pithii:14080k8320k64832ki:emimagesempi:r2data_fullcpu0i:dtdxhtml1strictdtdi:	listi:
         
     | 
| 
      
 720 
     | 
    
         
            +
            donepi:fwritefoldfeed1i;�i:;";i:@hreffulldataphptestselectedtestampp1p1ampp2p2ampp3p3ampp4p4i:
         
     | 
| 
      
 721 
     | 
    
         
            +
            1218pi:	2125i:fileemi:comparablel2i:	hacki:
         
     | 
| 
      
 722 
     | 
    
         
            +
            :	2123i:+hrefmiscfilephpfiledynamicamptitlejavai:
         
     | 
| 
      
 723 
     | 
    
         
            +
            trueni	:shouldpruni:Ohrefhttpwwwgwydiondylanorgdownloadhtmlhttpwwwgwydiondylanorgdownloadhtmlapi:9960k3816k11068ki:
         
     | 
| 
      
 724 
     | 
    
         
            +
            25000i:settyperowdata_idintegi:	1085i:lipressurizedunsealedsti:stronguniqstrongi:fopenfeeds_pathrssxmli:
         
     | 
| 
      
 725 
     | 
    
         
            +
            "/>',i:nstringnbspchecki:	2992i:	emtoi:isii:b57hmemi:	2103i:verbosi:testdatajdata_testi
         
     | 
| 
      
 726 
     | 
    
         
            +
            ;di:	2118i:ddpsometimi:thisunplacedsi	:pthanki:
         
     | 
| 
      
 727 
     | 
    
         
            +
            buildi:
         
     | 
| 
      
 728 
     | 
    
         
            +
            :
         
     | 
| 
      
 729 
     | 
    
         
            +
            pguili:	2030i:	feofi:	1079i:liunpressurizedemptysti:stronggrepstrongi:itemcounti
         
     | 
| 
      
 730 
     | 
    
         
            +
            :remaini;�i	:	2114i:benchmarkstrongstartupi:pieceii:	petei:	5078i:9hrefftpftpgnuorgpubgnuguileftpftpgnuorgpubgnuguileapi:ack3nni:	dseti:	1075i:!liempressurizedbottlestateemi:strongtrstrongi:filefeeds_pathrssxmli:">-i:titlereadi:spectralnormi:
         
     | 
| 
      
 731 
     | 
    
         
            +
            pcodei:hasmori	;\i:
         
     | 
| 
      
 732 
     | 
    
         
            +
            oldfei:	">',i:hrefabouti:5061k4135k8216ki:
         
     | 
| 
      
 733 
     | 
    
         
            +
            wayemi:streamnexti:
         
     | 
| 
      
 734 
     | 
    
         
            +
            dtzeli:b50i:
         
     | 
| 
      
 735 
     | 
    
         
            +
            lineni:8comparablel1data_testvaluecomparablel2data_testvalui;i":	2105i:157i:'hrefbenchmarkphptesthelloamplangali:thisboardi:
         
     | 
| 
      
 736 
     | 
    
         
            +
            )||($i:
         
     | 
| 
      
 737 
     | 
    
         
            +
            preadi:
         
     | 
| 
      
 738 
     | 
    
         
            +
            novici	:	2981i:
         
     | 
| 
      
 739 
     | 
    
         
            +
            emsami	:largeintegersumfromintegi:gunteri:
         
     | 
| 
      
 740 
     | 
    
         
            +
            boehmi:	5050i:fopenfilenami:	1066i;�i:machiavellipi:percenti:desc2descripti:]])i	:tests_phraseah2i:
         
     | 
| 
      
 741 
     | 
    
         
            +
            pbacki:150i	:!largeintegerproductfromintegi:functionsquoti:b54hseci:
         
     | 
| 
      
 742 
     | 
    
         
            +
            ++.</i:stalini:	2101i:	pyoui:solverargi:Hhrefhttpwwwhplhpcompersonalhans_boehmgcgc_benchappletgcbenchjavahani:
         
     | 
| 
      
 743 
     | 
    
         
            +
            quotai:ov19810i;i:14210k8257k64832ki;5	i:dictchoplini:djdata_langl1i:%">i
         
     | 
| 
      
 744 
     | 
    
         
            +
            existi:	1063i;�i:readspi:	25thi:measuredtitli:][]i:hrefbenchi:	sievi:	2976i:algorithmstrongi:largeintegi:welldefini:b54i:
         
     | 
| 
      
 745 
     | 
    
         
            +
            4128pi:	2034i:fgetsfpi:comparabledjdata_langi:
         
     | 
| 
      
 746 
     | 
    
         
            +
            ('/',i:
         
     | 
| 
      
 747 
     | 
    
         
            +
            abouti.;i:	2097i:timestrongi:lijeffi:
         
     | 
| 
      
 748 
     | 
    
         
            +
            :unplaci:	phppi:	5033i:centrali:parameterspbri:	(--$i:againsti:	1059i;1i
         
     | 
| 
      
 749 
     | 
    
         
            +
            ;=i:itemtitledaii:]],i:testnamestartupi
         
     | 
| 
      
 750 
     | 
    
         
            +
            :
         
     | 
| 
      
 751 
     | 
    
         
            +
            extrai:
         
     | 
| 
      
 752 
     | 
    
         
            +
            =".";i:
         
     | 
| 
      
 753 
     | 
    
         
            +
            usrsii:}/i:murtezaoglui:
         
     | 
| 
      
 754 
     | 
    
         
            +
            alt2ki:countdowni:
         
     | 
| 
      
 755 
     | 
    
         
            +
            libuli:ntoggleactivi:thiscellki:cheatingpi:6891k6890k10940ki:ackxy1i:	1053i:lisealedsti:wordlii:#httpshootoutaliothdebianorggp4i:('./'.$i	:doubleddata_testvalui:	2970i:hrefcontesti:functionapi;?i:	2011i:
         
     | 
| 
      
 756 
     | 
    
         
            +
            singli	:	zuuli
         
     | 
| 
      
 757 
     | 
    
         
            +
            ;�i
         
     | 
| 
      
 758 
     | 
    
         
            +
            :&comparabledjdata_langdata_fullcpui;ri_:
         
     | 
| 
      
 759 
     | 
    
         
            +
            dateji:.'/i:foreachaccepti
         
     | 
| 
      
 760 
     | 
    
         
            +
            :4928k4003k8216ki:namewhydontnbspwhii:accumuli:
         
     | 
| 
      
 761 
     | 
    
         
            +
            pfromi:wmemv1i:14083k8322k64832ki:issetcomparabledjdata_langi:colouri:++;i,:4215k3303k8216ki:hreffullcpui:line_lengthi:	dirui:printpieci:evaluationpi:
         
     | 
| 
      
 762 
     | 
    
         
            +
            errori:5868k5867k10940ki;�i:","i:
         
     | 
| 
      
 763 
     | 
    
         
            +
            ackxii:
         
     | 
| 
      
 764 
     | 
    
         
            +
            orangi	:'];?>"i:
         
     | 
| 
      
 765 
     | 
    
         
            +
            desc2i:	})){i:
         
     | 
| 
      
 766 
     | 
    
         
            +
            fastai:valenzuelai;gi.:make9ai:	lazii	:	4996i:	takpi:	iffpi:==$i:	1044i:statepi:unsetwordi:	>-</i:issetdesc2i:	('./i:nstringi:
         
     | 
| 
      
 767 
     | 
    
         
            +
            owmemi:
         
     | 
| 
      
 768 
     | 
    
         
            +
            dataji:
         
     | 
| 
      
 769 
     | 
    
         
            +
            );?>"i:foreachtestnami:	','-i:4892k4032k8216ki:0hrefhttpsearchcpanorgmjhgtop016gtoppodgtopai:'accepted3data_langaccepted3data_idi:rabinowitzi:cellpadding8i:14211k8259k64832ki:componi;�i:;hrefbenchmarkphptestspellcheckamplangluaampsortsortluai:dataidata_testi;�i	:4232k3319k8216ki:dalmatiani:mcdoweli:make8ai:4845k4844k10940ki:
         
     | 
| 
      
 770 
     | 
    
         
            +
            reboli:
         
     | 
| 
      
 771 
     | 
    
         
            +
            2919pi:
         
     | 
| 
      
 772 
     | 
    
         
            +
            unabli:splitwordi:	infoi:
         
     | 
| 
      
 773 
     | 
    
         
            +
            ?<?='i:asorttestnami:',-i:	2960i:pbuildi:sizeofaccepted3i:unboundi:functionh4divi:
         
     | 
| 
      
 774 
     | 
    
         
            +
            wmem0i:	1967i:dataidata_testvalui:repi:	2079i:groundi:gforthi	:make7ai:alexandi:
         
     | 
| 
      
 775 
     | 
    
         
            +
            i:240i:	1034i:strlenwords0i:
         
     | 
| 
      
 776 
     | 
    
         
            +
            desc1i:
         
     | 
| 
      
 777 
     | 
    
         
            +
            traili:noticeablylii:a1nextsi:
         
     | 
| 
      
 778 
     | 
    
         
            +
            corepi:14082k8227k64832ki:
         
     | 
| 
      
 779 
     | 
    
         
            +
            owseci:	atvni:
         
     | 
| 
      
 780 
     | 
    
         
            +
            slimei:
         
     | 
| 
      
 781 
     | 
    
         
            +
            2003ai:	1882i:pidigiti:atavnvi:30radiui:excludedatarowlangsexcli:	2070i:psnaili:<?=i:
         
     | 
| 
      
 782 
     | 
    
         
            +
            wholei:make5ai:treelii:9965k9965k11068ki:
         
     | 
| 
      
 783 
     | 
    
         
            +
            offeri	:	1007i:hassplitwordi
         
     | 
| 
      
 784 
     | 
    
         
            +
            atvnvi:issetinclrowdata_testi:
         
     | 
| 
      
 785 
     | 
    
         
            +
            wcphpi:devi
         
     | 
| 
      
 786 
     | 
    
         
            +
            :testnamestesti:
         
     | 
| 
      
 787 
     | 
    
         
            +
            gforgi:splitbytestvalueallspecii:obscuri:hrefackermanntcltcli:	1860i:
         
     | 
| 
      
 788 
     | 
    
         
            +
            wsec0i:	avnvi:foreachrowi:4233k3320k8216ki:	lifei:	warmi:	lifri:a3nextni:	walki:
         
     | 
| 
      
 789 
     | 
    
         
            +
            blacki:deallocatedlii:
         
     | 
| 
      
 790 
     | 
    
         
            +
            twicei;�i
         
     | 
| 
      
 791 
     | 
    
         
            +
            :splitbytestvalueallrejecti:strongnotstrongi:codedebugseti:	tempi:14046k8240k64832ki:vn_linei:n20i	:langl1i:
         
     | 
| 
      
 792 
     | 
    
         
            +
            naturi:
         
     | 
| 
      
 793 
     | 
    
         
            +
            :	2061i:
         
     | 
| 
      
 794 
     | 
    
         
            +
            partpi:jnii:
         
     | 
| 
      
 795 
     | 
    
         
            +
            ="<?=i:lialloci	:newraynewvector00i:
         
     | 
| 
      
 796 
     | 
    
         
            +
            3100pi:ifthiscache_idi:	0988i:represi:!preg_matchazazslogifilematchi:0mmi:"),i:4649k3729k8216ki:hrefdownsourci:'filterandsortdatalangsdatasortexcli:	!(($i:calculatedlii:requireoutputi:413i:
         
     | 
| 
      
 797 
     | 
    
         
            +
            yearli:lilarrii:
         
     | 
| 
      
 798 
     | 
    
         
            +
            ;).</i:	2057i:make2ai:6896k6895k10940ki:
         
     | 
| 
      
 799 
     | 
    
         
            +
            ov114i:fiti	:
         
     | 
| 
      
 800 
     | 
    
         
            +
            phorsi:
         
     | 
| 
      
 801 
     | 
    
         
            +
            :
         
     | 
| 
      
 802 
     | 
    
         
            +
            sspani:
         
     | 
| 
      
 803 
     | 
    
         
            +
            dotvvi:md5cache_idi;�i:oldi:	0976i:pvisualworksri:opendirdirnami:nameoptionswheri:testsselectedtesti:
         
     | 
| 
      
 804 
     | 
    
         
            +
            accuri:
         
     | 
| 
      
 805 
     | 
    
         
            +
            emaili:	1750i:	ov14i
         
     | 
| 
      
 806 
     | 
    
         
            +
            :	rangi
         
     | 
| 
      
 807 
     | 
    
         
            +
            ov112i:Xhrefhttpmathworldwolframcomspectralnormhtmlhttpmathworldwolframcomspectralnormhtmlai:an_cpu_maxi;>i:
         
     | 
| 
      
 808 
     | 
    
         
            +
            expiri
         
     | 
| 
      
 809 
     | 
    
         
            +
            :mortoni:	0969i:cmp_testackermanni:asdoublespani:dirnami:0hrefbenchmarkphptestalllanggcclang2gccabouti:reversi:4483k3586k8216ki:tailcali:
         
     | 
| 
      
 810 
     | 
    
         
            +
            32biti:hash2foo_9999ni:	1707i:	ts25i:�hrefhttpmathworldwolframcomhundreddollarhundreddigitchallengeproblemshtmlhttpmathworldwolframcomhundreddollarhundreddigitchallengeproblemshtmlabri:comparemaxcpuai:	guili:>@i	:4187k3322k8216ki:
         
     | 
| 
      
 811 
     | 
    
         
            +
            :
         
     | 
| 
       321 
812 
     | 
    
         
             
            :
         
     | 
| 
       322 
     | 
    
         
            -
             
     | 
| 
       323 
     | 
    
         
            -
             
     | 
| 
       324 
     | 
    
         
            -
             
     | 
| 
       325 
     | 
    
         
            -
             
     | 
| 
       326 
     | 
    
         
            -
             
     | 
| 
       327 
     | 
    
         
            -
             
     | 
| 
       328 
     | 
    
         
            -
             
     | 
| 
       329 
     | 
    
         
            -
             
     | 
| 
       330 
     | 
    
         
            -
             
     | 
| 
       331 
     | 
    
         
            -
             
     | 
| 
       332 
     | 
    
         
            -
             
     | 
| 
       333 
     | 
    
         
            -
             
     | 
| 
       334 
     | 
    
         
            -
             
     | 
| 
       335 
     | 
    
         
            -
             
     | 
| 
       336 
     | 
    
         
            -
             
     | 
| 
       337 
     | 
    
         
            -
             
     | 
| 
       338 
     | 
    
         
            -
             
     | 
| 
       339 
     | 
    
         
            -
             
     | 
| 
       340 
     | 
    
         
            -
             
     | 
| 
       341 
     | 
    
         
            -
             
     | 
| 
       342 
     | 
    
         
            -
             
     | 
| 
       343 
     | 
    
         
            -
             
     | 
| 
       344 
     | 
    
         
            -
             
     | 
| 
       345 
     | 
    
         
            -
             
     | 
| 
       346 
     | 
    
         
            -
             
     | 
| 
       347 
     | 
    
         
            -
             
     | 
| 
       348 
     | 
    
         
            -
             
     | 
| 
       349 
     | 
    
         
            -
             
     | 
| 
       350 
     | 
    
         
            -
             
     | 
| 
       351 
     | 
    
         
            -
             
     | 
| 
       352 
     | 
    
         
            -
             
     | 
| 
       353 
     | 
    
         
            -
             
     | 
| 
       354 
     | 
    
         
            -
             
     | 
| 
       355 
     | 
    
         
            -
             
     | 
| 
       356 
     | 
    
         
            -
             
     | 
| 
       357 
     | 
    
         
            -
             
     | 
| 
       358 
     | 
    
         
            -
             
     | 
| 
      
 813 
     | 
    
         
            +
            pageai:14066k8260k64832ki:charwidthi:hundreddigiti:namep4i;ni:4203k3291k8216ki:
         
     | 
| 
      
 814 
     | 
    
         
            +
            :4356k3587k8216ki;�i:preciselinuxunifiedpi:hrefdetailphpdetaili:	1685i:blackfpathshortnami;>i�:hundreddollari:linkp3i:listevi;�i:	2036i:upsidedownpi:a2nexti;�i	:classnum1spani:7026k7025k9540ki:scalebyraydirecti:ob_get_conti;$i:	0919i:testtop_navackermanni:paddedwithspani;i:
         
     | 
| 
      
 815 
     | 
    
         
            +
            pagepi:017i:
         
     | 
| 
      
 816 
     | 
    
         
            +
            mottli:60p6260p62pi;ii:4219k3307k8216ki:	racei
         
     | 
| 
      
 817 
     | 
    
         
            +
            :a1nexti
         
     | 
| 
      
 818 
     | 
    
         
            +
            :nextputallspani
         
     | 
| 
      
 819 
     | 
    
         
            +
            :pani:	());i
         
     | 
| 
      
 820 
     | 
    
         
            +
            soferi:	2031i:
         
     | 
| 
      
 821 
     | 
    
         
            +
            ptheii:a1nextwi	:printstringspani:[hrefhttpwwwjwdtcompaysanbigforthhtmldownloadhttpwwwjwdtcompaysanbigforthhtmldownloadapi:6067k6066k9540ki:newintersectionpointinfini:
         
     | 
| 
      
 822 
     | 
    
         
            +
            bytesi:
         
     | 
| 
      
 823 
     | 
    
         
            +
            wayiai:
         
     | 
| 
      
 824 
     | 
    
         
            +
            nspani:
         
     | 
| 
      
 825 
     | 
    
         
            +
            pelcpi:/?i
         
     | 
| 
      
 826 
     | 
    
         
            +
            xsizei;!i=;�i	:asub22sub15i:namep1i;Hi:	hinti:	2027i:strongnoti:thiscachethisorientationii:iftruespani:forthanbsppdfi:7557k5107k8472ki:center0i:array_mergethisvari:	hardi:9////////////////////////////////////////////////////i
         
     | 
| 
      
 827 
     | 
    
         
            +
            :	0909i:valueackermanni:$classsymspanexternalwritestreami:$readuniquefilenamehasheadingtrui;�i;Fi
         
     | 
| 
      
 828 
     | 
    
         
            +
            :	2945i:	2858i;*i:	v588i:testh4divi:	1620i:$imagettfbboxfsize0fpathshortnami;�ih:	4231i:asub13sub14i:1fni:sidebysidi:lawsoni:4204k3292k8216ki:namefablewhati:
         
     | 
| 
      
 829 
     | 
    
         
            +
            cellii:classnum0spanspani::hrefhttpwwwmpeltddemoncoukarenaprogramforthpdfprogrami:	4566i:	ddddi:newvectori:ifis_arrayvari:4187k3291k8216ki:vartitli:whoi:classsymspanstdoutspani:websitewebsitesfei:	3050i:vani:8202k7286k8216ki:smalleri:symboli:1hrefhttpwwwcpanorgsrc50httpwwwcpanorgsrc50api;i:classh4h4abouti:
         
     | 
| 
      
 830 
     | 
    
         
            +
            fpathi:
         
     | 
| 
      
 831 
     | 
    
         
            +
            :	1599i:asub11sub1i:idnamebi	:
         
     | 
| 
      
 832 
     | 
    
         
            +
            ocamli:4220k3308k8216ki:namemeansnbspwhati:nextorienti:negatedspani:	4553i:%arrayoriginorigindirectiondirecti:thisvarsnami:4185k3291k8216ki:Zhrefhttpshootoutaliothdebianorgdebiancycphphttpshootoutaliothdebianorgdebiancycphpah3i:>(i:	goodi
         
     | 
| 
      
 833 
     | 
    
         
            +
            :ioaccessorspani:websitedesci:
         
     | 
| 
      
 834 
     | 
    
         
            +
            ,...,i:8158k7306k8216ki:nameseemorewheri:powk05i:pikarui:truetypi;S	i1:suffixi:14074k8220k64832ki:
         
     | 
| 
      
 835 
     | 
    
         
            +
            pareni:newrayorigindirecti:setnami:	0900i:7content3urlhttpshootoutaliothdebianorgdebiancycphpi:	welli: classsymspanexternalconnecti:(require_oncewebsiteliblib_commonphpi:	2848i:hrefseemori:powtwothirdsk1i:>hrefhttpwwwcsindianaeduaghuloumikarusdownloadsdownloadsapi:	ymemi
         
     | 
| 
      
 836 
     | 
    
         
            +
            :*/iF:	1577i:v11060i:strlenai	:libenedikti:
         
     | 
| 
      
 837 
     | 
    
         
            +
            :pagesetpageidi:	26kbi; i:
         
     | 
| 
      
 838 
     | 
    
         
            +
            querii:roundingerrori:
         
     | 
| 
      
 839 
     | 
    
         
            +
            :	stati:aboutsetsorti:8031k7262k8216ki:itemsstrongai:
         
     | 
| 
      
 840 
     | 
    
         
            +
            ;�i�:
         
     | 
| 
      
 841 
     | 
    
         
            +
            dummii
         
     | 
| 
      
 842 
     | 
    
         
            +
            :lisplii:	2012i:
         
     | 
| 
      
 843 
     | 
    
         
            +
            pwheni;�i:
         
     | 
| 
      
 844 
     | 
    
         
            +
            rigidi:aboutsetselectedlangi:	2842i:Nhrefhttpaliothdebianorgtrackeratid411646group_id30402funcbrowsestrongplaii:strongcorrectstrongi:
         
     | 
| 
      
 845 
     | 
    
         
            +
            helppi:h68i;�iF:14046k8232k64832ki:Qhrefhttpwwwsmlnjorgdistworkingindexhtmlhttpwwwsmlnjorgdistworkingindexhtmlapi:
         
     | 
| 
      
 846 
     | 
    
         
            +
            nastii:eiffeli:
         
     | 
| 
      
 847 
     | 
    
         
            +
            :
         
     | 
| 
      
 848 
     | 
    
         
            +
            peteri:
         
     | 
| 
      
 849 
     | 
    
         
            +
            dailii:asnumberspani:aboutsetselectedtesti:
         
     | 
| 
      
 850 
     | 
    
         
            +
            iforti:
         
     | 
| 
      
 851 
     | 
    
         
            +
            :classsymspancenvironi:unixtdi:bodysetexcli:8049k7135k8216ki:pperiodi:noncommercii:	ts13i;�i:	1473i:gsti:	ckcki:actionfulldataphpi:lifriedrichi:
         
     | 
| 
      
 852 
     | 
    
         
            +
            allowi:
         
     | 
| 
      
 853 
     | 
    
         
            +
            dotabi:	torti:	0887i:typesafi:noncommercialapi:altgnui;RiQ:bodysetsorti:	2837i:namepreviouswheri:exploiti:installpackageidi:/*i::	360pi:14042k8220k64832ki:purposi:Ahrefhttpwwwslangorgdownloadhtmlhttpwwwslangorgdownloadhtmlapi:	skski:?mkcomparisonmenuformlangstestsselectedtestdatap1p2p3p4sorti:
         
     | 
| 
      
 854 
     | 
    
         
            +
            nowaki:4222k3309k8216ki:benchmarksstrongapi:thismake6i:>)&i:paradoxi:6586k5640k8216ki:classsymspanstreami
         
     | 
| 
      
 855 
     | 
    
         
            +
            lihani:
         
     | 
| 
      
 856 
     | 
    
         
            +
            powlii;�i:intelri:headtoheadphpi:14052k8218k64832ki:	nbspi:
         
     | 
| 
      
 857 
     | 
    
         
            +
            kstopi:sorttestvalui:
         
     | 
| 
      
 858 
     | 
    
         
            +
            roxeni:
         
     | 
| 
      
 859 
     | 
    
         
            +
            takeni:4190k3326k8216ki:titleflawi:thismake4i;i:underlii:
         
     | 
| 
      
 860 
     | 
    
         
            +
            damagi:	0881i:cyci:visualworksl174i:altpythoni:bodysetlangi:	2832i:namewherenbspwheri:botheri:…)</i:fortrani:configphpi:!)i:	1437i:bei:
         
     | 
| 
      
 861 
     | 
    
         
            +
            vitali;�i:5995k5690k8216ki:classnum4096spanspani:manipuli:arraya0b0i:^=i:
         
     | 
| 
      
 862 
     | 
    
         
            +
            claimi:	0878i:
         
     | 
| 
      
 863 
     | 
    
         
            +
            pzinci;�i:smalltalk8482i:"srcimage_pathpythonpoweredpngi:bodysetselectedtesti:
         
     | 
| 
      
 864 
     | 
    
         
            +
            2005pi;�i:14049k8228k64832ki:
         
     | 
| 
      
 865 
     | 
    
         
            +
            moonpi:selectedin_memory_maxi:4206k3294k8216ki:curiousstrongi:.hrefhttpwwwroxencomproductswebserverroxeni:thismake2i:	ironi:	4514i:buffersizespani:/</i{:
         
     | 
| 
      
 866 
     | 
    
         
            +
            addabi:
         
     | 
| 
      
 867 
     | 
    
         
            +
            liabli:	0874i:	2005i*:Whrefhttpdanaeunimuensterdeluxcurrydownloadhttpdanaeunimuensterdeluxcurrydownloadapi:Nhrefhttpsmalltalkcincomcomprodinformationindexsspcontentvwfactsheetcincomi:mailmantdi:bodysettesti:7875k7107k8216ki:receivi:
         
     | 
| 
      
 868 
     | 
    
         
            +
            delegi:	/"><i:	messi:401i:	1419i:
         
     | 
| 
      
 869 
     | 
    
         
            +
            piconi:langsl2lang_fuli:	1401i:	parsi:applici	:circumferi:k2ki:foreachdn_memorii:
         
     | 
| 
      
 870 
     | 
    
         
            +
            indici:classsymspanspani	:newvectorxyzi:noninfringi:	0868i:
         
     | 
| 
      
 871 
     | 
    
         
            +
            becomi:srcimage_pathmailmanjpgi:
         
     | 
| 
      
 872 
     | 
    
         
            +
            arrivi:bodysettitli;�i4:7892k6979k8216ki:idai:benchmarkslii:Ahrefhttpwwwcsarizonaeduiconv943httpwwwcsarizonaeduiconv943api:shortname2i:14045k8223k64832ki:
         
     | 
| 
      
 873 
     | 
    
         
            +
            earthi;�i:selectedin_cpu_maxi:4223k3310k8216ki;2i
         
     | 
| 
      
 874 
     | 
    
         
            +
            :henriki:thismake0i;�i:rewardi:	4504i:	seemi
         
     | 
| 
      
 875 
     | 
    
         
            +
            tdimgi:bodysetidi:describi:	2821i:hrefaliothiddarrnbspaliothi:
         
     | 
| 
      
 876 
     | 
    
         
            +
            :thiscachekii;�i
         
     | 
| 
      
 877 
     | 
    
         
            +
            implii:	0862i:monoapi;�i:ahrefhttpwwwmonoprojectcomvisualbasicnet_supporthttpwwwmonoprojectcomvisualbasicnet_supportapi:authorizationpi;�i:log_pathtillogi:
         
     | 
| 
      
 878 
     | 
    
         
            +
            marcui:	2007i:	desci
         
     | 
| 
      
 879 
     | 
    
         
            +
            unormi:
         
     | 
| 
      
 880 
     | 
    
         
            +
            liluai:	madgi:="<?=$i:	1365i:
         
     | 
| 
      
 881 
     | 
    
         
            +
            ;<?=$i
         
     | 
| 
      
 882 
     | 
    
         
            +
            shalli:	0852i::content3urlhttpshootoutaliothdebianorgdebiancsharpphpi:Ehrefhttplistsaliothdebianorgmailmanadminshootoutlistshootoutlisti:bodysetcodi:
         
     | 
| 
      
 883 
     | 
    
         
            +
            ralphi:
         
     | 
| 
      
 884 
     | 
    
         
            +
            becami;qi	:strlenlangslanglang_name0i:	1982i:choseni:	norei:multitaski:thisnextsi	:
         
     | 
| 
      
 885 
     | 
    
         
            +
            cnexti:3fni:
         
     | 
| 
      
 886 
     | 
    
         
            +
            behavi:	4488i;�i:methodsforspani:('<iS:dxdoublessi:	whomi:
         
     | 
| 
      
 887 
     | 
    
         
            +
            pmonoi;~i�:	0846i:
         
     | 
| 
      
 888 
     | 
    
         
            +
            atheni:
         
     | 
| 
      
 889 
     | 
    
         
            +
            dn_idi:
         
     | 
| 
      
 890 
     | 
    
         
            +
            :lifredriki:thisnextwi	:behaviouri:
         
     | 
| 
      
 891 
     | 
    
         
            +
            42315i:	2805i:strongstarti;Di+:langnameidnameii:$sup87221supk1supsup8260subksubpi:14046k8224k64832ki:hhratioi:
         
     | 
| 
      
 892 
     | 
    
         
            +
            libyai;�i:plang3dn_langpid3dn_idi;i
         
     | 
| 
      
 893 
     | 
    
         
            +
            :
         
     | 
| 
      
 894 
     | 
    
         
            +
            24315i:
         
     | 
| 
      
 895 
     | 
    
         
            +
            cyreni:	252pi:plang2dn_langpid2dn_idi:)?-i:4192k3328k8216ki:hrefwini:)hrefhttpwwwrubycentralcombookprogrami:
         
     | 
| 
      
 896 
     | 
    
         
            +
            thiszi:cnumberi:
         
     | 
| 
      
 897 
     | 
    
         
            +
            forevi:	4476i:classvariablenamesspani:">&i^:thisboundi	:
         
     | 
| 
      
 898 
     | 
    
         
            +
            reachi:Chrefhttpwwwecmainternationalorgpublicationsstandardsecma335htmi:	0831i:hhrefhttpwwwunikarlsruhedeuu9rlanghtmllangallenhtmlhttpwwwunikarlsruhedeuu9rlanghtmllangallenhtmlalii:namerosteremaili:7680k6834k8216ki:
         
     | 
| 
      
 899 
     | 
    
         
            +
            34215i:pinteli:14044k8222k64832ki;ii:hratioi:
         
     | 
| 
      
 900 
     | 
    
         
            +
            thisii
         
     | 
| 
      
 901 
     | 
    
         
            +
            :
         
     | 
| 
      
 902 
     | 
    
         
            +
            lidavi:
         
     | 
| 
      
 903 
     | 
    
         
            +
            thisxi
         
     | 
| 
      
 904 
     | 
    
         
            +
            :thiscellsinextji:
         
     | 
| 
      
 905 
     | 
    
         
            +
            ;?></i:nonleafi:
         
     | 
| 
      
 906 
     | 
    
         
            +
            chargi:Dhrefhttpwwwecmainternationalorgpublicationsstandardsecma334htmci;Qi:	0825i:Zhrefhttpwwwcsarizonaeduiconlibraryfprogshtmhttpwwwcsarizonaeduiconlibraryfprogshtmalii:membersempi:
         
     | 
| 
      
 907 
     | 
    
         
            +
            pdashi:,&$i(:4208k3296k8216ki:programsstrongadti:timealii:
         
     | 
| 
      
 908 
     | 
    
         
            +
            jsidei:	4419i:instancevariablenamesspani:	?></i:demandi:vnormali:
         
     | 
| 
      
 909 
     | 
    
         
            +
            granti:Zhrefhttpshootoutaliothdebianorgdebiancppphphttpshootoutaliothdebianorgdebiancppphpah3i:	cycli
         
     | 
| 
      
 910 
     | 
    
         
            +
            :sectioni
         
     | 
| 
      
 911 
     | 
    
         
            +
            :	0822i:Xhrefftpftptuwienacatperfbenchmarkaburtofaqftpftptuwienacatperfbenchmarkaburtofaqalii:colspan3pemthi:7553k6784k8216ki:listronggroupstrongi:+readselecteddataarraysdata_pathdatacsvi:42153lii:harmonicni:">"i:14051k8217k64832ki:xratioi	:objinsti:sievepi:]+$i:
         
     | 
| 
      
 912 
     | 
    
         
            +
            pfindi:
         
     | 
| 
      
 913 
     | 
    
         
            +
            plangi:	'>':i:navi:hrefsidesidi:kindlii:
         
     | 
| 
      
 914 
     | 
    
         
            +
            zetani:
         
     | 
| 
      
 915 
     | 
    
         
            +
            subk1i:5hrefhttpwwwhaskellorghugshttpwwwhaskellorghugsapi:14049k8227k64832ki:pcounti:subselecti:	';':i:lineorii:benchmarksapi:castroi;8i:4225k3312k8216ki:printboardi:	4410i:subclassspani:domainstrongadti:raydirectionscaledbydi:ricardoi:	0812i:@hrefhttpwwwbytecombmarkbdochtmhttpwwwbytecombmarkbdochtmalii;|i:<actionhttplistsaliothdebianorgmailmanrostershootoutlisti:	pathi:7565k6657k8216ki:parkeri:teststtest_nami	:printf9ftriemanni:ksup872205supi:
         
     | 
| 
      
 916 
     | 
    
         
            +
            0916pi:valueediti:	2789i:
         
     | 
| 
      
 917 
     | 
    
         
            +
            glenni:testnami:	2000i:functionempi:14047k8225k64832ki:valuesendi:	1985i;}i:ndatain_memorii:accordi:pcompari:versionlii:
         
     | 
| 
      
 918 
     | 
    
         
            +
            :brianmassassineti;;i:	0806i:liresearchi:nameuseropti:
         
     | 
| 
      
 919 
     | 
    
         
            +
            isseti
         
     | 
| 
      
 920 
     | 
    
         
            +
            :	metai5:printf9ftharmonicni:	emusi:~i:14044k8223k64832ki:intvalvi:namesend_maili:ndatain_fullcpui:011i:implementationsstrongadti:notsoclevi:4193k3329k8216ki:
         
     | 
| 
      
 921 
     | 
    
         
            +
            asstri:	4399i:pbrwevei:	goali;.	i:thisdistanceraii:lozieri:	0803i:
         
     | 
| 
      
 922 
     | 
    
         
            +
            subk0i:
         
     | 
| 
      
 923 
     | 
    
         
            +
            modifi:virtual_pagepagetitli:selectrandomgenelisti:	1060i:foreachexplodeoxi:rows15i:203i:langslanglang_htmlidnameidi:hrefoneoni:likerrii:
         
     | 
| 
      
 924 
     | 
    
         
            +
            showni:
         
     | 
| 
      
 925 
     | 
    
         
            +
            :	4389i:smalltalkapbri:*hrefhttpwwwadapowercomrm95rm03htmladai;�i;Yi:
         
     | 
| 
      
 926 
     | 
    
         
            +
            ipieci:'classmessagesspantdtdtdtdstdtdspani;li:	0794i:definelangs_phraselanguagi:philosophi:unsubscribi:7385k6616k8216ki:
         
     | 
| 
      
 927 
     | 
    
         
            +
            uniqui:http_get_varssorti:
         
     | 
| 
      
 928 
     | 
    
         
            +
            p8721i:
         
     | 
| 
      
 929 
     | 
    
         
            +
            vn_gzi;�i
         
     | 
| 
      
 930 
     | 
    
         
            +
            :inheriti:	0790i:definetests_phrasi:
         
     | 
| 
      
 931 
     | 
    
         
            +
            lidini:	="#%i:remindi:descendi:emstrongmuststrongemi:strlenhttp_get_varssorti:	2777i:seriespi:
         
     | 
| 
      
 932 
     | 
    
         
            +
            ndatai:!hrefcontributedarrnbspattachi:liphili:
         
     | 
| 
      
 933 
     | 
    
         
            +
            :definechart_v3200i:
         
     | 
| 
      
 934 
     | 
    
         
            +
            liguii:colspan3ptoi:strongsummarystrongi:issethttp_get_varssorti:
         
     | 
| 
      
 935 
     | 
    
         
            +
            libili:	1951i:thiscachepnumberporienti:
         
     | 
| 
      
 936 
     | 
    
         
            +
            lisaii:1htmlfragmentversion_pathlseparatorversionphpi:	2773i:ktti:whatevi:
         
     | 
| 
      
 937 
     | 
    
         
            +
            ;�i:tn_memory_maxi:namenami:	dumpi:bagleii:
         
     | 
| 
      
 938 
     | 
    
         
            +
            thisti:colspan3nbsptdtri	:
         
     | 
| 
      
 939 
     | 
    
         
            +
            ttsini:
         
     | 
| 
      
 940 
     | 
    
         
            +
            idnavi:
         
     | 
| 
      
 941 
     | 
    
         
            +
            advici:14043k8219k64832ki:maxlength40i;8i:	rexxi:	1947i:hrefhelpdarrnbspini:thisfindpcellpieceindexi:
         
     | 
| 
      
 942 
     | 
    
         
            +
            :thnbspnnbspthi:michaeli:	0775i:definesepari:recursiveiti:nameemailbuttoni:pidi:listarti:lseparatorabouttplphpi:	2767i:
         
     | 
| 
      
 943 
     | 
    
         
            +
            assumi:liquicksorti:colspan2nbsptdi:strongstepbystepstrongpi:2languagedatadata_pathndatacsvlangsinclexclll2i:
         
     | 
| 
      
 944 
     | 
    
         
            +
            indexi:	1943i:rulesthi:5thiscachepnumberporientationpieceindexboardindexi;i:	4372i:5hrefhttpgroovycodehausorghttpgroovycodehausorgapi:emphasii:shadowpi:usenbspkbthi:	0769i:defineblanki;?i:
         
     | 
| 
      
 945 
     | 
    
         
            +
            :languagetplphpi:7214k6445k8216ki:severalloopi:
         
     | 
| 
      
 946 
     | 
    
         
            +
            tdh4ai:	0851i:drawnameselectedin_fuli:
         
     | 
| 
      
 947 
     | 
    
         
            +
            :nametoaddressi;�i:modula2i:4227k3314k8216ki:
         
     | 
| 
      
 948 
     | 
    
         
            +
            choosi:thisfindpnexticnextii;Zi:godarti:prologi:6strongabri:
         
     | 
| 
      
 949 
     | 
    
         
            +
            humani:6031k5735k8216ki:shadowraii	:timenbspsecsthi:
         
     | 
| 
      
 950 
     | 
    
         
            +
            tdh1ai:
         
     | 
| 
      
 951 
     | 
    
         
            +
            descni:	0835i:#drawpolylineselectedin_fullcpui:
         
     | 
| 
      
 952 
     | 
    
         
            +
            thanki:
         
     | 
| 
      
 953 
     | 
    
         
            +
            thcpui:	0763i:faqi:
         
     | 
| 
      
 954 
     | 
    
         
            +
            ligifi:namedigesti:pbefori:ll2i:	2757i:parroti:
         
     | 
| 
      
 955 
     | 
    
         
            +
            63221i:classbannertri:14043k8220k64832ki	:
         
     | 
| 
      
 956 
     | 
    
         
            +
            couldi:isizeofselecti
         
     | 
| 
      
 957 
     | 
    
         
            +
            :websiti:emailpi:.'-'.$i:
         
     | 
| 
      
 958 
     | 
    
         
            +
            slangi:
         
     | 
| 
      
 959 
     | 
    
         
            +
            hy2bmi:
         
     | 
| 
      
 960 
     | 
    
         
            +
            saueri:302066i:relshortcuti:	0765i:xwidthi;-i:mailingnbsplisth3tdtri:
         
     | 
| 
      
 961 
     | 
    
         
            +
            tracei:dtnbspaldoi:
         
     | 
| 
      
 962 
     | 
    
         
            +
            clicki:	0756i:definesite_titlethi:liparsi:	16r4i:
         
     | 
| 
      
 963 
     | 
    
         
            +
            batchi:
         
     | 
| 
      
 964 
     | 
    
         
            +
            spenti:
         
     | 
| 
      
 965 
     | 
    
         
            +
            dannii:7hrefmiscfilephpsortsortampfilelicenseamptitlerevisi:
         
     | 
| 
      
 966 
     | 
    
         
            +
            70112i:hrefimage_pathbenchmarkcssi:	0746i:reallii:
         
     | 
| 
      
 967 
     | 
    
         
            +
            hy1bmi:informi:classrevnbspshootoutlisti:
         
     | 
| 
      
 968 
     | 
    
         
            +
            forthi
         
     | 
| 
      
 969 
     | 
    
         
            +
            :4211k3299k8216ki:hrefgzbytesdarrnbspsourci:]->i�:thiscellsiisemptii:	m1iki:
         
     | 
| 
      
 970 
     | 
    
         
            +
            bjarni:presenti	:
         
     | 
| 
      
 971 
     | 
    
         
            +
            typici	:5213k4662k8216ki:scaleddirecti	:	0753i:definesite_nami:
         
     | 
| 
      
 972 
     | 
    
         
            +
            tweaki:classimgfooti:	8903i:typetextcssi:
         
     | 
| 
      
 973 
     | 
    
         
            +
            separi	:issety1i:
         
     | 
| 
      
 974 
     | 
    
         
            +
            referi:colspan3h3i:
         
     | 
| 
      
 975 
     | 
    
         
            +
            liiani;_i:	1929i:	useai:firstemptycellindexi:	kcoli:largeri	:	4340i;�i
         
     | 
| 
      
 976 
     | 
    
         
            +
            :	2745i:namecontributenbsphowi:
         
     | 
| 
      
 977 
     | 
    
         
            +
            :thiscellsiunmarki:3hrefhttpwwwresearchattcombshoplalmostfinalpdfci:4strongabri:aimi:
         
     | 
| 
      
 978 
     | 
    
         
            +
            timeai:thiscacheijkmi:oppositi:4995k4317k8216ki:is_infinitepdisti:	0744i:definedevfalsi:	libei: colspan2reenternbsppasswordi:langsllang_fuli:7044k6142k8216ki:	wasti:image_pathhighlightcssi:
         
     | 
| 
      
 979 
     | 
    
         
            +
            70945i:
         
     | 
| 
      
 980 
     | 
    
         
            +
            roboti:arraywhiti:	0665i:fridaii:	hashi:improvementslii:	1925i:hrefmeasurecpudarrnbspcpui:mboard_sizi:126i:periodi:	4333i;�i	:	0741i:definegp4_siti:httpwwwequi4commd5ai:	])==i:size15i:langnami:	2740i:promosstrongi:600i
         
     | 
| 
      
 981 
     | 
    
         
            +
            :mediaali:	8537i:encodingiso88591i:
         
     | 
| 
      
 982 
     | 
    
         
            +
            fullii: imagecolorallocateim2554924i:	0649i:candidi;>i:lisoreni:
         
     | 
| 
      
 983 
     | 
    
         
            +
            pgnati:intersectionpointinfini:(hrefmailtojackboshinfospeednetnbspai:	0738i:definecontests_siti:hrefhttpwwwequi4commd5i:
         
     | 
| 
      
 984 
     | 
    
         
            +
            ('',$i:namepwi:*require_oncelib_pathlib_headtoheadphpi:
         
     | 
| 
      
 985 
     | 
    
         
            +
            costai:4196k3332k8216ki:namescoredstronghowi;�iK:
         
     | 
| 
      
 986 
     | 
    
         
            +
            alphai:jpiece_orienti:	hugei:4867k4099k8216ki:thisintersectraii:6hrefmailtocharlescosgroveclean007netsievecomnbspai:247i:
         
     | 
| 
      
 987 
     | 
    
         
            +
            limd5i:	[]=$i:typepasswordi:headtoheadi:6986k6148k8216ki:website8230adti:302059i:
         
     | 
| 
      
 988 
     | 
    
         
            +
            andori:xmli:	havei:!imagecolorallocateim25525516i:	0633i:Khrefftpftploriafrpubloriasmarteiffelftpftploriafrpubloriasmarteiffelapi:livascoi:	1920i:
         
     | 
| 
      
 989 
     | 
    
         
            +
            95499i:
         
     | 
| 
      
 990 
     | 
    
         
            +
            bmmaxi:	comei:	0617i:
         
     | 
| 
      
 991 
     | 
    
         
            +
            wouldi:7hrefhttpsmarteiffelloriafrhttpsmarteiffelloriafrapi:	lispi:
         
     | 
| 
      
 992 
     | 
    
         
            +
            :
         
     | 
| 
      
 993 
     | 
    
         
            +
            foleii:	notei:extendi:4212k3300k8216ki:winneri;i:thiscellsi1i:miji:
         
     | 
| 
      
 994 
     | 
    
         
            +
            :erlangai:	4321i:siteapi:
         
     | 
| 
      
 995 
     | 
    
         
            +
            flushi:passwordstrongi:metaroboti2:	2728i:namepromohowi:302050i;+i:sizeoftestvalui:	0585i;�i:149012e08i:sanchezi:
         
     | 
| 
      
 996 
     | 
    
         
            +
            beguni;pi:cnextswi:,hrefhttpwwwerlangorgfaqt1htmlaen43frequi:
         
     | 
| 
      
 997 
     | 
    
         
            +
            :6863k5963k8216ki:hrefpromoi:115733i:14041k8218k64832ki
         
     | 
| 
      
 998 
     | 
    
         
            +
            :lipauli:	knowi:4229k3316k8216ki:thisadti:
         
     | 
| 
      
 999 
     | 
    
         
            +
            permii:cnextsi:logicbri:7543k3844k8472ki:hrefhttpslibreadacorecomthi:centerzi:extremi:
         
     | 
| 
      
 1000 
     | 
    
         
            +
            introi:
         
     | 
| 
      
 1001 
     | 
    
         
            +
            securi:
         
     | 
| 
      
 1002 
     | 
    
         
            +
            :	1988i:	0719i:definedownload_pathi:httpwwwjythonorglii:
         
     | 
| 
      
 1003 
     | 
    
         
            +
            thisni:	mildi:http_get_vari:6803k5967k8216ki:
         
     | 
| 
      
 1004 
     | 
    
         
            +
            everii:comparisondatalangsndpexcli:	0552i:linknami;Qi:strlenddata_load1i:4197k3333k8216ki:
         
     | 
| 
      
 1005 
     | 
    
         
            +
            embedi:	5055i:
         
     | 
| 
      
 1006 
     | 
    
         
            +
            managi:	4255i:	pdfpi:sqrt120i:	0913i:
         
     | 
| 
      
 1007 
     | 
    
         
            +
            liawki:countni:	0716i:definelog_pathi:"httpwwwlightlinkcomhesslinglii:classsyoui:scorecardabouttplphpi:
         
     | 
| 
      
 1008 
     | 
    
         
            +
            heavii:
         
     | 
| 
      
 1009 
     | 
    
         
            +
            :definecode_pathi:
         
     | 
| 
      
 1010 
     | 
    
         
            +
            hessli:colspan3bri:scorecardtplphpi:6675k5907k8216ki:bodytti;�i:abii:9hrefhttpwwwcskentacukprojectsofakrocdownloaddownloadi:608i:$llang_specialurllangnamelangtagi:1readselecteddataarraysdata_pathndatacsvtincli:
         
     | 
| 
      
 1011 
     | 
    
         
            +
            :valuewxloci:i12i:illustri:	1902i:classtimestampi:cleanlii:isfirsti	:	largi:7357k6938k8216ki:
         
     | 
| 
      
 1012 
     | 
    
         
            +
            riehli:sceneaddspheri:thoughti:	0713i:streami	:aboutprogrami:
         
     | 
| 
      
 1013 
     | 
    
         
            +
            debugi:httpwwwrexxlaorgi:ptdi:
         
     | 
| 
      
 1014 
     | 
    
         
            +
            ttendi:x86i:picalculusapi:302013i:hrefsphpsadtddsdddltdi:issetp4i;iJ:14042k8218k64832ki:
         
     | 
| 
      
 1015 
     | 
    
         
            +
            :	0710i:defineabout_programs_pathi;i(:lirexxi:nameemaili:http_get_varscalci:
         
     | 
| 
      
 1016 
     | 
    
         
            +
            19000i:
         
     | 
| 
      
 1017 
     | 
    
         
            +
            blendi:	6455i:emptyllang_specialurli:strlenhttp_get_varsp4i:
         
     | 
| 
      
 1018 
     | 
    
         
            +
            :awkasourceforgenetlii:	''){i:
         
     | 
| 
      
 1019 
     | 
    
         
            +
            pbooki:
         
     | 
| 
      
 1020 
     | 
    
         
            +
            lipiki:	0701i:definedata_pathi:	awkai::)i:'colspan2yournbspemailnbspaddresstdi;~i:
         
     | 
| 
      
 1021 
     | 
    
         
            +
            codepi:302048i:	lossi:llang_tagi:issetp3i:	0376i:	turni:
         
     | 
| 
      
 1022 
     | 
    
         
            +
            :	0221i:	fasti:
         
     | 
| 
      
 1023 
     | 
    
         
            +
            nofiti:tasksbri:
         
     | 
| 
      
 1024 
     | 
    
         
            +
            linepi:pageidi
         
     | 
| 
      
 1025 
     | 
    
         
            +
            :reflecti:251709i:llang_fuli:http_get_varsp3i:
         
     | 
| 
      
 1026 
     | 
    
         
            +
            smalli
         
     | 
| 
      
 1027 
     | 
    
         
            +
            blanki:developi
         
     | 
| 
      
 1028 
     | 
    
         
            +
            sheeri:	4223i:	pgiji:rayorigindirecti:liguili:
         
     | 
| 
       359 
1029 
     | 
    
         
             
            :
         
     | 
| 
       360 
     | 
    
         
            -
             
     | 
| 
       361 
     | 
    
         
            -
             
     | 
| 
       362 
     | 
    
         
            -
             
     | 
| 
       363 
     | 
    
         
            -
             
     | 
| 
       364 
     | 
    
         
            -
             
     | 
| 
       365 
     | 
    
         
            -
             
     | 
| 
       366 
     | 
    
         
            -
             
     | 
| 
       367 
     | 
    
         
            -
             
     | 
| 
       368 
     | 
    
         
            -
             
     | 
| 
       369 
     | 
    
         
            -
             
     | 
| 
       370 
     | 
    
         
            -
             
     | 
| 
       371 
     | 
    
         
            -
             
     | 
| 
       372 
     | 
    
         
            -
             
     | 
| 
       373 
     | 
    
         
            -
             
     | 
| 
       374 
     | 
    
         
            -
             
     | 
| 
       375 
     | 
    
         
            -
             
     | 
| 
       376 
     | 
    
         
            -
            i 
     | 
| 
       377 
     | 
    
         
            -
             
     | 
| 
       378 
     | 
    
         
            -
             
     | 
| 
       379 
     | 
    
         
            -
            builti:.)i
         
     | 
| 
       380 
     | 
    
         
            -
            :showseqi:floodfillboardi	:returnporti;%i:
         
     | 
| 
       381 
     | 
    
         
            -
            scenei	:x0x0valxvaldxi:schedulethreadi:id_i;(i:='i:
         
     | 
| 
       382 
     | 
    
         
            -
            ;,i:nparange1i:	onexi:'.'i:check_treemake_tree0i:carsoni;1i:takfpxi:":i:
         
     | 
| 
       383 
     | 
    
         
            -
            :ackermannpythonvi;6i:heighti	:flxayai	:selfray_sphereraii:
         
     | 
| 
       384 
     | 
    
         
            -
            ):]).i:gen_randommaxi:	."""i;;i:	'=='i:
         
     | 
| 
       385 
     | 
    
         
            -
            mallni;bi	;ci;di;ei:prratad0251i:wreversi;gi:xrange2i:vectori:complementc1i	;kiN;li:razselfgadselft1y1i;ni:mgroupi;pi:create_coroutinen1nexti:range10i;si:buf_size50000i:
         
     | 
| 
       386 
     | 
    
         
            -
            :xdxydyxyydxxdyyii:sequenci:substitemi:mmultm1m2i:
         
     | 
| 
       387 
     | 
    
         
            -
            :numpylogical_andmaski:lreversi:170539i:()]i:nsieve1i:sqrpwrxk2i:selfdirecti:priorityqueueemptii:)pressurizedbottlepressurizedbottlesti;�i:
         
     | 
| 
       388 
     | 
    
         
            -
            tsendi:uk1ukftkukftkdtuk1dt2i;�i:nestedlooppythonvi:accessreleasi:	("".i;�i:
         
     | 
| 
       389 
     | 
    
         
            -
            ofteni;�i:	dxdxi	;�i:
         
     | 
| 
      
 1030 
     | 
    
         
            +
            lijoii:hrefsubi:
         
     | 
| 
      
 1031 
     | 
    
         
            +
            :ddblockquotepluai:6688k5761k8216ki:glasgowi:thisscaledby10sqrti:
         
     | 
| 
      
 1032 
     | 
    
         
            +
            }}}}}i:
         
     | 
| 
      
 1033 
     | 
    
         
            +
            lisuni;�i:
         
     | 
| 
      
 1034 
     | 
    
         
            +
            fori0i	:	2110i:lichrii:novembi:definepiece_si:
         
     | 
| 
      
 1035 
     | 
    
         
            +
            10526i:overali:	0682i:
         
     | 
| 
      
 1036 
     | 
    
         
            +
            puzzli:302045i:ttest_nami
         
     | 
| 
      
 1037 
     | 
    
         
            +
            :	7777i:issetlangsai:valuecalculi;Si:4199k3335k8216ki:fannkuchphpi;Ei:tcli;�i:100ttpi:definepieci:septembi:163350i:
         
     | 
| 
      
 1038 
     | 
    
         
            +
            10151i:	0679i:lijavascripti:subscripti	:foreachi
         
     | 
| 
      
 1039 
     | 
    
         
            +
            :	2685i:
         
     | 
| 
      
 1040 
     | 
    
         
            +
            :10922k4778k11964ki:
         
     | 
| 
      
 1041 
     | 
    
         
            +
            listai:fopenusrdictwordi:tdinputi:number_formats0i:
         
     | 
| 
      
 1042 
     | 
    
         
            +
            105kbi:"shootoutpermgeneratormakenexti:gili:
         
     | 
| 
      
 1043 
     | 
    
         
            +
            linewi:psubscribi:6423k5465k8216ki:printni
         
     | 
| 
      
 1044 
     | 
    
         
            +
            :4216k3303k8216ki:defineboard_si:
         
     | 
| 
      
 1045 
     | 
    
         
            +
            plusbi;Ki:languagesplii:	0676i:gnuplotlii:Phrefmailtoshootoutlistlistsaliothdebianorgshootoutlistlistsaliothdebianorgai:	2681i:
         
     | 
| 
      
 1046 
     | 
    
         
            +
            ;Mi:
         
     | 
| 
      
 1047 
     | 
    
         
            +
            exacti:vectorxyzi;�i:matchingai;�i	:	0673i:$emfannkuchocaml2abouttplphpemlii:logarithmi:64ki:shootoutlisti	:
         
     | 
| 
      
 1048 
     | 
    
         
            +
            catchi	:
         
     | 
| 
       390 
1049 
     | 
    
         
             
            :
         
     | 
| 
       391 
     | 
    
         
            -
             
     | 
| 
       392 
     | 
    
         
            -
             
     | 
| 
       393 
     | 
    
         
            -
             
     | 
| 
       394 
     | 
    
         
            -
             
     | 
| 
       395 
     | 
    
         
            -
             
     | 
| 
       396 
     | 
    
         
            -
             
     | 
| 
       397 
     | 
    
         
            -
             
     | 
| 
       398 
     | 
    
         
            -
             
     | 
| 
       399 
     | 
    
         
            -
             
     | 
| 
       400 
     | 
    
         
            -
             
     | 
| 
       401 
     | 
    
         
            -
             
     | 
| 
       402 
     | 
    
         
            -
             
     | 
| 
       403 
     | 
    
         
            -
             
     | 
| 
       404 
     | 
    
         
            -
             
     | 
| 
       405 
     | 
    
         
            -
             
     | 
| 
       406 
     | 
    
         
            -
             
     | 
| 
       407 
     | 
    
         
            -
             
     | 
| 
       408 
     | 
    
         
            -
             
     | 
| 
       409 
     | 
    
         
            -
             
     | 
| 
       410 
     | 
    
         
            -
            .))).i;�i;�i:squareobjecti:colorsid2i:xrangemsg_counti:solveintsysargv1i;�i;�i;�iM:waitobjectobjecti;�i;�i:
         
     | 
| 
       411 
     | 
    
         
            -
            procei;�i;�i:recommendi;�i:joinstri1i;�i
         
     | 
| 
       412 
     | 
    
         
            -
            selfbi;�i;�i:selfcounti:t0t0dti:returnsocki;�i;�i:findfreecellboardi;�i:everyoni:*x2pwrx23pwrx67pwrx1151x5pwrx36pwrx732i:loiseli:resubfi:
         
     | 
| 
       413 
     | 
    
         
            -
            eighti:reshapi:%pressurizedbottlestateinitial_sti:check_treelefti:''.i;�i;�i;�i:prai:
         
     | 
| 
       414 
     | 
    
         
            -
            substi:
         
     | 
| 
       415 
     | 
    
         
            -
            magici;�i:clientni:niemeyi:_abi:	joeli:queuewaitobjecti:.))i:
         
     | 
| 
       416 
     | 
    
         
            -
            minori:expensi:takfptakfpxi:	srcni:
         
     | 
| 
       417 
     | 
    
         
            -
            :conditi
         
     | 
| 
       418 
     | 
    
         
            -
            :maii:finditi:'.i:create_coroutine500i;
         
     | 
| 
       419 
     | 
    
         
            -
            i;i:xdxydyxyxdyydxi:stdinreadi;i:arrayij1rowi;i:bottlestateobjecti;i
         
     | 
| 
       420 
     | 
    
         
            -
            :stringlowi:"+"i:__add__abi:
         
     | 
| 
       421 
     | 
    
         
            -
            pwrxki:complianti:unitiseselfi:
         
     | 
| 
       422 
     | 
    
         
            -
            '>;':i:
         
     | 
| 
       423 
     | 
    
         
            -
            equati:accessacquiri:
         
     | 
| 
       424 
     | 
    
         
            -
            selfai;Bi
         
     | 
| 
       425 
     | 
    
         
            -
            ;Ci:harmoni:socklisten2i;Fi;Gi;Hi-:sebastieni:	malli
         
     | 
| 
       426 
     | 
    
         
            -
            ;Li@:zipbdhkmnrsvwycgti:pressurizedsi:
         
     | 
| 
       427 
     | 
    
         
            -
            seveni:
         
     | 
| 
       428 
     | 
    
         
            -
            sizesi
         
     | 
| 
       429 
     | 
    
         
            -
            ;Oi:check_treeitemi:):]i;Pi
         
     | 
| 
       430 
     | 
    
         
            -
            ackx1i:	zetai:)=i:
         
     | 
| 
       431 
     | 
    
         
            -
            reduci:masktostri:bucketvi:bitsj3i;Xi
         
     | 
| 
       432 
     | 
    
         
            -
            :	xa00i:ray_sphereselfi:])+i:friendi:
         
     | 
| 
       433 
     | 
    
         
            -
            nativi:
         
     | 
| 
       434 
     | 
    
         
            -
            rddddi;�i	:cn1i;�i;�i:doitintsysargv1i;�i:inti:differenti:
         
     | 
| 
       435 
     | 
    
         
            -
            doitni:xrealximagabi;�i
         
     | 
| 
       436 
     | 
    
         
            -
            :arypythonvi;�i:normaldotlighti:improvi:countwordi;�i:xxi;�i;�i:dotselfi:otherpriori:
         
     | 
| 
       437 
     | 
    
         
            -
            )[::-i:differentii;�i	:
         
     | 
| 
       438 
     | 
    
         
            -
            line0i:enumeratebodii:consumerni:emptysti:	intmi;�i	:highestcandidatesappendni:main_thread_locki:
         
     | 
| 
       439 
     | 
    
         
            -
            bakeri
         
     | 
| 
       440 
     | 
    
         
            -
            :()+i:bodies1i;�i:	chari:threadobjecti:id2i:	reali:
         
     | 
| 
       441 
     | 
    
         
            -
            validi:solutionsappendni;�i;�i
         
     | 
| 
      
 1050 
     | 
    
         
            +
            wrotei
         
     | 
| 
      
 1051 
     | 
    
         
            +
            ;�i$:4232k3320k8216ki: neighbourcontiguousemptyceli:
         
     | 
| 
      
 1052 
     | 
    
         
            +
            :printftak302010i:defineleveli:regulari:	0667i:aboutfilenami:speedupslowdownlii:pstrongonlii:	2676i:hrefspliti:http_get_varslang2i:	gccpi:
         
     | 
| 
      
 1053 
     | 
    
         
            +
            83344i:sizeoflangi:3524578i:
         
     | 
| 
      
 1054 
     | 
    
         
            +
            d3000i:classfannkuchtoi:
         
     | 
| 
      
 1055 
     | 
    
         
            +
            arkeli:lookupi:	1871i:)->i:neighbourisemptii:5243k4702k8216ki:Ghrefhttpwwwjwdtcompaysangforthhtmlhttpwwwjwdtcompaysangforthhtmlapi:ddpprogrami;�i:defineepsiloni;�i:
         
     | 
| 
      
 1056 
     | 
    
         
            +
            handii:
         
     | 
| 
      
 1057 
     | 
    
         
            +
            lihavi:,namepostnbsppostnbspanbspmessageah4tdtri:
         
     | 
| 
      
 1058 
     | 
    
         
            +
            ptimei:lidiederiki:];iX:
         
     | 
| 
      
 1059 
     | 
    
         
            +
            poo2ci	:array_valueslangi:	7645i:langsklang_htmli:number_formatd1i;(i�:updateslii;iR:calleri:4200k3336k8216ki:
         
     | 
| 
      
 1060 
     | 
    
         
            +
            handli:thisisemptii;�i:
         
     | 
| 
      
 1061 
     | 
    
         
            +
            rogeri:	2671i:+hrefhttpwwwoberonethzchwirthpioprogrami:302041i:sizeoftesti	:owni:
         
     | 
| 
      
 1062 
     | 
    
         
            +
            diffdi:issetlangsxi	:6355k5398k8216ki:2369864i:
         
     | 
| 
      
 1063 
     | 
    
         
            +
            :d99i:18nucleotidi:limarkui:4217k3304k8216ki:1lii:
         
     | 
| 
      
 1064 
     | 
    
         
            +
            :\hrefiofilephptestselectedtestamplangselectedlangampsortsortampfileoutputampextpgmoutputi;$i:	veini:	0657i:judgementi:	fairi:programs8230i:ggtattttaatttatagti:dataoutputadti:http_get_varslangi:
         
     | 
| 
      
 1065 
     | 
    
         
            +
            93616i:implementationsddi;}i
         
     | 
| 
      
 1066 
     | 
    
         
            +
            :
         
     | 
| 
      
 1067 
     | 
    
         
            +
            outlii;�i:	1823i:
         
     | 
| 
      
 1068 
     | 
    
         
            +
            20kbai:schooli:26183k7i:n32i;�i:italicsibi:
         
     | 
| 
       442 
1069 
     | 
    
         
             
            :
         
     | 
| 
       443 
     | 
    
         
            -
             
     | 
| 
       444 
     | 
    
         
            -
             
     | 
| 
       445 
     | 
    
         
            -
             
     | 
| 
       446 
     | 
    
         
            -
             
     | 
| 
       447 
     | 
    
         
            -
             
     | 
| 
       448 
     | 
    
         
            -
             
     | 
| 
       449 
     | 
    
         
            -
             
     | 
| 
       450 
     | 
    
         
            -
             
     | 
| 
       451 
     | 
    
         
            -
             
     | 
| 
       452 
     | 
    
         
            -
             
     | 
| 
       453 
     | 
    
         
            -
             
     | 
| 
       454 
     | 
    
         
            -
             
     | 
| 
       455 
     | 
    
         
            -
             
     | 
| 
       456 
     | 
    
         
            -
             
     | 
| 
       457 
     | 
    
         
            -
             
     | 
| 
       458 
     | 
    
         
            -
             
     | 
| 
       459 
     | 
    
         
            -
             
     | 
| 
       460 
     | 
    
         
            -
             
     | 
| 
       461 
     | 
    
         
            -
             
     | 
| 
       462 
     | 
    
         
            -
             
     | 
| 
       463 
     | 
    
         
            -
             
     | 
| 
       464 
     | 
    
         
            -
             
     | 
| 
       465 
     | 
    
         
            -
             
     | 
| 
       466 
     | 
    
         
            -
             
     | 
| 
       467 
     | 
    
         
            -
            : 
     | 
| 
       468 
     | 
    
         
            -
             
     | 
| 
       469 
     | 
    
         
            -
             
     | 
| 
       470 
     | 
    
         
            -
            :
         
     | 
| 
       471 
     | 
    
         
            -
             
     | 
| 
       472 
     | 
    
         
            -
             
     | 
| 
       473 
     | 
    
         
            -
             
     | 
| 
       474 
     | 
    
         
            -
             
     | 
| 
       475 
     | 
    
         
            -
             
     | 
| 
       476 
     | 
    
         
            -
            i 
     | 
| 
       477 
     | 
    
         
            -
             
     | 
| 
       478 
     | 
    
         
            -
             
     | 
| 
       479 
     | 
    
         
            -
             
     | 
| 
       480 
     | 
    
         
            -
             
     | 
| 
       481 
     | 
    
         
            -
             
     | 
| 
       482 
     | 
    
         
            -
             
     | 
| 
       483 
     | 
    
         
            -
             
     | 
| 
       484 
     | 
    
         
            -
             
     | 
| 
       485 
     | 
    
         
            -
             
     | 
| 
       486 
     | 
    
         
            -
             
     | 
| 
       487 
     | 
    
         
            -
             
     | 
| 
      
 1070 
     | 
    
         
            +
            bestai:freadffi;Ui:
         
     | 
| 
      
 1071 
     | 
    
         
            +
            cmucli:alexeii:
         
     | 
| 
      
 1072 
     | 
    
         
            +
            _getni:	--){i:!namecomparestrongnbsplanguagi:	7607i:imagepngimi
         
     | 
| 
      
 1073 
     | 
    
         
            +
            :hrefaboutthi:filesizefilenami:2nucleotidi:consequi:4185k3321k8216ki:
         
     | 
| 
      
 1074 
     | 
    
         
            +
            smarti:boardcellii:
         
     | 
| 
      
 1075 
     | 
    
         
            +
            lifixi:mailingnbsplistah4tdtri;�i:dopi:issetti;�i:
         
     | 
| 
      
 1076 
     | 
    
         
            +
            :nestedloopi:
         
     | 
| 
      
 1077 
     | 
    
         
            +
            plooki:issettestsxi:6224k5455k8216ki:flagsoffseti:2375028i:]){i :colspan2dli:	7590i:sortnamekbi:strongfunstrongi:htmlfragmentfilenami:	rafti:4201k3289k8216ki:
         
     | 
| 
      
 1078 
     | 
    
         
            +
            503lii:unmarki	:	4167i:%hrefhttpgccgnuorghttpgccgnuorgapi:
         
     | 
| 
      
 1079 
     | 
    
         
            +
            franzi:
         
     | 
| 
      
 1080 
     | 
    
         
            +
            n200pi;i:bytecompili:	0648i:nsieveruby2rubii:"$i:makefili:
         
     | 
| 
      
 1081 
     | 
    
         
            +
            2004pi:)];i	:
         
     | 
| 
      
 1082 
     | 
    
         
            +
            visiti:strongstdinstrongpi:eregazxi:	2656i:
         
     | 
| 
      
 1083 
     | 
    
         
            +
            jeweli:
         
     | 
| 
      
 1084 
     | 
    
         
            +
            imperi:	0645i:ptoi:
         
     | 
| 
      
 1085 
     | 
    
         
            +
            wmem6i:listscoreratioi:titlecri:lijuhoi:
         
     | 
| 
      
 1086 
     | 
    
         
            +
            93792i:	unixi:ddsourcecodi:	++){i):	7570i:kbtop2i:rankingah2i:classscori:	8212i:programlii	;Ii:4218k3305k8216ki:rettigi:>*i:	isidi:
         
     | 
| 
      
 1087 
     | 
    
         
            +
            nsievi:kbtop13i:
         
     | 
| 
      
 1088 
     | 
    
         
            +
            size5i:302025i:hrefchecki:10927k4783k11964ki:wsec80i:
         
     | 
| 
      
 1089 
     | 
    
         
            +
            pformi:
         
     | 
| 
      
 1090 
     | 
    
         
            +
            512mbi:7916k7633k8600ki:-hrefhttpwwwpovrayorgdownloadbenchmarkphpi:idlangi:	0639i:ddpaddi:ertllii:
         
     | 
| 
      
 1091 
     | 
    
         
            +
            ."/";i:?actionhttplistsaliothdebianorgmailmansubscribeshootoutlisti:topi	:	excli	:	2647i:namedatainputhowi:array_fill0i:	6659i:classtestdli:	7472i:
         
     | 
| 
      
 1092 
     | 
    
         
            +
            :ratiospi:valueshowi	:
         
     | 
| 
      
 1093 
     | 
    
         
            +
            antoni:."\i:methodposti
         
     | 
| 
      
 1094 
     | 
    
         
            +
            :]hrefhttpshootoutaliothdebianorggp4fbasicphphttpshootoutaliothdebianorgdebianpascalphpah3i:
         
     | 
| 
      
 1095 
     | 
    
         
            +
            wsec6i:stronglbstrongi:typesubmiti:scriptslii:	1803i:Khrefhttpwwwapljhueduhalltextpaperslispbenchmarkingandfannkuchpsperformi:definewi:	])*$i:
         
     | 
| 
      
 1096 
     | 
    
         
            +
            gamepi:
         
     | 
| 
      
 1097 
     | 
    
         
            +
            :	1799i:pancakespi:defineni:((!i:
         
     | 
| 
      
 1098 
     | 
    
         
            +
            rulepi:[$i�:liconfiguri:."[i;�i
         
     | 
| 
      
 1099 
     | 
    
         
            +
            ;ri&:	1792i:pancaki;di:][$i:
         
     | 
| 
      
 1100 
     | 
    
         
            +
            literi;si:valigntopi:
         
     | 
| 
      
 1101 
     | 
    
         
            +
            100kbi:repeati
         
     | 
| 
      
 1102 
     | 
    
         
            +
            :	0610i:peminteresti:
         
     | 
| 
      
 1103 
     | 
    
         
            +
            alerni:."(?:\((\i:
         
     | 
| 
      
 1104 
     | 
    
         
            +
            \(])"i:nsup3supdivide2i:bottomi
         
     | 
| 
      
 1105 
     | 
    
         
            +
            pleavi:strongbiti:strongplaystrongapi:;%i:sortnami:
         
     | 
| 
      
 1106 
     | 
    
         
            +
            peopli:printfopti;�i:ierusalimschii:	1788i:germani:
         
     | 
| 
      
 1107 
     | 
    
         
            +
            phavei:	multi:."(?:^|[^\i;>i:6198k5310k8216ki:committerspi:flagsmi:302029i:hreffaqphpplayiti:),$i:	h135i:
         
     | 
| 
      
 1108 
     | 
    
         
            +
            charli:2046967i:
         
     | 
| 
      
 1109 
     | 
    
         
            +
            watchi:
         
     | 
| 
      
 1110 
     | 
    
         
            +
            additi:">%i5:cputopi	:	elegi	:8881k8880k10940ki:emratioemi:linkselectedtesti:	carei:oo2clii:	1781i:infinityppifannkuchii:hii
         
     | 
| 
      
 1111 
     | 
    
         
            +
            :Ehrefhttpwww128ibmcomdeveloperworksjavalibraryjjavaoptstrongoptimi:qualitii:6838k6174k8216ki:5hrefhttpg95sourceforgenethttpg95sourceforgenetapi:sj1i:idbodycoli:
         
     | 
| 
      
 1112 
     | 
    
         
            +
            looppi:
         
     | 
| 
      
 1113 
     | 
    
         
            +
            nlogni:solversstrongi:speedstrongi:	4071i:458i:toptabscurri:]][i:	0599i:ddpobviousi:
         
     | 
| 
      
 1114 
     | 
    
         
            +
            toolii:raynewi:
         
     | 
| 
      
 1115 
     | 
    
         
            +
            begini
         
     | 
| 
      
 1116 
     | 
    
         
            +
            :6071k5302k8216ki:resultsstrongi:ttwhiletti:	5186i:rankingspanpi:	'?';i:
         
     | 
| 
      
 1117 
     | 
    
         
            +
            kbtopi	:
         
     | 
| 
       488 
1118 
     | 
    
         
             
            :
         
     | 
| 
       489 
     | 
    
         
            -
             
     | 
| 
       490 
     | 
    
         
            -
             
     | 
| 
       491 
     | 
    
         
            -
             
     | 
| 
       492 
     | 
    
         
            -
             
     | 
| 
       493 
     | 
    
         
            -
             
     | 
| 
       494 
     | 
    
         
            -
             
     | 
| 
       495 
     | 
    
         
            -
             
     | 
| 
       496 
     | 
    
         
            -
             
     | 
| 
       497 
     | 
    
         
            -
             
     | 
| 
       498 
     | 
    
         
            -
             
     | 
| 
       499 
     | 
    
         
            -
             
     | 
| 
       500 
     | 
    
         
            -
             
     | 
| 
       501 
     | 
    
         
            -
             
     | 
| 
       502 
     | 
    
         
            -
             
     | 
| 
       503 
     | 
    
         
            -
             
     | 
| 
       504 
     | 
    
         
            -
             
     | 
| 
       505 
     | 
    
         
            -
             
     | 
| 
       506 
     | 
    
         
            -
             
     | 
| 
       507 
     | 
    
         
            -
             
     | 
| 
       508 
     | 
    
         
            -
             
     | 
| 
       509 
     | 
    
         
            -
             
     | 
| 
       510 
     | 
    
         
            -
             
     | 
| 
       511 
     | 
    
         
            -
             
     | 
| 
       512 
     | 
    
         
            -
             
     | 
| 
       513 
     | 
    
         
            -
             
     | 
| 
       514 
     | 
    
         
            -
             
     | 
| 
       515 
     | 
    
         
            -
             
     | 
| 
       516 
     | 
    
         
            -
             
     | 
| 
       517 
     | 
    
         
            -
             
     | 
| 
       518 
     | 
    
         
            -
             
     | 
| 
       519 
     | 
    
         
            -
             
     | 
| 
      
 1119 
     | 
    
         
            +
            thinki
         
     | 
| 
      
 1120 
     | 
    
         
            +
            22ghzi:
         
     | 
| 
      
 1121 
     | 
    
         
            +
            phomeis:	2627i:strongcorrecti:"strongforcomprehensionsstrongi:124464i:classsmallercri:;';i
         
     | 
| 
      
 1122 
     | 
    
         
            +
            prelii:
         
     | 
| 
      
 1123 
     | 
    
         
            +
            :hrefaltprogi:,$i[:	iolii:squareai;�i:6126k5175k8216ki:newsgroupi:?>i�:ttint8_unsignedttpi:	7602i:funstrongai:'&i:legendi:	7403i:	nothi	:measurementemi:actionbenchmarkphpi	;�i:scandariatoi:	headi$:	1770i:flipslii:
         
     | 
| 
      
 1124 
     | 
    
         
            +
            notici:inventi:linelengthi:	4065i:
         
     | 
| 
      
 1125 
     | 
    
         
            +
            adheri:2hrefhttpmathworldwolframcommagicsquarehtmlmagi:	2622i:designiteri:<?i�:jumpthroughhoopi:261i:nameplaystrongnbspfori:')||($i	:	h314i:
         
     | 
| 
      
 1126 
     | 
    
         
            +
            alwaii	:directlystrongai:methodgeti
         
     | 
| 
      
 1127 
     | 
    
         
            +
            :	6586i:limarki:
         
     | 
| 
      
 1128 
     | 
    
         
            +
            ddpdoi:
         
     | 
| 
      
 1129 
     | 
    
         
            +
            :strongnumeri:	5258i:keywordi:	0590i:programemi;<i:
         
     | 
| 
      
 1130 
     | 
    
         
            +
            lialli:bestfirsti:6116k5230k8216ki:correctadti:
         
     | 
| 
      
 1131 
     | 
    
         
            +
            usabli:330035i:testsphrasi:"';i:chart_v3xi:	7386i:
         
     | 
| 
      
 1132 
     | 
    
         
            +
            39243i:
         
     | 
| 
      
 1133 
     | 
    
         
            +
            v146pi:
         
     | 
| 
      
 1134 
     | 
    
         
            +
            dylani	:4096000i:costbenefiti:
         
     | 
| 
      
 1135 
     | 
    
         
            +
            28996i:langs_phrasi
         
     | 
| 
      
 1136 
     | 
    
         
            +
            :>~&i;>i:chart_v2xi:5812k5811k10940ki:50ni:issetinclardata_testi:	1756i:oncemori:
         
     | 
| 
      
 1137 
     | 
    
         
            +
            64000i:blockquotepini:6116k5838k8216ki:*selectedtestrown_langrown_idrown_htmli:pimplementi:	6906i:beni:
         
     | 
| 
      
 1138 
     | 
    
         
            +
            pmaybi:	wonti:
         
     | 
| 
      
 1139 
     | 
    
         
            +
            truepi:463936i:	h214i	:	7366i:;</if:10ni:usortdatai:
         
     | 
| 
      
 1140 
     | 
    
         
            +
            houlti:correctlii:benchmarkstrongadti:	4047i:printftdai
         
     | 
| 
      
 1141 
     | 
    
         
            +
            13318i:
         
     | 
| 
      
 1142 
     | 
    
         
            +
            pkroci:	0584i:temporarilii:peri:objinstmethcali:
         
     | 
| 
      
 1143 
     | 
    
         
            +
            12000i:dx2i:
         
     | 
| 
      
 1144 
     | 
    
         
            +
            pallpi:	2612i:programsai:variablespi:	7341i:chart_v1xi:
         
     | 
| 
      
 1145 
     | 
    
         
            +
            brucei:asai:
         
     | 
| 
      
 1146 
     | 
    
         
            +
            ultimi:
         
     | 
| 
      
 1147 
     | 
    
         
            +
            :nametemphowi:itemchecklonglivedtrei;i:
         
     | 
| 
      
 1148 
     | 
    
         
            +
            nonooi:dx1i	:
         
     | 
| 
      
 1149 
     | 
    
         
            +
            lipeti:memi:%ttprintboardcellsandneighbourstti:	("%.i:hrefappi:	4037i:
         
     | 
| 
      
 1150 
     | 
    
         
            +
            doubti:misleadinglii:	])</i:dz1i	:';i�:	2607i:	weaki:nsievebitspi:302040i:bodyfetchhometplphpi:
         
     | 
| 
      
 1151 
     | 
    
         
            +
            scalai	:
         
     | 
| 
      
 1152 
     | 
    
         
            +
            etcipi:
         
     | 
| 
      
 1153 
     | 
    
         
            +
            hhmemi:9908k3764k10940ki:>).i:programmersai:comparegzi:	1742i:adai:
         
     | 
| 
      
 1154 
     | 
    
         
            +
            8418pi:3hrefbenchmarkphptestmeteoramplangscalaampid0thi;�i:	ietci:5261k4729k8216ki:foreachrown_memorii:level1i:*hrefhttppaulgrahamcompyparhtmlessayapi:	0575i:particularlii:	forii:completeni:118i:projectapi:accepti:6030k5145k8216ki:viewabli:ttboolttpi:
         
     | 
| 
      
 1155 
     | 
    
         
            +
            basici:comparememoryusi:	1738i:
         
     | 
| 
      
 1156 
     | 
    
         
            +
            litaki	:
         
     | 
| 
      
 1157 
     | 
    
         
            +
            lijami:ttprintsolutionstti;%	i:	4028i:colspancolsmemorii:
         
     | 
| 
      
 1158 
     | 
    
         
            +
            ppauli:
         
     | 
| 
      
 1159 
     | 
    
         
            +
            :	2602i:wedi:+array_walkbadpermissionsprintprettytagi:standini:
         
     | 
| 
      
 1160 
     | 
    
         
            +
            35834i;i:bodysetfeaturi:
         
     | 
| 
      
 1161 
     | 
    
         
            +
            hhseci:
         
     | 
| 
      
 1162 
     | 
    
         
            +
            thispi:?srcchartmemphptestselectedtestampp1p1ampp2p2ampp3p3ampp4p4i:
         
     | 
| 
      
 1163 
     | 
    
         
            +
            pdfapi:	0572i;i*:emclosedemi:lichangi:hrefhttpluajitorgthi:
         
     | 
| 
      
 1164 
     | 
    
         
            +
            skilli:permissionstrongabri:ttfalsetti:573344i;�i:featuri
         
     | 
| 
      
 1165 
     | 
    
         
            +
            :imagefilledrectangleimi:9909k9908k10940ki;i:;(i
         
     | 
| 
      
 1166 
     | 
    
         
            +
            :=hrefhttpscalaepflchdocufilesprogramminginscalapdfprogrami:	dzdzi:comparefullcputimi:
         
     | 
| 
      
 1167 
     | 
    
         
            +
            shelli;Ci:
         
     | 
| 
      
 1168 
     | 
    
         
            +
            :
         
     | 
| 
      
 1169 
     | 
    
         
            +
            0924pi:
         
     | 
| 
      
 1170 
     | 
    
         
            +
            pdiffi:
         
     | 
| 
      
 1171 
     | 
    
         
            +
            timeii:	4020i:namememchartnbsptestnami:remove_keyvi:ddponci:	0569i:buildlangi;i:	pluai:	2597i:vanillai:/><i:
         
     | 
| 
      
 1172 
     | 
    
         
            +
            psbcli:
         
     | 
| 
      
 1173 
     | 
    
         
            +
            1553pi:xprogram_excludi:	1726i:caughti;:i:dowdesweli:	pre0i:iindependi:
         
     | 
| 
      
 1174 
     | 
    
         
            +
            entrii:gabrieli:namewhenremovehowi;�i:
         
     | 
| 
      
 1175 
     | 
    
         
            +
            totali:
         
     | 
| 
      
 1176 
     | 
    
         
            +
            decidi	:4885k4129k8216ki:
         
     | 
| 
      
 1177 
     | 
    
         
            +
            :benchmarklii	:>=$i:
         
     | 
| 
      
 1178 
     | 
    
         
            +
            mimici:
         
     | 
| 
      
 1179 
     | 
    
         
            +
            mighti:	4014i:makerandomfastathrei:classr02ftdi:hardwari:
         
     | 
| 
      
 1180 
     | 
    
         
            +
            val10i:dddldtai:itemcheckstretchtrei:
         
     | 
| 
      
 1181 
     | 
    
         
            +
            severi
         
     | 
| 
      
 1182 
     | 
    
         
            +
            :	2592i:nameimplementphowi:"><i�:printfpi:khrefhttpmathworldwolframcomprimecountingfunctionhtmlhttpmathworldwolframcomprimecountingfunctionhtmlapi:
         
     | 
| 
      
 1183 
     | 
    
         
            +
            :
         
     | 
| 
      
 1184 
     | 
    
         
            +
            :
         
     | 
| 
      
 1185 
     | 
    
         
            +
            val20i;�i:programsadti:
         
     | 
| 
      
 1186 
     | 
    
         
            +
            whitei7:	0557i:limaybi:evoluti:
         
     | 
| 
      
 1187 
     | 
    
         
            +
            36000i:bodysetaboutnami;A	i:7863k7862k10940ki:	=?';i:
         
     | 
| 
      
 1188 
     | 
    
         
            +
            pmosti:hartrumpfi:collecti:=ppre00001222012661126155865558633348893448934747977799pri:simplici:	footi:4758k3989k8216ki:makerepeatfastaoni:foreachrown_fullcpui:coli	:	val2i:nameremovenbspremovi:
         
     | 
| 
      
 1189 
     | 
    
         
            +
            lo500i:lisveni;fi#:rejecti
         
     | 
| 
      
 1190 
     | 
    
         
            +
            :puzzlestrongai:footeri	:
         
     | 
| 
      
 1191 
     | 
    
         
            +
            empiri:	4009i:
         
     | 
| 
      
 1192 
     | 
    
         
            +
            chanci:ierusalimschyapi:	2588i:nameimplementnbsphowi:&#iM:uasortbigi:formsemapi:	5166i:
         
     | 
| 
      
 1193 
     | 
    
         
            +
            hi500i:smalltalki:selecti;:Fhrefhttpwww128ibmcomdeveloperworksjavalibraryjjavaoptstrongmeteori:
         
     | 
| 
      
 1194 
     | 
    
         
            +
            30116i:append_keyvi:dddlddi:bottomuptree0i:	0554i:lipossi:robertoi:
         
     | 
| 
      
 1195 
     | 
    
         
            +
            =<?=$i�:biggeri:<hrefhttpwwwamsorgjournalgetitempiis0025571803015011primi:
         
     | 
| 
      
 1196 
     | 
    
         
            +
            askapi:	7167i:	graii:namesnbspthi:bodyjupiti:issetlangsddata_langi:20071003pi:exceptionslii:312i:	senti:
         
     | 
| 
      
 1197 
     | 
    
         
            +
            rigopi:freq_name_compari:empendingemi:4185k3290k8216ki:
         
     | 
| 
      
 1198 
     | 
    
         
            +
            armini:uasortmapi:ddpstrongupdi:longlivedtrei:	0550i;ki:maxtimi:unsetl2i:5860k4916k8216ki:nicestrongi:hrefbigi;N	i:emsievi:booleani:2375029i:0hrefhttpuserituusekostispaperserlang03pdfali:5816k5816k10940ki:
         
     | 
| 
      
 1199 
     | 
    
         
            +
            bgraii:!testlinkseparatorabouttplphpi;�i:hi_exceptionlii:
         
     | 
| 
      
 1200 
     | 
    
         
            +
            coupli
         
     | 
| 
      
 1201 
     | 
    
         
            +
            ;^i:	1701i;�i	:;hrefiofilephptestselectedtestampfileoutputstrongoutputi:8009k7736k8728ki:
         
     | 
| 
      
 1202 
     | 
    
         
            +
            :ptherei	:pythonai:	06fni:append_keii:stretchtrei:
         
     | 
| 
      
 1203 
     | 
    
         
            +
            okadti:minibenchi:unsetl1i:	2578i:workempi:!array_walkbad6printprettytagi:pofi:
         
     | 
| 
      
 1204 
     | 
    
         
            +
            :i486linuxpi:
         
     | 
| 
      
 1205 
     | 
    
         
            +
            litrii:
         
     | 
| 
      
 1206 
     | 
    
         
            +
            :
         
     | 
| 
      
 1207 
     | 
    
         
            +
            35989i:hreffaqphpmemorythi:
         
     | 
| 
      
 1208 
     | 
    
         
            +
            :	grepi:patchleveli:sortnamesorti:	12mbi;�i:
         
     | 
| 
      
 1209 
     | 
    
         
            +
            statui:
         
     | 
| 
      
 1210 
     | 
    
         
            +
            racini:||i :	1694i:strongconteststrongi:
         
     | 
| 
      
 1211 
     | 
    
         
            +
            thnthi:ssei;�i	:	Java{�:lastnextthreadi;.(i
         
     | 
| 
      
 1212 
     | 
    
         
            +
            :hi_exceptioninti:rowmutantmaxrowi:
         
     | 
| 
      
 1213 
     | 
    
         
            +
            0x187i;=i;&i:xsizexi;i:"20x00000000000001d8l3false857i:)(.i:
         
     | 
| 
      
 1214 
     | 
    
         
            +
            iporti:startgettimi:m_cubbyholeputii:%systemoutprintlnstringformatprimi:blowupni:gridindi:evenregioni:&111130x00000000000001ccl2false837i:(;i
         
     | 
| 
      
 1215 
     | 
    
         
            +
            ;�i:boundray_sphereraii:
         
     | 
| 
      
 1216 
     | 
    
         
            +
            0x0a7i;/i:perm1ki:bufloci:)systemoutprintlnntoggle1activatevalui:
         
     | 
| 
      
 1217 
     | 
    
         
            +
            recuri:1513110i:htputintegertostringii:440x02li;�i	:pcolouri:gmpintegerinti:advancedoubli:myitemvi:
         
     | 
| 
      
 1218 
     | 
    
         
            +
            buffii:m_pieceslengthi:"40x000000000000104el1false715i;i:setinti:replacementsputwi;�i:treenodetreenodi;�i:systemexit0i:functiosni:pm_veci:	0x08i:knwritefrequencies1i;
         
     | 
| 
      
 1219 
     | 
    
         
            +
            i�:inetaservi:endgettimi:producercubbyholi:minmovi:
         
     | 
| 
      
 1220 
     | 
    
         
            +
            ;3-i;�i;�in:bigintegervalueofji:methcali;�i:messagethreadthreadi:boti	:lo_exceptioninti;Mi:mutanti:groupspheri:0x8423i:perm0ri:	yfaci:
         
     | 
| 
      
 1221 
     | 
    
         
            +
            :m_cursolnpushpiecepieceveci:"00x0000000000421042l1false529i:hashmapi:
         
     | 
| 
      
 1222 
     | 
    
         
            +
            :	0x07i:knucleotidesbuffertostri:multiplyatvnuatavi:inetaddressi;#,i;"i:m_counti:2500000i:trickii:	1112i;�i;�i:	aybii:javaioinputstreamreadi:getitemi;�i;�.i;i:listsjavavi;zi;
         
     | 
| 
      
 1223 
     | 
    
         
            +
            i�:superstart_sti:
         
     | 
| 
      
 1224 
     | 
    
         
            +
            :computerowinti:(systemoutprintlntoggle1activatevalui:
         
     | 
| 
      
 1225 
     | 
    
         
            +
            0x0c7i:hasbadislandsboardveci:"00x00000000000820c1l0false604i:olssoni:390x10li:bufreversi;vi;�i	:systemidentityhashcodethii;Mi:
         
     | 
| 
      
 1226 
     | 
    
         
            +
            greeti;�i:m_cubbyholi
         
     | 
| 
      
 1227 
     | 
    
         
            +
            :findfewestmovi:milleri;�i:"50x00000000000001c3l0false804i;mi:frequencyii;fi�;F!i
         
     | 
| 
      
 1228 
     | 
    
         
            +
            :rightlefti:	2fsni:	axbxi:javaiobufferedreadi:futureti;g-i;�"i:extractinti:nthtogglebooleani:
         
     | 
| 
      
 1229 
     | 
    
         
            +
            0x465i:&011130x00000000000000dcl2false835i:.;i;,i:allowedpiecevecipieceiorii:390x08li:bufwritelini;�i
         
     | 
| 
      
 1230 
     | 
    
         
            +
            :	atavi:echoclii;�i:args0matchesdi:m_availi
         
     | 
| 
      
 1231 
     | 
    
         
            +
            ;	&i:moveintvalui;�i:"00x00000000000018c4l2false749i;!i:frequencywi:updowni:dotveci:meisseri
         
     | 
| 
      
 1232 
     | 
    
         
            +
            :enqueueinti:bigintegervalueof2i;bi	:queueputhopsremaini;�)i:	phili:072700i:getmaskinti:j10i:addrayorigi:permkki:computerowii;�i:
         
     | 
| 
      
 1233 
     | 
    
         
            +
            0x427i:*0112231420x0000000000420842l1false529i;�i	:allowednpiecesipieci:390x04li:
         
     | 
| 
      
 1234 
     | 
    
         
            +
            lineii;�i	:
         
     | 
| 
      
 1235 
     | 
    
         
            +
            twopii:linestartswiththrei:
         
     | 
| 
      
 1236 
     | 
    
         
            +
            :multiplyatavinti;si:esservergetporti;
         
     | 
| 
      
 1237 
     | 
    
         
            +
            luziui
         
     | 
| 
      
 1238 
     | 
    
         
            +
            :successi;�i:&nextthreadsignaldonesendingmessagi:bigintegervalueof0i:togglebooleani:interruptedexceptionthii;ei;\i:s_firstoni:arraylist1010i;Ei:ilambdai;�i:jpermki;�i:bodiesii;#$i:0x1087i:iorienti:"50x0000000000083041l0false604i;�i	:390x02li:systeminreadlini;1i:creaturemeetingplaci:compose_r10i;fi:sanitii;n/i;�i;
         
     | 
| 
      
 1239 
     | 
    
         
            +
            i:characteriswhitespaceci:&022240x0000000000003904l2false748i;?i
         
     | 
| 
      
 1240 
     | 
    
         
            +
            :m_celli;�*i:depth0i:
         
     | 
| 
      
 1241 
     | 
    
         
            +
            18432i:inputstreamreadersystemini
         
     | 
| 
      
 1242 
     | 
    
         
            +
            ;di:movesaddiii;�i:padnumbermi;Ui:
         
     | 
| 
      
 1243 
     | 
    
         
            +
            0x0cbi;^i;ci:hashjavavi:getmaskipieci:byte82i:samecounti	:piece7i;�i;G)i
         
     | 
| 
      
 1244 
     | 
    
         
            +
            :
         
     | 
| 
      
 1245 
     | 
    
         
            +
            ;�/i:charbuffii;.	i;�%i:
         
     | 
| 
      
 1246 
     | 
    
         
            +
            shinei:m_pieci;�i:	2newi:	hughi:bottomuptreeinti:nextthreadenqueuedequeui:
         
     | 
| 
      
 1247 
     | 
    
         
            +
            throwiB:sbufferi:setokposinti;ci;�
         
     | 
| 
      
 1248 
     | 
    
         
            +
            i:echoserver0i;T
         
     | 
| 
      
 1249 
     | 
    
         
            +
            tofili;�i:"00x0000000000000187l0false804i:subveci:illegalargumentexcepti;�i;/i:bigintegervalueofki:mapputtempi:ifhopsremaini;�i:mathsqrtdisci;�i;�i:shape1010i:outformatp4ndi:
         
     | 
| 
      
 1250 
     | 
    
         
            +
            0x10fi;iH:piecemaski
         
     | 
| 
      
 1251 
     | 
    
         
            +
            :"00x0000000000000383l0false802i:systemoutwritebufi;�i	:runnabli	:330x10li;�i;i:!",i:entryprevnexti:>>>i:count_maxi;�/i:systeminreadbuffi:
         
     | 
| 
      
 1252 
     | 
    
         
            +
            :systemoutprintlnmeeti;Ei:transformationbigintegi;�-i
         
     | 
| 
      
 1253 
     | 
    
         
            +
            :fragmentcounti:hopsremaini:exceptjavavi;�i:071427i:radiusradiui;)i;Vi:printstreami;\i;�i
         
     | 
| 
      
 1254 
     | 
    
         
            +
            bitsji:
         
     | 
| 
      
 1255 
     | 
    
         
            +
            permki:.systemoutprintlnformatterformatpartialsumi:getfirstoneplacedpieci:*0112224350x0000000000023108l3false659i:cmptmpi:notifii:330x08li:processori;�i;�i:
         
     | 
| 
      
 1256 
     | 
    
         
            +
            }+");i:removelasti:~(i
         
     | 
| 
      
 1257 
     | 
    
         
            +
            ;�i
         
     | 
| 
      
 1258 
     | 
    
         
            +
            :bodiesadvance001i:	"");i:inwordi
         
     | 
| 
      
 1259 
     | 
    
         
            +
            :multiplyatvinti:
         
     | 
| 
      
 1260 
     | 
    
         
            +
            permji:faci	;*iR:g_okpiecesrowinextfili:507i:cmpbufendi;�i:sufferi;�
         
     | 
| 
      
 1261 
     | 
    
         
            +
            i:330x04li:
         
     | 
| 
      
 1262 
     | 
    
         
            +
            tset1i:frequencyni:islandi:entrynextprevi:)systemoutprintlnnfformatbodiesenergii:
         
     | 
| 
      
 1263 
     | 
    
         
            +
            feketi;�i:thissizi;�i:s_firstoneboardveci:20x0000000000821041l0truei;(i	:330x02li:bufendi:
         
     | 
| 
      
 1264 
     | 
    
         
            +
            sset0i;m(i:4counti:nbodysystemi
         
     | 
| 
      
 1265 
     | 
    
         
            +
            pts0xi:javaneti;ni:producerconsumi:piecepiece6i:barenumberlengthi;i:opminti	:frequencybi;~i�:m_nsolni:"40x00000000000028c1l0false705i:creaturesistarti:systemoutprintlncodelengthi;�i:ring_buffer_capacity1i:064353i:indexfragmentlengthi;�i;<i;�i:subcenti;�i:	xy12i;li:mandelbrotinti:decimalformat000000000i:
         
     | 
| 
      
 1266 
     | 
    
         
            +
            rset0i:liseemi: nfsetminimumfractiondigits9i;+i:thisprevnexti:ifargslengthi:shortarowi;i: systemoutprintlniterations2i;,i;oi:
         
     | 
| 
      
 1267 
     | 
    
         
            +
            tak30i;Ai:nextthreadi':offsetrowi:systemoutprinthelloi:081919i:dirusprogrammerneti;�i;iA:prodconsjavavi;}i:incorrecti:piecepiece5i;S$i:numspaci:\\i:onepossibleiteratornexti:m_maxsolni
         
     | 
| 
      
 1268 
     | 
    
         
            +
            :"20x00000000000020ccl2false737i;%iU:frequencyti:creaturecoloursii:"systemoutprintlninitiallengthi;�"i;�i:bigintegervalueofri:%ringbufferthreadringbufferthreadi:nsieveinti:indexlastindexi:
         
     | 
| 
      
 1269 
     | 
    
         
            +
            :pairidi:280x08li;�i: javaiobytearrayoutputstreami:
         
     | 
| 
      
 1270 
     | 
    
         
            +
            qset1i:obvioui: nfsetmaximumfractiondigits9i:]",i:addlasti:416i:shortapieci:"00x00000000000208c4l2false649i;�i:perm1rotati:(treenodebottomuptreeidepthitemchecki;"i:systemoutprintftak302010i;i;Yi;�i:intvalui;�i;�i:shifttox0inti:	origi:multiplyavinti:
         
     | 
| 
      
 1271 
     | 
    
         
            +
            :"00x0000000000023042l1false617i;�i9:frequencygi;}i:colourslengthi;b	i:rewritesequi;!i:consumenodi;�/i-:indexoffseti:arrayblockingqueueinteger1i;�i;�i:puzzle5i:8offseti:radiusri:strcati:
         
     | 
| 
      
 1272 
     | 
    
         
            +
            ;�i:genallsolutionsinti:352413110i;�i:numberformati;in:currentsetitemnewi;)i$;�i:280x04li:reversiblebytearraii;�(i:systemoutprintlnstrbufi;�	i:"[i:thisnextprevi:wcjavavi:	arowi:332413110i;Li:perm10ri:
         
     | 
| 
      
 1273 
     | 
    
         
            +
            iiteri
         
     | 
| 
      
 1274 
     | 
    
         
            +
            i:loadnodi
         
     | 
| 
      
 1275 
     | 
    
         
            +
            :bigintegervalueofqi:lastindexi:blockingqueueintegi;�i;z i:systemoutprintlnservi;bi:shapevectori:centerci:primesni
         
     | 
| 
      
 1276 
     | 
    
         
            +
            ;z'i:javaioprintstreami;Bi;�.i:hasbadislandssingleinti:"00x0000000000820841l0false507i;3i:javatextnumberformati;�*i�:280x02li:	cmpui:docomplimentci;�(i:strbufappendti:(!(i;i:0xffffffff00000000li:systemexiti:
         
     | 
| 
      
 1277 
     | 
    
         
            +
            apieci:"00x0000000000060841l0false606i;i:permflipuntildoni:depth2i;i:	takni:
         
     | 
| 
      
 1278 
     | 
    
         
            +
            this0i;�iv;�i:shiftuplinesinti:hellojavavi;i:piecepiece2i:thistaki:integermni:padnumberinti:getindexinti:$0220x0000000000001982l1false726i:frequencyai:rewriterwykmsrbdvhni:chameneosinti:ringnodi;Ti;�"i:thread_counti:outwritebytesini;�i;8iT:char50i:==>i:intersecthiti;�i	;pi:whipkeii;�i:mybitsetmi:flippedisknown1openi:	8newi;�i:javatextdecimalformati:220x10li:createinti:	cmpdi:returnmi:newcolouri	;�(i:strbufappendi:entrynexti:0x00000000ffffffffli:
         
     | 
| 
      
 1279 
     | 
    
         
            +
            mfindi:csetothercolourfadi:ring_buffer_capaci;
         
     | 
| 
      
 1280 
     | 
    
         
            +
            ;�"i;ki:inreadbytesini;�i:cloneirow2icoli;Li;�
         
     | 
| 
      
 1281 
     | 
    
         
            +
            i;�'i:	chadi;Ji:markbadflipi;�i;i:	lofti;4i;�i:220x08li:	cmpbi:ackinti:exceptionfinishi;�i;�i:j10i10j0ji:
         
     | 
| 
      
 1282 
     | 
    
         
            +
            krausi;F.i:bitssetali:"40x0000000000003043l0false705i;Ii	;_i:	fiboi;|i:
         
     | 
| 
      
 1283 
     | 
    
         
            +
            :usednumbersaddnewi;�*i:"10x00000000000208c1l0false606i:creaturesii	;I
         
     | 
| 
      
 1284 
     | 
    
         
            +
            :
         
     | 
| 
      
 1285 
     | 
    
         
            +
            :docomplimentc1i;�i;ii:putinti;Ki:gridlengthi:systemoutprintlnxi:javaiooutputstreami:r_edge_maski:"20x00000000000060c4l2false737i:rewriternni;�i:
         
     | 
| 
      
 1286 
     | 
    
         
            +
            ..");i:offset0i:systemoutprintlnbm_nsolni:taktakx10fyzi:	takzi:socketclientgetinputstreami:
         
     | 
| 
      
 1287 
     | 
    
         
            +
            setali:hasbadalways_badi:"00x0000000000021882l1false628i:170x08li:	cmpri;�i:firstidi:developerworki:
         
     | 
| 
      
 1288 
     | 
    
         
            +
            :0xf0f0f0f0f0f0f0f0li:systemoutprintlnvarii:locksupportunparkthii:permutationni	:+"\i:m_piecesm_npieci:"00x0000000000062084l2false639i;�i:	3000i:
         
     | 
| 
      
 1289 
     | 
    
         
            +
            borlai:2pii:/treenodebottomuptree0stretchdepthitemchecki:messagethreadi";�i0;�i:numberformatgetinsti
         
     | 
| 
      
 1290 
     | 
    
         
            +
            :pti:
         
     | 
| 
      
 1291 
     | 
    
         
            +
            :l_edge_maski	:705i:
         
     | 
| 
      
 1292 
     | 
    
         
            +
            :bgenallsolutions0i:	n10fi:	takii:inputstreami:
         
     | 
| 
      
 1293 
     | 
    
         
            +
            origoi;�i:solutiondepthi;�i,;�i;5i:isleinfoisknown0openi;�(i:170x04li:	cmphi;aiF:firstcolouri;u)i:	()+"i:
         
     | 
| 
      
 1294 
     | 
    
         
            +
            wdivui:entryprevi	:0x0f0f0f0f0f0f0f0fli:returnthissti:nfformatstandard_devii:impossi:fannkuchfini:"+i:
         
     | 
| 
      
 1295 
     | 
    
         
            +
            spieci;�i	:
         
     | 
| 
      
 1296 
     | 
    
         
            +
            33312i:argslengthi:numberofmessagestosendi;kic;�"i:javalangreflectarraii:tmpi:setcoordlistinti;�i	:printcolourscolouryellowi:
         
     | 
| 
      
 1297 
     | 
    
         
            +
            :40x00000000000008c5l0truei;�&i;�i:meetcreaturi:ringbufferthreadi:produceinti;i:calculatefrequenciesinti:boardcalcalwaysbadi:	n20fi:anthonii:ssacceptingaccepti:g_flipi:taktakxi:mathsqrtdotai:maskirowicoli:
         
     | 
| 
      
 1298 
     | 
    
         
            +
            +""))i:javautilarraii;d.i:!g_islandinfofliptworowsiwordi:"00x0000000000003083l0false705i:	vec0i	:	cmpvi:runtimeexceptionerrori;Di	:piece6i:170x02li:)+"i:
         
     | 
| 
      
 1299 
     | 
    
         
            +
            vaddvi;ii';�)i:
         
     | 
| 
      
 1300 
     | 
    
         
            +
            populi:stostri;�$i:"00x00000000000420c1l0false605i;�-i�:++]i:numberofthreadi;i�;�i:	jamei
         
     | 
| 
      
 1301 
     | 
    
         
            +
            :s_basepieceiji:	batai:printcolourscolouri
         
     | 
| 
      
 1302 
     | 
    
         
            +
            byteci:
         
     | 
| 
      
 1303 
     | 
    
         
            +
            inneri:g_islandinfoiwordi:$0110x000000000000014el1false815i:	cmpci;AiM:docomplimentcolouri:110x10li:ray_traceveci:"+(i:
         
     | 
| 
      
 1304 
     | 
    
         
            +
            uaddui;�)i:llentrycurrvi:16li:nfformataverage_devii:'javautilconcurrentlockslocksupporti:sappendgetii:pushpieceinti:&011130x00000000000002ccl2false836i;�-i:piece0i:fastmathcoski;�i:javautillisti:heapsortjavavi:m_instanceii:multiplyatavnvui:printcolourscolourblui:chainendjoini;�iJ:jbodymassi;�i;�i
         
     | 
| 
      
 1305 
     | 
    
         
            +
            :cellgroupsadddiagonal1i;{i;Ui;L(i:"00x0000000000001183l0false704i:rreadcbufi:meetingplaceinti	:issafeinti;�i:
         
     | 
| 
      
 1306 
     | 
    
         
            +
            mtodoi:foundcounti;i:linetokenizernvi:bytebuffer_si:vecsaxi:	icoli
         
     | 
| 
      
 1307 
     | 
    
         
            +
            thisci:
         
     | 
| 
      
 1308 
     | 
    
         
            +
            iwordi	:"50x0000000000000147l0false804i:	enumi	;�,i;�"i:	lvali:110x04li:	cmpai:
         
     | 
| 
      
 1309 
     | 
    
         
            +
            umulti:javautiltreeseti:nfformatmeani:llentryinti:reversebyti:poppieci:	0112i: systemoutprintchar5255gssssi;	i:jarkkoi:shapemincoli;�i:bergandi;f!iX:n_piece_typen_orii;�i�:7sbappendnumberscharactergetnumericvaluenstrcharatii:linkstarti:jbodyii:cellgroupsaddgridcolxi:jk1ijii:spunm_pieces0ipieci;� i:setothercolouri;9i:char16384i:
         
     | 
| 
      
 1310 
     | 
    
         
            +
            badlii:systemerrprintlnfoundi:strbufi:
         
     | 
| 
      
 1311 
     | 
    
         
            +
            :--]i:outclosi;�,i	:	spini:110x02li:	cmpti:compose_linti:javautilsortedseti;Bi	;�i:systemoutprintlnmeani:llentrii:threadputhopcounti:iffi:m_npieci:	1newi:shapemaxrowi;i:	vec1i;Ti:systemoutprintf9ftgregoryni:mattiai;Ii�	:s_basepieci:}},i}:valhash2getfoo_9999vi;"i	:
         
     | 
| 
      
 1312 
     | 
    
         
            +
            i:03015094502008di:spunm_cellsyxi:*0131122310x00000000000410c4l2false639i;�i:
         
     | 
| 
      
 1313 
     | 
    
         
            +
            i1inii:getcolouri:	cbufi;i
         
     | 
| 
      
 1314 
     | 
    
         
            +
            22112i;�i;�.i;�,i:
         
     | 
| 
      
 1315 
     | 
    
         
            +
            orgini:60x10li:	cmpii:javautildi:
         
     | 
| 
      
 1316 
     | 
    
         
            +
            qmulqi:nfformatmediani:li1getfirstvi:	0xfli:schedulerstarti:no_pieci:systemoutprintlny0i:shapeisleti:ray_traceunitisenewi;�i:systemoutprintf9ftalterni;�iV;�i:},{i�:valhash2getfoo_1vi:nstrlengthi:piece9i:approximateinti:chainendstarti:
         
     | 
| 
      
 1317 
     | 
    
         
            +
            jbodii:arraylistinti:01975473066391di:"40x0000000000003841l0false705i:ifperm100i:getcreaturesmeti;i;�i1:stringbuilder5100000i;i:mlengthi:transformation0000i:getpieceinti:writecountstri:linetokeni:takinti:serversocketiporti:
         
     | 
| 
      
 1318 
     | 
    
         
            +
            ;�i:bsget6i:
         
     | 
| 
      
 1319 
     | 
    
         
            +
            permui:resultii:getfirstonetofill0i:"00x0000000000043042l1false617i;ui;/i:
         
     | 
| 
      
 1320 
     | 
    
         
            +
            0x10li:cmplengthi:	slowi:javautilarraylisti;i_:	saddi:systemoutprintlnmediani;�i:li3sizi:schedulerstartti:	solni:"70x000000000000020fl0false802i:flipuntildoni:shapeshifti;�,i;�i;9i;�i;�i�;�i:systemoutprintf9ftriemanni:{{i}:protecti;Li:#-i:valhash1getfoo_9999vi:spectralnormapproximateni:stringvalueofni;$i;�i;�.i
         
     | 
| 
      
 1321 
     | 
    
         
            +
            :01979883004921di:m_cellsn_rowi:"00x00000000000021c8l3false759i:	areai	;5i;�i:forr1ri:
         
     | 
| 
      
 1322 
     | 
    
         
            +
            0x08li;�+i	:byte128i:futuretgetitemi:
         
     | 
| 
      
 1323 
     | 
    
         
            +
            umulqi:systemoutprintlnni:li2sizi:getnami:
         
     | 
| 
      
 1324 
     | 
    
         
            +
            bodyzi:	spuni	:152213110i;�"i:systemoutprintni:padi;�i&:matcherappendtaildestini;�i:
         
     | 
| 
      
 1325 
     | 
    
         
            +
            mdonei;�
         
     | 
| 
      
 1326 
     | 
    
         
            +
            i;i:g_okpiecesirowicoli:!systemoutprintlnfragmentsequi:javaiostreamtokeni:fibinti:echoserverinti:ix0i;)i;�i	:topsquarefindfewestmovi:systemoutprintlnpositi:badregiontofili:804i:systemouti:
         
     | 
| 
      
 1327 
     | 
    
         
            +
            0x04li:subscaleli:revcompi:threadyeildi:	tonii;�+i:	smuli:systemoutprintlnli2i: nfsetminimumfractiondigits6i:
         
     | 
| 
      
 1328 
     | 
    
         
            +
            valv1i;ti!;.i":	issui;�i;�i:stringbuildi:endlinki:
         
     | 
| 
      
 1329 
     | 
    
         
            +
            ("");i;�
         
     | 
| 
      
 1330 
     | 
    
         
            +
            i;�i:systemoutprintlnji:!doublefragmentcountdoublesumi:getpieceipieci:
         
     | 
| 
      
 1331 
     | 
    
         
            +
            :g_firstregionstartregioni:
         
     | 
| 
      
 1332 
     | 
    
         
            +
            0x02li:donneforti;1#i:starttime10000i:
         
     | 
| 
      
 1333 
     | 
    
         
            +
            taddti:
         
     | 
| 
      
 1334 
     | 
    
         
            +
            clonei:
         
     | 
| 
      
 1335 
     | 
    
         
            +
            bodyii;�/i
         
     | 
| 
      
 1336 
     | 
    
         
            +
            ;�!i;�i:]")i:
         
     | 
| 
      
 1337 
     | 
    
         
            +
            i0inii:rm_cellsyxi:#matcherappendreplacementdestini;�i:complementothi:nextthreadsendmdoni;oi:});i;�
         
     | 
| 
      
 1338 
     | 
    
         
            +
            i:systemoutprintti;�&i:knucleotidelistgetii:pm_instance1m_allowi:jeffreii:serversocketi;#i:puzzleinti:$deltamathsqrt222044604925031e16i:systemoutprintlntopsquari;�i	:bssetrangi:$0220x0000000000001886l1false727i;v/i:g_firstregiontofill0i:(">i:
         
     | 
| 
      
 1339 
     | 
    
         
            +
            0x01li;K#i;hi:
         
     | 
| 
      
 1340 
     | 
    
         
            +
            tmulti:systemoutprintlnli1i:!nfsetmaximumfractiondigits13i:
         
     | 
| 
      
 1341 
     | 
    
         
            +
            ifmsgi:"00x0000000001041042l1false517i:
         
     | 
| 
      
 1342 
     | 
    
         
            +
            numi1i:intn_fixedn_pari:thismaxrowi:systemoutprintp5nni:javaioi:systemoutprintmm32i:systemoutprintf9ft1kk1ni;�i:	++];i:valhash2getkeyvi;�i;�i;Ui:thissameidi;i:mpz_get_silongi;%i:diagonalinti:bodyvxi;�i�:"00x0000000000002087l0false705i;�i:}.i: systemoutprintlnpfannkucheni:	rvali:matcherfindi;|id:mpmeetthii:messagemessagi:)((i
         
     | 
| 
      
 1343 
     | 
    
         
            +
            ;i:digitsnexti;xi:ilistsi:pm_instance0m_allowi;�i:socketfromserverclosi;�i:deltamathsqrtmathulp10i:topsquaregetpriori:050651i:mybitset128i:	7newi;�/i:startregioni:061117222833394450i;Ki:systemoutprintftimi:
         
     | 
| 
      
 1344 
     | 
    
         
            +
            raddri:
         
     | 
| 
      
 1345 
     | 
    
         
            +
            64biti:"doublenumsgetmid1doublevalue2i:thisnami:	0110i
         
     | 
| 
      
 1346 
     | 
    
         
            +
            )","$i:systemoutprintcounti;�i:pairbooleani:doubleki:mpz_set_silongi;Ai:
         
     | 
| 
      
 1347 
     | 
    
         
            +
            bodyxi:&111220x00000000000009c2l1false726i:|\i:
         
     | 
| 
      
 1348 
     | 
    
         
            +
            raziii
         
     | 
| 
      
 1349 
     | 
    
         
            +
            :rsetceli:patternmatcherorigini:colourfadi	:threadsend0i;%i:sequencelengthi:exchangi:043629i:genorientationrefpieci:	0x17i:inreadbufi:eprintstacktraci	:solve0x0002004008010020l00i;�i:
         
     | 
| 
      
 1350 
     | 
    
         
            +
            didpri:pqpolli:
         
     | 
| 
      
 1351 
     | 
    
         
            +
            alubki:preworki;5i;�i:busy_retry_counti:
         
     | 
| 
      
 1352 
     | 
    
         
            +
            vmulti;�&i	:stopstarti:doublenumsgetmiddoublevalui:handlemessagi:intn_piece_typen_orii:"00x00000000000003c1l0false802i:thisshifti:czdzrni;�i;i�:
         
     | 
| 
      
 1353 
     | 
    
         
            +
            :(">.*\i;Pi:	amiri;�%i
         
     | 
| 
      
 1354 
     | 
    
         
            +
            :rm_pieces0ipieci:10x00000000000210c1l0truei;�i:thismatchi:thismpi;�i;�i:messagethreadstarti:akai;<i:pidigitspigoti	: ---------------------------i;�i: nfsetminimumfractiondigits3i:
         
     | 
| 
      
 1355 
     | 
    
         
            +
            bitsii:alublengthi;�i:boardmaskshifti:"10x0000000000021043l0false607i:systemoutprintlnt1i;	i
         
     | 
| 
      
 1356 
     | 
    
         
            +
            rmulri:systemoutprintlntooki:	]--;i:collectionssortnumi:nextthreadhandlemessagi:2k1i:	num0i:
         
     | 
| 
      
 1357 
     | 
    
         
            +
            })(\\i;
         
     | 
| 
      
 1358 
     | 
    
         
            +
            i;ri9:	runni	;�i:	src2i;h*i:
         
     | 
| 
      
 1359 
     | 
    
         
            +
            gridxi:ibodyvzi:
         
     | 
| 
      
 1360 
     | 
    
         
            +
            ())).i:transliteri:m_pieces0ipieci:"20x00000000000041c4l2false737i;7i:destini:thiscolouri;�i:int1024i;Xi:javamathbigintegi:
         
     | 
| 
      
 1361 
     | 
    
         
            +
            ])++;i:
         
     | 
| 
      
 1362 
     | 
    
         
            +
            umulri:tnextthreadi	:systemcurrenttimemillii	:;)i:	resti;Vi:	curri:threadsgetrrindexi:4k2i:J---------------------------------------------------------------------i:numidxi:byten_piece_typi:*0112233350x0000000000062108l3false659i:veccxdxrni;�i:systemoutprintlnack3i:thisvectori:holensteini;�i;�!i:stringh1getkeii:
         
     | 
| 
      
 1363 
     | 
    
         
            +
            ("(\\i:sievejavavi;i9:printcolouri	:mpz_addlongi:1n10000i;�i:ibodyvii:	)");i;i:lessthansolni:	0111i	;�i	:$stringbufferoriginallengthtostri:creaturecolouri:piece2i;�i;wi://----------------------i;b'i;�i:
         
     | 
| 
      
 1364 
     | 
    
         
            +
            :
         
     | 
| 
      
 1365 
     | 
    
         
            +
            npieci:"20x0000000000841041l0false506i;�-i;zi;/i:thissymboli;{iI:mapentryitnexti:baseveci:	+"))i:catchioexcepti;�i;:!systemoutprintlngetnumbertoti;�i:mpz_mul_silongi:gridrowinti:ibodyvxi:piecen_elemi:"40x0000000000000847l0false705i:rewriteorigini;Ai	;�i;�i:[~i:ttkyondi:knucleotideo1counti:"\"i:	ymaxi	:genallorienti:	0x1di:sumcoli:strreadi:okpieci;�i; i;#i:intm81i:	ainti:pqoffernewi;s	i;�i:infohasbadisoddisclosi:2213110i:	chami:thisnni:
         
     | 
| 
      
 1366 
     | 
    
         
            +
            :knucleotideo2counti;�i:	xmini;&i:oddm_offseti:	0x0di:sumcoljavavi;�i:
         
     | 
| 
      
 1367 
     | 
    
         
            +
            yoniki:replacealld1i;i:mybitsetinti:#priorityqueuemagicsquarespqnodi:bbufferindexi	:infoisknownisoddisclosi:"00x0000000000061042l1false618i:systemnanotimi;i#:piece5i:pidigitsinti:083947i:mathpowdeviation2i;^i:cooperativethreadi:forbyti:g_islandinfoii:$0110x000000000000005el1false813i;�-i;�i:mincoli;�!i:outwritebytebiti:whileithasnexti:all_piece_maski;i:	:-).i;si:systemoutprintlncreaturi:buffbpi:mpz_clearpointi:dsquari:pqnodepqnodi;ki:countlengthi:rowoffseti;�	i;i:colouryellowi!:matchergroupii:{~i:integerlistremove0i;
         
     | 
| 
      
 1368 
     | 
    
         
            +
            p2numi:
         
     | 
| 
      
 1369 
     | 
    
         
            +
            tjoini:
         
     | 
| 
      
 1370 
     | 
    
         
            +
            gridii	:+stringvalueofcounterentrygetvaluecounti:	dashi:m_piecesipieci:"00x00000000000011c1l0false704i:colourblui%:
         
     | 
| 
      
 1371 
     | 
    
         
            +
            shapei�://-----------------------i:whilelistsi;	i:
         
     | 
| 
      
 1372 
     | 
    
         
            +
            isleti;�i:0x1i:bufferedoutputstreami:
         
     | 
| 
      
 1373 
     | 
    
         
            +
            :stringentrygetkeii:setceli:(01122240x0000000000003884l2false749i:!patterncompileregularexpressi:mathcoshalfpiradiani:('.');i;i:integermessageintvalui:	m3iji:evenm_offseti:	0x19i;� i:collectionssortlisti:stringbuffer32i:
         
     | 
| 
      
 1374 
     | 
    
         
            +
            mutati:groupobjsaddlastspheri;Xi:mathpowk05i:
         
     | 
| 
      
 1375 
     | 
    
         
            +
            m_veci:"00x0000000000021086l1false617i:integertostringii;zi;�i:
         
     | 
| 
      
 1376 
     | 
    
         
            +
            buffpi:threadcreaturesii:mpz_get_dpointi;I	i:ibodyxi:pqnodei::stringmapentryo2getkeycomparetostringmapentryo1getkeii:resulttostri:	3newi;i;ui;�i:meetingplaci;i:thispatterni:
         
     | 
| 
      
 1377 
     | 
    
         
            +
            size1i:-------------------------;i:listaddnewi:mathsinradiani:evenm_veci:	0x09i:listaddfragi;x&i;/i;�i:n_piece_typi
         
     | 
| 
      
 1378 
     | 
    
         
            +
            strini:printsolutionsfirsti:randomjavavi;�i:marxeni;�i
         
     | 
| 
      
 1379 
     | 
    
         
            +
            :othergetpriori:padnumbernsievembiti:
         
     | 
| 
      
 1380 
     | 
    
         
            +
            isoddi:"40x00000000000060c2l1false715i:descstri;}i;�i:matchgroup3i;yi:printresulti:newvalui:systemerrprintlni
         
     | 
| 
      
 1381 
     | 
    
         
            +
            byteni:integerparseintargs0i@;Ni	:
         
     | 
| 
      
 1382 
     | 
    
         
            +
            ;i�:tsii;i:doublevalui:imovescloni:
         
     | 
| 
      
 1383 
     | 
    
         
            +
            ibodii:#countermapentryo1getvaluecounti:resultappendni;Qi
         
     | 
| 
      
 1384 
     | 
    
         
            +
            :-------------------------i:synchronizedlisti	:
         
     | 
| 
      
 1385 
     | 
    
         
            +
            aligni:mathabsradiansonefourthpii:targetsetokposeveni:	0x11i:%knucleotidemapentryitnextgetvalui;�&i;�i:n_celli:greetinggetbyti;i:foundnni:prodconscountruni;�
         
     | 
| 
      
 1386 
     | 
    
         
            +
            i:heineri:instanceofi;`i}:
         
     | 
| 
      
 1387 
     | 
    
         
            +
            shifti+:barkeri	;ui
         
     | 
| 
      
 1388 
     | 
    
         
            +
            ;�!i:reducesinangleradiani:	uniti:	0x16i:ithasnexti;�&i:shifttox0pti;�i;	i:
         
     | 
| 
      
 1389 
     | 
    
         
            +
            n_rowi:
         
     | 
| 
      
 1390 
     | 
    
         
            +
            ))]);i:spunlessthanm_minsolni:piece8i;M
         
     | 
| 
      
 1391 
     | 
    
         
            +
            n_coli/:$socketfromservergetoutputstreami;^i
         
     | 
| 
      
 1392 
     | 
    
         
            +
            :solutionslasti;�i:producerm_cubbyholi:anothermsquari:
         
     | 
| 
      
 1393 
     | 
    
         
            +
            :phonepatternmatcherstri;�i:newcolorgetitemi;�i:listintegi:tmultiplyai:systemerrprintlnfirsti:doubleparsedoublelini:listcooperativethreadi:boardtop_rowi:	klaui;�
         
     | 
| 
       520 
1394 
     | 
    
         
             
            i
         
     | 
| 
       521 
     | 
    
         
            -
             
     | 
| 
       522 
     | 
    
         
            -
             
     | 
| 
       523 
     | 
    
         
            -
             
     | 
| 
       524 
     | 
    
         
            -
             
     | 
| 
       525 
     | 
    
         
            -
             
     | 
| 
       526 
     | 
    
         
            -
             
     | 
| 
       527 
     | 
    
         
            -
             
     | 
| 
       528 
     | 
    
         
            -
            " 
     | 
| 
       529 
     | 
    
         
            -
             
     | 
| 
      
 1395 
     | 
    
         
            +
            :arrayrowcoltoarraynewi;i;�i:systemloadlibraryacki:limitsquari;�"i:"40x0000000000043041l0false605i;�i;~i;_i:sspinspuni:
         
     | 
| 
      
 1396 
     | 
    
         
            +
            :systemoutprintlnlasti:prodconsinti;�i;3i:comparetoobjecti:
         
     | 
| 
      
 1397 
     | 
    
         
            +
            iinfoi:sphereveci:itrhasnexti:)currentsetitemmycolorcomplementfirsti;i: chainenqueueintegervalueof0i:smultiplyaqaddi:integerli1getfirstintvalui;riO:momenti:multithreadi:
         
     | 
| 
      
 1398 
     | 
    
         
            +
            42312i:hi_exceptionni:g_flipbiti:shapesrowcoli:	sraii;�i:10000000007508676i;~	i:javaiobufferedoutputstreami:mathpowk2i;�i;-i:m_maxsolnlessthani:"00x00000000000003c2l1false814i:bufflengthi;�i:creatureplaci:	"));i:
         
     | 
| 
      
 1399 
     | 
    
         
            +
            :targetm_instanceeveni:	0x12i:hashmap1024i;�/i:4inputstreamreadersocketfromservergetinputstreami:
         
     | 
| 
      
 1400 
     | 
    
         
            +
            n_fixi:solutionsfirsti:	()];i:systemoutprintlnm_produci;�i:
         
     | 
| 
      
 1401 
     | 
    
         
            +
            ; $i:bitseti:
         
     | 
| 
      
 1402 
     | 
    
         
            +
            :filelistiterator0i:meetcolouri:ahlborni:rmultiplyati:tmpaddfirstli1removefirsti:};i!:javalangmathi:112i;�i:"00x0000000000082083l0false604i:lo_exceptionni:fliptworowsinti:
         
     | 
| 
      
 1403 
     | 
    
         
            +
            col10i;�i:
         
     | 
| 
      
 1404 
     | 
    
         
            +
            :
         
     | 
| 
      
 1405 
     | 
    
         
            +
            pts0yi:	0x14i:javautilhashmapi;�i :bufferedreadernewi:always_badi;$&i:systemoutprintlnfirsti:[]>();i:m_consumerjoini;Oi:findfewestmovesmoveslengthi;Li`:)};i:nsievebiti
         
     | 
| 
      
 1406 
     | 
    
         
            +
            :aici:hasbadislandsinti:	6newi;i;�i:itri:thismeetingslefti;>i:qmultiplyaraddi;Ai;ji:li1isemptii;�i1;�i;0i:blowupinti:countonesinti:
         
     | 
| 
      
 1407 
     | 
    
         
            +
            inormi;�i:100000000079206574i;�	i:	col0i:shift0i;�i;�i:sclone2i:*0112233240x0000000000021884l2false649i;ai:
         
     | 
| 
      
 1408 
     | 
    
         
            +
            obuffi:systemoutprinti;�i;�'i:mpz_addpointi;�i:071428i;�i:jrei:
         
     | 
| 
      
 1409 
     | 
    
         
            +
            pmassi:matchergroupi;;i:	previ:
         
     | 
| 
      
 1410 
     | 
    
         
            +
            row10i:outwritebufloci:063741i:hash2javavi:m_minsolnisemptii:10x0000000000061041l0truei:bytebuff_si:colourcolouri;;i:500x10li:op2i;2i;i
         
     | 
| 
      
 1411 
     | 
    
         
            +
            :pvzi
         
     | 
| 
      
 1412 
     | 
    
         
            +
            ;�i:selectrandomfrequi;%i:
         
     | 
| 
      
 1413 
     | 
    
         
            +
            ncelli:$0310x00000000000210c2l1false618i:fileaddinlini:mpmeetcolouri:readeri:composetransformi;qi;�i:consumenodenexti:li3isemptii:momentsjavavi; i6:whilet2i;J"i;$i:hi_functioninti:s_firstoneresultlowi:
         
     | 
| 
      
 1414 
     | 
    
         
            +
            n_dimi:m_producerstarti;Hi:systemoutprintlnendi;i:	alkii
         
     | 
| 
      
 1415 
     | 
    
         
            +
            :hi_functionni:ffmresultmxi;�
         
     | 
| 
      
 1416 
     | 
    
         
            +
            i;�i:tofill0i:"40x00000000000020c3l0false705i:patterncompileregexi;i:thismeti:qrstinti;`i:consumenodemessagi:
         
     | 
| 
      
 1417 
     | 
    
         
            +
            (;;){i:li3addlastli2removefirsti;^i:t2nextthreadi:meetingslefti:systemoutprintlnwi:resultlowi:composi:sceneintersectnewi;�i:arrayrowcoladdnewi:	")).i	;�i;[i:systemoutprintlnci:m_cursolnpoppieci:"10x0000000000021184l2false638i:
         
     | 
| 
      
 1418 
     | 
    
         
            +
            ;�&i:systemoutprintlnstarti:nsievemflagi:movescloni:aipi;Ci;i:"40x00000000000000cel1false815i:phonepatterni:initialcolouri;�i1:numeratordividedenomini;i;�,i:
         
     | 
| 
      
 1419 
     | 
    
         
            +
            >());i:nthtoggletrui;pi:li2isemptii;�i:some_functioninti:startpoi:sceneintersectii;si:10mathsqrtki:mutantisleti;?(i:	()).i
         
     | 
| 
      
 1420 
     | 
    
         
            +
            pereni:	0x1fi:smultiplybigjaddti;�i:loadnodemessagi;'i;�i;�)i	:linkedlistli1i:threadenqueuehopcounti:systemoutprintlnexcepti:.*;iE:getfirstoneinti;i:sceneitnexti;	i:colmutantmaxcoli;e i
         
     | 
| 
      
 1421 
     | 
    
         
            +
            :zrni
         
     | 
| 
      
 1422 
     | 
    
         
            +
            tostri
         
     | 
| 
      
 1423 
     | 
    
         
            +
            clampi:022110i:makecumulativefrequi:[])i+:
         
     | 
| 
      
 1424 
     | 
    
         
            +
            0flipi:systemoutprintlnvi:li1addlastnewi:tstarti;@	i:idxi
         
     | 
| 
      
 1425 
     | 
    
         
            +
            :towardi:colmutantmincoli:	[][]i�:objslistiterator0i;bi:injecti:
         
     | 
| 
      
 1426 
     | 
    
         
            +
            0x08fi;�i:	xfaci:pieceall_piece_maski:
         
     | 
| 
      
 1427 
     | 
    
         
            +
            decimi:
         
     | 
| 
      
 1428 
     | 
    
         
            +
            razzii;�i:possiblemovesxii:oddregioni:"00x00000000000030c1l0false705i;�.i:	atomi:scale1i:javautilregexpatterni;�i	:loadnodenexti:qmultiplybigjaddri;�i:linkedlisti:Gcc{�:ret_pm0i:
         
     | 
| 
      
 1429 
     | 
    
         
            +
            pcrehi:semprivi	:strcmpbstringastri:temporarii;�$i;&i:b2yi	:tivi:lenghti;�/i:
         
     | 
| 
      
 1430 
     | 
    
         
            +
            ;i:	alani:netinetinhi:asserthi:squarenumberpresentsquari:__use_string_inlini:atmosttwoi:acounti:
         
     | 
| 
      
 1431 
     | 
    
         
            +
            tuceki;�i;�$i;Wi;#0i:trvi:ungetcpeekstdini;Qi	:
         
     | 
| 
      
 1432 
     | 
    
         
            +
            pprevi;Ni	:destroysceni;�i:their_addrsin_familii;�i:writesocki:nth_toggle_activi;|i:squaregetprioritysquare1i;i:nothrei
         
     | 
| 
      
 1433 
     | 
    
         
            +
            :"pthread_mutex_lockprint_mutexi:mallocrowi:new_squareunusi;�i:dznum_group_membi;
         
     | 
| 
      
 1434 
     | 
    
         
            +
            ix:
         
     | 
| 
      
 1435 
     | 
    
         
            +
            wscnti:deoptimi;�*i:	'-';i:setjmplo_excepti:phonesii	;@0i
         
     | 
| 
      
 1436 
     | 
    
         
            +
            :))-i:	wrati:list_pop_headdli;A0i:
         
     | 
| 
      
 1437 
     | 
    
         
            +
            chiewi:one_possiblenni:
         
     | 
| 
      
 1438 
     | 
    
         
            +
            lpcrei:
         
     | 
| 
      
 1439 
     | 
    
         
            +
            sem_ti:bcounti:
         
     | 
| 
      
 1440 
     | 
    
         
            +
            mpz_ti:unbuffi;L0i:b2xi	;O0i:
         
     | 
| 
      
 1441 
     | 
    
         
            +
            plasei;�i	:.);i:compliment_colorcolori:civi:
         
     | 
| 
      
 1442 
     | 
    
         
            +
            pnexti;�i	:create1i;�i:perrorgethostbynami:nelementsxi;Di;�i:	obufi;�i
         
     | 
| 
      
 1443 
     | 
    
         
            +
            ;�i:nx5i:
         
     | 
| 
      
 1444 
     | 
    
         
            +
            isnegi	:mallocjbfsi:sem_waitsem_printi:mkmatrixinti:mallocni:group_newi:bottomuptrei:cnti:
         
     | 
| 
      
 1445 
     | 
    
         
            +
            ;zi;
         
     | 
| 
      
 1446 
     | 
    
         
            +
            i�;�i:regexdnaci;�i:one_possible1i:forgeti:freearii:	ctx_i;U/i:int1sizeofintchar_bit3i;hi:itotal0i:
         
     | 
| 
      
 1447 
     | 
    
         
            +
            )))),i:chameoi:crvi:list_reversi:	csgni;vi;�i:hegethostbynamelocalhosti;Mi:
         
     | 
| 
      
 1448 
     | 
    
         
            +
            flynni:
         
     | 
| 
      
 1449 
     | 
    
         
            +
            lateri:printfcounti:init_nthtogglenthtoggli;�0i	;�i;Bi:square1i:searchforvi;�i6:noonani;�i;�i:freepai:jjji
         
     | 
| 
      
 1450 
     | 
    
         
            +
            ;�i3:freeother_critti:gbounddestroii:newtreenodenuli:new_squaregridi:
         
     | 
| 
      
 1451 
     | 
    
         
            +
            b_cnti:hashloadchari:	'(';i:longjmphi_excepti;�i:mallocovecsi:creauri;fi(;[i!:
         
     | 
| 
      
 1452 
     | 
    
         
            +
            ;�0i;�"i	:1inboxsemi:connectsocki:reversefilegccvi;Kin:systypeshi	:call_threadsheadi;�i;�)i	;\i,:one_possible0i:#sort_arrayicountsort_arrayistri;�i;�i:	gmphi:
         
     | 
| 
      
 1453 
     | 
    
         
            +
            :squarecompareptrsquari;�,i;�i;[i=:
         
     | 
| 
      
 1454 
     | 
    
         
            +
            l_cnti;�i+:#%i:longjmplo_excepti:	alexi;�i	;�i:printfsnkeii:pcre_fullinfoi:waiting_partni;i;^!i;i;�0i:deeperi:list_push_headdli:sleep2i:errnohi:create_threadsheadi;�)i:
         
     | 
| 
      
 1455 
     | 
    
         
            +
            estimi:
         
     | 
| 
      
 1456 
     | 
    
         
            +
            :
         
     | 
| 
      
 1457 
     | 
    
         
            +
            permli;�i:kkki:takfpgccvi:1sti;�"i:ifcritteridi:gmembersii;si:unsigniD:new_squari
         
     | 
| 
      
 1458 
     | 
    
         
            +
            w_cnti	;�i;*i:blowupi;'i
         
     | 
| 
      
 1459 
     | 
    
         
            +
            i;�i;?i:ffmpm_counti:(&(i:write_counti:xcngpkli:ifother_critti:fputcbyte_accstdouti:group_intersecti:bottomuptreelongi:squarenewvoidi:"\\i;di;�i	;Ui:pcre_fullinfori:schedhi;ci;�i;1i:
         
     | 
| 
      
 1460 
     | 
    
         
            +
            neveri:
         
     | 
| 
      
 1461 
     | 
    
         
            +
            ;i:headctxi;�i;Si
         
     | 
| 
      
 1462 
     | 
    
         
            +
            :new_one_possi:	....i:qsortsort_arraii;]i;]i;�&i;0i;^i:formulai:first_arrivi	;ci:
         
     | 
| 
      
 1463 
     | 
    
         
            +
            l0vali:recvnewfdi;G)i:181123i:sizeofibufi;�i;.	i;�%i:squaregetfewestmovessquari;�i:ht_destroii	:meetingcritti:
         
     | 
| 
      
 1464 
     | 
    
         
            +
            i:squaregridxyni;T
         
     | 
| 
      
 1465 
     | 
    
         
            +
            :cell_groupsgroupii:chainnext_chaini;�i:advanceinti;iP:progami:	xchki;i:__attribute__i
         
     | 
| 
      
 1466 
     | 
    
         
            +
            :bufferendbufferforwardi;�	i;�i:lsizevi:
         
     | 
| 
      
 1467 
     | 
    
         
            +
            textii:#fputsntogactivatentogvaluentogi:	ibufi	;A1i:flags8192i:creature_ti
         
     | 
| 
      
 1468 
     | 
    
         
            +
            vecaxi	:	mleni
         
     | 
| 
      
 1469 
     | 
    
         
            +
            ;R"i:unraveli:returnnuli;Ei:1inboxi:mallocrequest_si:
         
     | 
| 
      
 1470 
     | 
    
         
            +
            :ctipsbestwebneti;^1i:print_mutexi:	v2dfi:bufferforwardbufferendi	;
         
     | 
| 
      
 1471 
     | 
    
         
            +
            +i1:lsize1i:perroraccepti;�i;j1i:ibuf64i:meetingspi:squaregetpriorityptrsquari;�(i
         
     | 
| 
      
 1472 
     | 
    
         
            +
            1permi:	ctipi;�1i:sem_printi;*iC:includefenvhi:ifbufferendnendi:arygccvi;�i:lsizeprevi;�
         
     | 
| 
      
 1473 
     | 
    
         
            +
            i
         
     | 
| 
      
 1474 
     | 
    
         
            +
            :064032i;Ti>;�%i:
         
     | 
| 
      
 1475 
     | 
    
         
            +
            ;3i:235838i:
         
     | 
| 
      
 1476 
     | 
    
         
            +
            nreadi:squareffmpm_countnni;gi:second_creaturi:
         
     | 
| 
      
 1477 
     | 
    
         
            +
            sjnumi;�i:	resni:
         
     | 
| 
      
 1478 
     | 
    
         
            +
            :
         
     | 
| 
      
 1479 
     | 
    
         
            +
            lsizei;qi:gchildi:listensockfdi;�iC:jani	:	aluni: fputstogactivatetogvaluetogi:new_togglechari:
         
     | 
| 
       530 
1480 
     | 
    
         
             
            :
         
     | 
| 
       531 
     | 
    
         
            -
             
     | 
| 
       532 
     | 
    
         
            -
             
     | 
| 
       533 
     | 
    
         
            -
            :
         
     | 
| 
       534 
     | 
    
         
            -
            i	:
         
     | 
| 
       535 
     | 
    
         
            -
            :)->i$:iscenedatagni;i:7setsockoptsockfdsol_socketso_reuseaddryessizeofinti;Ji!:sprintfbufi:shuffli:printfoffseti:132i:
         
     | 
| 
       536 
     | 
    
         
            -
            permui:
         
     | 
| 
       537 
     | 
    
         
            -
            assumi: pthread_attr_initstack_attri:clearlii:	polii;�i:isspacecpi:)\\))"i:	prmti;�i;�i:prettii:pcre_compilepatterni:other_critteridi;<i�:lsizenexti:
         
     | 
| 
       538 
     | 
    
         
            -
            lpcrei:	errxi
         
     | 
| 
       539 
     | 
    
         
            -
            :
         
     | 
| 
       540 
     | 
    
         
            -
            i	:pthread_joinpid_tabii:destroysceni;�i,:perrorsocketi:ht_createni;7i:reallocbufi;�
         
     | 
| 
       541 
     | 
    
         
            -
            i:algorithmsdatai:gingrai;1i:returnnuli;i:double_candidi:callocni
         
     | 
| 
       542 
     | 
    
         
            -
            ;�i:
         
     | 
| 
       543 
     | 
    
         
            -
            lsizei;�i:scale1i:	voidix:exit10i;2i:
         
     | 
| 
       544 
     | 
    
         
            -
            i:main_inboxni:squareffmpm_counti:	++].i:regexdnaci:strtouli	;�i:stufflen1i:bodiesimassi;�i
         
     | 
| 
       545 
     | 
    
         
            -
            :whileforwardendi:.);i:sem_postsem_printi:
         
     | 
| 
       546 
     | 
    
         
            -
            paoloi:
         
     | 
| 
      
 1481 
     | 
    
         
            +
            12342i:
         
     | 
| 
      
 1482 
     | 
    
         
            +
            sinumi;,i:compose_rci:perm1k0i:critternumber_of_meeti;i:sintersecti;iQ:qedpoboxcomi;}i	;S$i:tempa0i:reallocwordbufi;�1i:-*-iC;�
         
     | 
| 
       547 
1483 
     | 
    
         
             
            :
         
     | 
| 
       548 
     | 
    
         
            -
             
     | 
| 
       549 
     | 
    
         
            -
             
     | 
| 
       550 
     | 
    
         
            -
            i 
     | 
| 
       551 
     | 
    
         
            -
             
     | 
| 
       552 
     | 
    
         
            -
            ) 
     | 
| 
       553 
     | 
    
         
            -
             
     | 
| 
       554 
     | 
    
         
            -
            i 
     | 
| 
       555 
     | 
    
         
            -
            read0i:sizeofcounti;�i;Gi;�i:list_pop_taildli:
         
     | 
| 
       556 
     | 
    
         
            -
            sqrtni:	freei:
         
     | 
| 
       557 
     | 
    
         
            -
            sum10i;�i	:	origi:
         
     | 
| 
       558 
     | 
    
         
            -
            livali;%i:	azbzi:181102i:newtreenodenuli:	infoi:newlini	:memsetreplii:forwardi;�i;�i:/?i:
         
     | 
| 
       559 
     | 
    
         
            -
            i
         
     | 
| 
       560 
     | 
    
         
            -
            :mn0i:their_addri:
         
     | 
| 
       561 
     | 
    
         
            -
            buf32i;�
         
     | 
| 
       562 
     | 
    
         
            -
            i:ackermanngcc2gccvi:mallocblksi:181123i;ki:sizeofperm1i:(++i
         
     | 
| 
       563 
     | 
    
         
            -
            ;i;�i:headvali	;�i
         
     | 
| 
       564 
     | 
    
         
            -
            :
         
     | 
| 
       565 
     | 
    
         
            -
            colini;>i:gmembersii:meetingspi:
         
     | 
| 
       566 
     | 
    
         
            -
            pidsii	:temp_list_counti:onebytehashi:compose_rctx_ti;mi:161024i;Ji;?i:strlenstuffi:itotalstrlenbufferitoti;�i
         
     | 
| 
       567 
     | 
    
         
            -
            :colorsstarting_colorsii:ti1i:i121rni;�
         
     | 
| 
       568 
     | 
    
         
            -
            i
         
     | 
| 
       569 
     | 
    
         
            -
            :nullifii:sizeofpermi:	aiaki;2i;�i:onci;Vi:
         
     | 
| 
       570 
     | 
    
         
            -
            datari:freearii;�i:	tmp1i;�i:
         
     | 
| 
       571 
     | 
    
         
            -
            i:mallocwordbufsi:failedni
         
     | 
| 
       572 
     | 
    
         
            -
            :aidi;4i:	axbxi;�i:unsigniD:ljprevi:betweeni
         
     | 
| 
       573 
     | 
    
         
            -
            pids4i;_i�:temp_listnni:composi:
         
     | 
| 
       574 
     | 
    
         
            -
            sjnumi:rei;�i-;�i:
         
     | 
| 
       575 
     | 
    
         
            -
            didpri	:kmediani;Yi
         
     | 
| 
       576 
     | 
    
         
            -
            datali:make_vecdoubli;Vi
         
     | 
| 
       577 
     | 
    
         
            -
            ;�i:\\(])"i:whileni:kmediannumi:wordbufi:sizeofchari:cmy_colori:ssei:dotveci;�i:bottomuptreelongi;li;�i):btestprimi;i:characti:closecsocki:'assertpthread_createworkersithreadi:
         
     | 
| 
       578 
     | 
    
         
            -
            pqqqqi;�i:
         
     | 
| 
       579 
     | 
    
         
            -
            ctx_ti;si:switchi
         
     | 
| 
       580 
     | 
    
         
            -
            sinumi:offset_momentuminti:strendi	:sched_setscheduler0i:.whilefgets_unlockedbufferitotal10239stdini:csii:
         
     | 
| 
       581 
     | 
    
         
            -
            nbytei:
         
     | 
| 
       582 
     | 
    
         
            -
            everii:">.*|\i:
         
     | 
| 
       583 
     | 
    
         
            -
            :	0x01i	:attempti;]i:creatures3colori;�i;9i:080921i:
         
     | 
| 
       584 
     | 
    
         
            -
            :
         
     | 
| 
       585 
     | 
    
         
            -
            ndkeii;�i:callocsizeofchari:"pthread_mutex_initprint_mutexi:ifislessequaltri:'printfsfgets_unlockedbuffer61stdini:bottomuptreebisarray0i:nreplii;�i:
         
     | 
| 
       586 
     | 
    
         
            -
            :cell_group_count2i:intnumi;�i:sqrtvarianci:
         
     | 
| 
       587 
     | 
    
         
            -
            indexi:
         
     | 
| 
       588 
     | 
    
         
            -
            studii:scaledoubli:itemchecktreerighti:	isizi:');i:cliaddri:accumulate_probi:sysabortserverwriti;i
         
     | 
| 
       589 
     | 
    
         
            -
            :$mallocsizeofffmcachesizeofintnni;qi:
         
     | 
| 
       590 
     | 
    
         
            -
            kerrii;�i	:digits101i;�i:
         
     | 
| 
       591 
     | 
    
         
            -
            sistri	:energyinti;�i;�i	:strbufi:",'>',i:fastagccvi:sem_initsem_printi:twozrvzivi:itotal0forward0end0i:pow2depth1i:theirfdi:fpui
         
     | 
| 
       592 
     | 
    
         
            -
            aligni:ndigiti
         
     | 
| 
       593 
     | 
    
         
            -
            ;=i	:memsetsin0sizeofsini;�i:bobi;�i	:
         
     | 
| 
      
 1484 
     | 
    
         
            +
            ndkeii;"i:
         
     | 
| 
      
 1485 
     | 
    
         
            +
            :181002i:sphere_newi;2i:
         
     | 
| 
      
 1486 
     | 
    
         
            +
            ;oi;�i;2i;k$i;2i:hashmanipfnwordbufi;2i:exceptgccvi:
         
     | 
| 
      
 1487 
     | 
    
         
            +
            ;ui;�i:
         
     | 
| 
      
 1488 
     | 
    
         
            +
            livali;)i-:ackmn1i;0i
         
     | 
| 
      
 1489 
     | 
    
         
            +
            :sizeofstructi
         
     | 
| 
      
 1490 
     | 
    
         
            +
            :fwritebufi:*);i	:printfoffseti;(2i:returnsinsin_porti:thisactivi	:isquareffmpm_counti;Li:
         
     | 
| 
       594 
1491 
     | 
    
         
             
            moraii
         
     | 
| 
       595 
     | 
    
         
            -
             
     | 
| 
       596 
     | 
    
         
            -
             
     | 
| 
       597 
     | 
    
         
            -
             
     | 
| 
       598 
     | 
    
         
            -
             
     | 
| 
       599 
     | 
    
         
            -
             
     | 
| 
       600 
     | 
    
         
            -
             
     | 
| 
       601 
     | 
    
         
            -
             
     | 
| 
       602 
     | 
    
         
            -
             
     | 
| 
       603 
     | 
    
         
            -
             
     | 
| 
       604 
     | 
    
         
            -
             
     | 
| 
       605 
     | 
    
         
            -
             
     | 
| 
       606 
     | 
    
         
            -
             
     | 
| 
       607 
     | 
    
         
            -
             
     | 
| 
       608 
     | 
    
         
            -
             
     | 
| 
       609 
     | 
    
         
            -
             
     | 
| 
       610 
     | 
    
         
            -
             
     | 
| 
       611 
     | 
    
         
            -
             
     | 
| 
       612 
     | 
    
         
            -
             
     | 
| 
       613 
     | 
    
         
            -
             
     | 
| 
       614 
     | 
    
         
            -
             
     | 
| 
       615 
     | 
    
         
            -
             
     | 
| 
       616 
     | 
    
         
            -
             
     | 
| 
       617 
     | 
    
         
            -
             
     | 
| 
       618 
     | 
    
         
            -
            i 
     | 
| 
       619 
     | 
    
         
            -
             
     | 
| 
       620 
     | 
    
         
            -
             
     | 
| 
       621 
     | 
    
         
            -
             
     | 
| 
       622 
     | 
    
         
            -
             
     | 
| 
       623 
     | 
    
         
            -
             
     | 
| 
       624 
     | 
    
         
            -
             
     | 
| 
       625 
     | 
    
         
            -
            i 
     | 
| 
       626 
     | 
    
         
            -
             
     | 
| 
       627 
     | 
    
         
            -
             
     | 
| 
       628 
     | 
    
         
            -
             
     | 
| 
       629 
     | 
    
         
            -
            i 
     | 
| 
       630 
     | 
    
         
            -
             
     | 
| 
       631 
     | 
    
         
            -
             
     | 
| 
       632 
     | 
    
         
            -
             
     | 
| 
       633 
     | 
    
         
            -
             
     | 
| 
       634 
     | 
    
         
            -
             
     | 
| 
       635 
     | 
    
         
            -
             
     | 
| 
       636 
     | 
    
         
            -
             
     | 
| 
       637 
     | 
    
         
            -
             
     | 
| 
       638 
     | 
    
         
            -
             
     | 
| 
       639 
     | 
    
         
            -
             
     | 
| 
       640 
     | 
    
         
            -
             
     | 
| 
       641 
     | 
    
         
            -
             
     | 
| 
       642 
     | 
    
         
            -
             
     | 
| 
       643 
     | 
    
         
            -
             
     | 
| 
       644 
     | 
    
         
            -
             
     | 
| 
       645 
     | 
    
         
            -
             
     | 
| 
       646 
     | 
    
         
            -
             
     | 
| 
       647 
     | 
    
         
            -
             
     | 
| 
       648 
     | 
    
         
            -
             
     | 
| 
       649 
     | 
    
         
            -
             
     | 
| 
       650 
     | 
    
         
            -
             
     | 
| 
       651 
     | 
    
         
            -
             
     | 
| 
       652 
     | 
    
         
            -
             
     | 
| 
       653 
     | 
    
         
            -
             
     | 
| 
       654 
     | 
    
         
            -
             
     | 
| 
       655 
     | 
    
         
            -
             
     | 
| 
       656 
     | 
    
         
            -
             
     | 
| 
       657 
     | 
    
         
            -
             
     | 
| 
       658 
     | 
    
         
            -
             
     | 
| 
       659 
     | 
    
         
            -
             
     | 
| 
       660 
     | 
    
         
            -
             
     | 
| 
       661 
     | 
    
         
            -
             
     | 
| 
       662 
     | 
    
         
            -
             
     | 
| 
       663 
     | 
    
         
            -
             
     | 
| 
       664 
     | 
    
         
            -
             
     | 
| 
       665 
     | 
    
         
            -
             
     | 
| 
       666 
     | 
    
         
            -
             
     | 
| 
       667 
     | 
    
         
            -
             
     | 
| 
       668 
     | 
    
         
            -
             
     | 
| 
      
 1492 
     | 
    
         
            +
            :
         
     | 
| 
      
 1493 
     | 
    
         
            +
            sistri	:
         
     | 
| 
      
 1494 
     | 
    
         
            +
            i:exit13i:kn1i:stdc99i: run_the_meetingsfirst_generi:sizeofcstacki:squaregetcolumnsquari;�i): bottomuptreebisarrayindex22i;z i:mallocsizeofstructi;bi;�"i:	]...i:zetasum_veczetai;i;z'i;Bi,;�.i:itotalstrlenbufferitoti;3i;�*i�:lj1i:spherevecxi:ackm1ni:bindsockfdi;�i:objinstgccvi:reallocbufi;N2i:sysabortservergetsocknami:toggle_valui:squareffmii;i:peixotoi:
         
     | 
| 
      
 1495 
     | 
    
         
            +
            ndvali	;i:mpz_initcwi:matoichari:p1ii;�i�:z16i:
         
     | 
| 
      
 1496 
     | 
    
         
            +
            :	herfi;^i
         
     | 
| 
      
 1497 
     | 
    
         
            +
            ;�$i:isspacecpi:\\(])"i:__attribute__puri:mallocmaxlini:luni;Wi:
         
     | 
| 
      
 1498 
     | 
    
         
            +
            ;�i:cplinei:"(?:^|[^\\i;%i:
         
     | 
| 
      
 1499 
     | 
    
         
            +
            ovecsi:	errxi
         
     | 
| 
      
 1500 
     | 
    
         
            +
            ;�i
         
     | 
| 
      
 1501 
     | 
    
         
            +
            :_isoc99_sourci:list_push_taildli;�i:	ack1i:exit12i;�i;
         
     | 
| 
      
 1502 
     | 
    
         
            +
            read0i:sizeofsini;i:fb_countmatchesfbuf_ti:squareffmpm_counti:
         
     | 
| 
      
 1503 
     | 
    
         
            +
            pmaski;&i:064203i:scene_newi
         
     | 
| 
      
 1504 
     | 
    
         
            +
            :newlefti;^i
         
     | 
| 
      
 1505 
     | 
    
         
            +
            :	--);i:mallocwordbufsize1i:ki1i:nmatchi
         
     | 
| 
      
 1506 
     | 
    
         
            +
            ;�i:yannicki;
         
     | 
| 
      
 1507 
     | 
    
         
            +
            pqqqqi:number_of_meetings_to_runi	;Bi:getcontextcctxi:
         
     | 
| 
      
 1508 
     | 
    
         
            +
            baueri:itotal0forward0end0i;Ii:stringhi;_i
         
     | 
| 
      
 1509 
     | 
    
         
            +
            1flipi:
         
     | 
| 
      
 1510 
     | 
    
         
            +
            coskdi:	ifiki:ifwordbufi:matchoffseti;�2i;Gi
         
     | 
| 
      
 1511 
     | 
    
         
            +
            ;%i;>i:returnheadnexti:
         
     | 
| 
      
 1512 
     | 
    
         
            +
            pickmi:
         
     | 
| 
      
 1513 
     | 
    
         
            +
            msse3i:
         
     | 
| 
      
 1514 
     | 
    
         
            +
            12341i:scalelambdai;�i:
         
     | 
| 
      
 1515 
     | 
    
         
            +
            putcni;i:index_biti::returngenericsockportsockaction_pconnectclientconnecti;3i;}i:
         
     | 
| 
      
 1516 
     | 
    
         
            +
            i:newtreenodetreenodi:charlii;i:wcgccvi;Ki:
         
     | 
| 
      
 1517 
     | 
    
         
            +
            ifaibi:mallocwordbufsi:
         
     | 
| 
      
 1518 
     | 
    
         
            +
            pidsii	;�i:list_firstdli:
         
     | 
| 
      
 1519 
     | 
    
         
            +
            pickii;�%i:htonsport_numbi:first_generationnumber1i:thread_tvoidi;%3i:inittreenodetreenodi:highest_candidi:
         
     | 
| 
      
 1520 
     | 
    
         
            +
            :psumflinti;i
         
     | 
| 
      
 1521 
     | 
    
         
            +
            yt_mpi:strbufbuflenstrendi:gcc342i:rayaddrorigi;�i;�i:mallocsize1i:htonsporti:flagsindex_inti:fwritespos1linestdouti:client_socki:toggle_activatetoggli;�i:
         
     | 
| 
      
 1522 
     | 
    
         
            +
            10240i	;�i:mpz_init_set_uicqi;�i:readervi;?	i;�i�;�i;Si:bidi:
         
     | 
| 
      
 1523 
     | 
    
         
            +
            nzeroi;�+i:scene_objectti;i;*%i	;|#i	;�i:
         
     | 
| 
      
 1524 
     | 
    
         
            +
            ifajbi;�ix:
         
     | 
| 
      
 1525 
     | 
    
         
            +
            bsizei
         
     | 
| 
      
 1526 
     | 
    
         
            +
            pids4i;ci
         
     | 
| 
      
 1527 
     | 
    
         
            +
            :thread_contexti:num256i:randomgccvi;�i;�i:returnlist_lengthheadi;`i	;i�:servaddrsin_porti:pickline_length1i:spell_the_number1i:create_threadsstructi;R3i:
         
     | 
| 
      
 1528 
     | 
    
         
            +
            pironi:cur_acci:
         
     | 
| 
      
 1529 
     | 
    
         
            +
            antili;�"i:other_critteridi;h3i:0xffffli:_tscene_objecti:structi�:eofi:pthread_joincthreadi;D%i:fibunsigni:
         
     | 
| 
      
 1530 
     | 
    
         
            +
            ajtmpi;n3i
         
     | 
| 
      
 1531 
     | 
    
         
            +
            ;-i:
         
     | 
| 
      
 1532 
     | 
    
         
            +
            12340i:list_emptydli;�i:servaddrsin_addrs_addri;i:
         
     | 
| 
      
 1533 
     | 
    
         
            +
            t_mpxi;�/i;�3i;Di:my_addrsin_familii:
         
     | 
| 
      
 1534 
     | 
    
         
            +
            lenpoi:toggle_valuetoggli:reversefilegcc2gccvi:+genericsock0sockaction_pbindserverbindi:squareffmpm_countnn1i:	m0poi:cdigiti;�3i;i�;�3i;/i:bmy_colori:	v4sii:05ri:typedefi2:_tgroupi:
         
     | 
| 
      
 1535 
     | 
    
         
            +
            voidii:
         
     | 
| 
      
 1536 
     | 
    
         
            +
            ]=='\i	;�3i;�i;�3i:ackermanngcc3gccvi;Ai(:inclusi;�3i:perrorsetsockopti:count4i:minline_leni:ctxi:destroii;�i:$mallocsizeofffmcachesizeofintnni:srcleni:printf10stdni:9fni:
         
     | 
| 
      
 1537 
     | 
    
         
            +
            mathhi:
         
     | 
| 
      
 1538 
     | 
    
         
            +
            sinkdi;�i:
         
     | 
| 
      
 1539 
     | 
    
         
            +
            tmpaii;�im;�i
         
     | 
| 
      
 1540 
     | 
    
         
            +
            cvalui:charpji:sem_postsem_printi:*),i:
         
     | 
| 
      
 1541 
     | 
    
         
            +
            xchxyi;�/i:
         
     | 
| 
      
 1542 
     | 
    
         
            +
            sleepi:	cptri;�i:creatures4i;�i;�i:pthread_mutex_lockmutexi	:nestedloopgccvi:memsetservaddri;�i:cnextvalui:xtabunsigni:starting_colorsii;�&i:binarytrees2ci:ret_pm_counti	:fibregisti:used_hash_counti	:161024i:ht_destroyht1i:printf9ftsnnumnami;�i:callocsizeofchari;�i;�i;�3i:pidsncreaturi;�,i;�3i:intersectlambdai:perrorsocketi:repeat_fastai:index_bitmaskii:valuestructi:
         
     | 
| 
      
 1543 
     | 
    
         
            +
            headdi: sysabortactionexceptiontexti:!squaregetfewestmovesptrsquari:pcre_execri:6kii:
         
     | 
| 
      
 1544 
     | 
    
         
            +
            sum10i;f!i:
         
     | 
| 
      
 1545 
     | 
    
         
            +
            paoloi:buffer0i:cidi:
         
     | 
| 
      
 1546 
     | 
    
         
            +
            insidi:returnleni;�i:$pthread_attr_setstackstack_attri:ajbi:handleinputfili:waitstatui;� i:meetings_of_four_creaturi;&i;�i:dlli%;9i:pthread_joint2i;vi
         
     | 
| 
      
 1547 
     | 
    
         
            +
            lprevi:igni;�i;i:make_cumuli;�i%:stdin_filenoi:sinsocklen_tsizeofsini:ret_pmlocal_pm_countii;wi	:strlenri:pthread_joini:generate_frequi;i:prdigitctx_ti;Ti;�i:maxdigits1i;:i:prmtsri;Ii�:cmy_colori:freeli3i:dbl_maxi;"i!;!i;�i: pthread_attr_initstack_attri;�%i:aibi;�i;Bi;!i;�i;�i;�i:pthread_joint1i;i	:ipproto_tcpi:lo1i:bodies0i:stackstack_si:
         
     | 
| 
      
 1548 
     | 
    
         
            +
            nextci:foo_9999vali:
         
     | 
| 
      
 1549 
     | 
    
         
            +
            twokvi;�(i
         
     | 
| 
      
 1550 
     | 
    
         
            +
            lnexti:gboundi
         
     | 
| 
      
 1551 
     | 
    
         
            +
            :ifchild_pidi;�i:index_bi:headleni:
         
     | 
| 
      
 1552 
     | 
    
         
            +
            powkdi;1i;�i:while1i;)!i:	loosi;�i;i
         
     | 
| 
      
 1553 
     | 
    
         
            +
            ;�i:pthread_createt2i:ackdecl43i:memsetreplii;i
         
     | 
| 
      
 1554 
     | 
    
         
            +
            :offset_momentumi:aidi:ucontext_ti;�i	:%__builtin_memmovenewstoppqstoppri:sched_fifoi:count0i;f4i:comparatorconsti:
         
     | 
| 
      
 1555 
     | 
    
         
            +
            ;�.i
         
     | 
| 
      
 1556 
     | 
    
         
            +
            ;$i;#i	:bytesni:squareprintcur_squari;�4i;5i
         
     | 
| 
      
 1557 
     | 
    
         
            +
            :memeetingspi;�i;�i	:perrorpthread_cri:ackdecl32i;_i	:mallocbuffer_si:071507i:genelist0ci;�4i:pqstopxi:sched_setscheduler0i:stack_sizi:squareemptycountptrsquari;�4i:fibfpdoubli:comparestructi:ht_findht1i;�i:kvkvonei;'i;Gi:ifxi;m-i:	areki:creatures0colori;�i:
         
     | 
| 
      
 1558 
     | 
    
         
            +
            exit0i:ilowest_candidi:pcre_compilepi:tabcolorii:080921i;�4i/:mpz_addcvi;Ki;ri6:
         
     | 
| 
      
 1559 
     | 
    
         
            +
            :cthreadi;&i:spellcheckgccvi;:i:
         
     | 
| 
      
 1560 
     | 
    
         
            +
            i:
         
     | 
| 
      
 1561 
     | 
    
         
            +
            nodevi:
         
     | 
| 
      
 1562 
     | 
    
         
            +
            kvtwoi:strcatgccvi;)i
         
     | 
| 
      
 1563 
     | 
    
         
            +
            ;�i;^i:creaturesncreaturi:putcbyte_accstdouti	:printfvali;�4i;�i	:hostenti:global_lasti;�+i;�i:sinsin_addrs_addri:main_inboxni:	rleni:
         
     | 
| 
      
 1564 
     | 
    
         
            +
            :	wichi:squarequeuemergequeui;!i;i	:perrorpthread_cond_initi:8uni	:ackdecl10i;�i;5	i:selectrandomi;�iA;�
         
     | 
| 
      
 1565 
     | 
    
         
            +
            i;�i:	qqqxi:sem_initsem_printi:	gibbi:__attribute__consti
         
     | 
| 
      
 1566 
     | 
    
         
            +
            ;�i: squarenumberpresentptrsquari:
         
     | 
| 
      
 1567 
     | 
    
         
            +
            headni:unitiseaddrorigi:
         
     | 
| 
      
 1568 
     | 
    
         
            +
            nbytei:
         
     | 
| 
      
 1569 
     | 
    
         
            +
            re_eoi	;�.i:)temp_highest_candidatehighest_candidi:ctypehi:mpz_addcui;�i:ndigiti
         
     | 
| 
      
 1570 
     | 
    
         
            +
            :n4ni;�!i;_i:iubcomplementstrandii:sem_postat_most_twoi	:ifislessequaltri:--,i;�i:list_lastli2vi:
         
     | 
| 
      
 1571 
     | 
    
         
            +
            datari:fputs_unlocki;i
         
     | 
| 
      
 1572 
     | 
    
         
            +
            i:cliaddr_leni;Hi:sem_initsem_privi:
         
     | 
| 
      
 1573 
     | 
    
         
            +
            colini:ackregisti:
         
     | 
| 
      
 1574 
     | 
    
         
            +
            :printflasti:nreplii:
         
     | 
| 
      
 1575 
     | 
    
         
            +
            minabi:m3dnowi:
         
     | 
| 
      
 1576 
     | 
    
         
            +
            ;wi:!(i;�i	:
         
     | 
| 
      
 1577 
     | 
    
         
            +
            ifdoni:twozrvzivi;Ui;R
         
     | 
| 
      
 1578 
     | 
    
         
            +
            datali;iA:pow2030i;%i/:sysabortserverwriti;�i:printf09fnsqrtvbvvvi:maxlini;�i;�"i;�i:successor_nodi:perrorpthread_mutex_initi;|iz:
         
     | 
| 
      
 1579 
     | 
    
         
            +
            ++)];i;i	:cliaddri:pqxi;xi:sem_initmutexi;�i:liti:intarraycount0sinti:next_chainnext_hashnalphai:nodeht_nextht1i:sizeofpermi;�i:getchari	:
         
     | 
| 
      
 1580 
     | 
    
         
            +
            re_exi;{i:	atoii:061749i;�i:temp_lowest_candidi:extractctx_ti;�i:	++;}i;�i:	prmti;�i:
         
     | 
| 
      
 1581 
     | 
    
         
            +
            dataii:onebytehashi:nodeht_firstht1i;^5i	;�i:
         
     | 
| 
      
 1582 
     | 
    
         
            +
            :	yes1i:funrollallloopi;�&i:
         
     | 
| 
      
 1583 
     | 
    
         
            +
            msse2i:sysabortsetsockopti:
         
     | 
| 
      
 1584 
     | 
    
         
            +
            currdi:pcre_extrai:
         
     | 
| 
      
 1585 
     | 
    
         
            +
            :
         
     | 
| 
      
 1586 
     | 
    
         
            +
            :intnumi;di:outbufi:myabortserversigchldi;i:	aiaki:vbvuivii;�%i:
         
     | 
| 
      
 1587 
     | 
    
         
            +
            consti=;Pi:queuenexti;�i:]^=i;�i1;i;}5i;<i:	conni;�i:makecumuli:	rslti;ai:adji:)",i:deletetreetemptrei:intarraysuminti;�i;i:ht_find_newht1i;�5i
         
     | 
| 
      
 1588 
     | 
    
         
            +
            ;i:freenumi;hi:
         
     | 
| 
      
 1589 
     | 
    
         
            +
            :sizeofoptvi:'assertpthread_createworkersithreadi:	iveci	:fb_substfbuf_ti;�5i:theargs324i:temp_highest_candidi;?#i:mpz_mul_sicqi;-i;�i;�i;�,i:sizeofiobufi:
         
     | 
| 
      
 1590 
     | 
    
         
            +
            perm2i:other_critti
         
     | 
| 
      
 1591 
     | 
    
         
            +
            :islessequi:strandii:
         
     | 
| 
      
 1592 
     | 
    
         
            +
            char5i;ri5:
         
     | 
| 
       669 
1593 
     | 
    
         
             
            wrongi
         
     | 
| 
       670 
     | 
    
         
            -
             
     | 
| 
       671 
     | 
    
         
            -
            : 
     | 
| 
       672 
     | 
    
         
            -
            :	iveci	:some_functionni:waiting_creature_pcolori:new_squareunusedffmpmi10i;hi:pcre_execri:
         
     | 
| 
       673 
     | 
    
         
            -
            mathhi:]^=i:xpprevvali;`i;�i:vimi:-(i:	aluni:*,i
         
     | 
| 
       674 
     | 
    
         
            -
            :'-i:workeri
         
     | 
| 
       675 
     | 
    
         
            -
            :
         
     | 
| 
       676 
     | 
    
         
            -
            nwsppi:zetasum_veczetai:atoiargvargc1i:
         
     | 
| 
       677 
     | 
    
         
            -
            :	curri:hi_functionni:
         
     | 
| 
       678 
     | 
    
         
            -
            32biti:
         
     | 
| 
       679 
     | 
    
         
            -
            :some_functi;3i9:new_squaregridffmxffmyni:pcre_studyri:creature_pcolori:acounti:returnmi:
         
     | 
| 
       680 
     | 
    
         
            -
            :	jcoli;8i
         
     | 
| 
       681 
     | 
    
         
            -
            :strandi	:
         
     | 
| 
       682 
     | 
    
         
            -
            inteli:
         
     | 
| 
       683 
     | 
    
         
            -
            pareni:output_so_fari:	p3dni:randomgccvi:181040i;�i:
         
     | 
| 
       684 
     | 
    
         
            -
            '>'",i:fwritebufi;�i%;1i:
         
     | 
| 
       685 
     | 
    
         
            -
            inboxi	:reallocqqqi:sprintfmbufi;�i:cur_acci1i:takfpdoubli;�i;�
         
     | 
| 
       686 
     | 
    
         
            -
            unioni;�i:doubletrvi;Xi:	resti:list_pop_tailli3i:intersectlambdai:blksizei;ni:#fputsntogactivatentogvaluentogi:mallocsizeofnthtoggli:rev_printi:lo_functionni:lineari:squarenewcopysquari:pcre_caselessi:pthread_mutex_unlocki:bcounti:ackinti:	(">%i:mpz_initcui:overridi:smki;?i:malloccoli;�i:inplacereversi:fprintfstderri:freesquari:ifndefi:tabcolorii:memsettheir_addrsin_zeroi:
         
     | 
| 
       687 
     | 
    
         
            -
            ack0ni:heapsortgccvi;i:array_si	:unvnvbvvvi;�i:gp4i;3i:string_lengthi:n3di:^=i:icci;Mi:,/i;
         
     | 
| 
       688 
     | 
    
         
            -
            i;�i:thread_stack_si:newptri:mbuf128i;Di:ifsquareunusedii;�i:takinti:one_creaturi:vect_counti	:	argcin:ctypehi:psumharmoni:
         
     | 
| 
       689 
     | 
    
         
            -
            *****i;�i:memsetflagi:asserthi:strcmpobufi:i2highest_zero_counti:fibfpdoubli:meetings_limit_reachi;Wip:	buffi:2bufleni:Qhttpaliothdebianorgpluginsscmcvscvswebphpshootoutbenchincludecvsrootshootouti:psumcooksoni:maininti3:ht_destroydicti;�i;�i:doublecrvi:sncolorsicolorsji:061749i:list_emptyli3i:gboundi
         
     | 
| 
       690 
     | 
    
         
            -
            :
         
     | 
| 
       691 
     | 
    
         
            -
            :#sort_arrayicountsort_arrayistri:'-'i:mpz_init_set_ui;"i:
         
     | 
| 
       692 
     | 
    
         
            -
            coskdi;Ni:eval_at_times_unvataui:permkki;�i	:ffastmathi:spell_the_numberinti:printfi3di:pthread_cond_waitcontroli:	facti;2	i:binarytreesci:printf1fni:]!\i:bufline_len1i:sizeofbooleani:newstopi:sysabortclientreadi:
         
     | 
| 
       693 
     | 
    
         
            -
            chiewi:
         
     | 
| 
       694 
     | 
    
         
            -
            ;i:fibinti;`	i;�i:nwscnti;ei;]i;,i;�i;�	i:n33i:exit_failuri:xcngpkli;�
         
     | 
| 
       695 
     | 
    
         
            -
            davidi:fputsni:p_lohnexti:blowupni;�i{;�i
         
     | 
| 
       696 
     | 
    
         
            -
            re_eoi	:printf7dtsni:+((i:mpz_init_set_uicri;7i:goi:kn1i;3i":iubpairsi1i:socklen_ti:mallocrowi:squarefreeptrsquari;q	i:their_addrsin_addri:ht_destroyht2i:glueackexpandmi:eval_a_times_unuvi:jpermki;�
         
     | 
| 
       697 
     | 
    
         
            -
            i7;ai
         
     | 
| 
       698 
     | 
    
         
            -
            exit4i	:machini:xpxnexti:pthread_mutex_lockmutexi	:funrollloopi
         
     | 
| 
       699 
     | 
    
         
            -
            ;�
         
     | 
| 
       700 
     | 
    
         
            -
            resizi:offset1i:1e6i;�i:i20i:3fni:__attribute__consti
         
     | 
| 
      
 1594 
     | 
    
         
            +
            ;�i:threadvoidi;�&i
         
     | 
| 
      
 1595 
     | 
    
         
            +
            :setvbufstdouti;h*i:sizeofbufi;�i:kmediani:vbvvv0i:voidpmi:cur_squari;7i
         
     | 
| 
       701 
1596 
     | 
    
         
             
            :
         
     | 
| 
       702 
     | 
    
         
            -
             
     | 
| 
       703 
     | 
    
         
            -
             
     | 
| 
       704 
     | 
    
         
            -
             
     | 
| 
       705 
     | 
    
         
            -
             
     | 
| 
       706 
     | 
    
         
            -
             
     | 
| 
       707 
     | 
    
         
            -
             
     | 
| 
       708 
     | 
    
         
            -
             
     | 
| 
       709 
     | 
    
         
            -
             
     | 
| 
       710 
     | 
    
         
            -
            i 
     | 
| 
       711 
     | 
    
         
            -
             
     | 
| 
       712 
     | 
    
         
            -
             
     | 
| 
       713 
     | 
    
         
            -
             
     | 
| 
       714 
     | 
    
         
            -
             
     | 
| 
       715 
     | 
    
         
            -
             
     | 
| 
       716 
     | 
    
         
            -
             
     | 
| 
       717 
     | 
    
         
            -
             
     | 
| 
       718 
     | 
    
         
            -
             
     | 
| 
       719 
     | 
    
         
            -
             
     | 
| 
       720 
     | 
    
         
            -
            i 
     | 
| 
       721 
     | 
    
         
            -
             
     | 
| 
       722 
     | 
    
         
            -
             
     | 
| 
       723 
     | 
    
         
            -
             
     | 
| 
       724 
     | 
    
         
            -
             
     | 
| 
       725 
     | 
    
         
            -
             
     | 
| 
       726 
     | 
    
         
            -
             
     | 
| 
       727 
     | 
    
         
            -
             
     | 
| 
       728 
     | 
    
         
            -
             
     | 
| 
       729 
     | 
    
         
            -
             
     | 
| 
       730 
     | 
    
         
            -
             
     | 
| 
       731 
     | 
    
         
            -
            : 
     | 
| 
       732 
     | 
    
         
            -
             
     | 
| 
       733 
     | 
    
         
            -
             
     | 
| 
       734 
     | 
    
         
            -
             
     | 
| 
       735 
     | 
    
         
            -
             
     | 
| 
       736 
     | 
    
         
            -
             
     | 
| 
       737 
     | 
    
         
            -
             
     | 
| 
       738 
     | 
    
         
            -
             
     | 
| 
       739 
     | 
    
         
            -
             
     | 
| 
       740 
     | 
    
         
            -
             
     | 
| 
       741 
     | 
    
         
            -
             
     | 
| 
       742 
     | 
    
         
            -
             
     | 
| 
       743 
     | 
    
         
            -
            i 
     | 
| 
       744 
     | 
    
         
            -
             
     | 
| 
       745 
     | 
    
         
            -
             
     | 
| 
       746 
     | 
    
         
            -
             
     | 
| 
       747 
     | 
    
         
            -
             
     | 
| 
       748 
     | 
    
         
            -
             
     | 
| 
       749 
     | 
    
         
            -
             
     | 
| 
       750 
     | 
    
         
            -
            i 
     | 
| 
       751 
     | 
    
         
            -
             
     | 
| 
       752 
     | 
    
         
            -
             
     | 
| 
       753 
     | 
    
         
            -
             
     | 
| 
       754 
     | 
    
         
            -
             
     | 
| 
       755 
     | 
    
         
            -
             
     | 
| 
       756 
     | 
    
         
            -
             
     | 
| 
       757 
     | 
    
         
            -
             
     | 
| 
       758 
     | 
    
         
            -
             
     | 
| 
       759 
     | 
    
         
            -
             
     | 
| 
       760 
     | 
    
         
            -
             
     | 
| 
       761 
     | 
    
         
            -
            i 
     | 
| 
       762 
     | 
    
         
            -
             
     | 
| 
       763 
     | 
    
         
            -
             
     | 
| 
       764 
     | 
    
         
            -
             
     | 
| 
       765 
     | 
    
         
            -
             
     | 
| 
       766 
     | 
    
         
            -
             
     | 
| 
       767 
     | 
    
         
            -
             
     | 
| 
       768 
     | 
    
         
            -
             
     | 
| 
       769 
     | 
    
         
            -
             
     | 
| 
       770 
     | 
    
         
            -
             
     | 
| 
       771 
     | 
    
         
            -
             
     | 
| 
       772 
     | 
    
         
            -
             
     | 
| 
       773 
     | 
    
         
            -
             
     | 
| 
       774 
     | 
    
         
            -
             
     | 
| 
       775 
     | 
    
         
            -
             
     | 
| 
       776 
     | 
    
         
            -
             
     | 
| 
       777 
     | 
    
         
            -
             
     | 
| 
       778 
     | 
    
         
            -
             
     | 
| 
       779 
     | 
    
         
            -
             
     | 
| 
       780 
     | 
    
         
            -
             
     | 
| 
       781 
     | 
    
         
            -
             
     | 
| 
       782 
     | 
    
         
            -
             
     | 
| 
       783 
     | 
    
         
            -
             
     | 
| 
       784 
     | 
    
         
            -
             
     | 
| 
       785 
     | 
    
         
            -
             
     | 
| 
       786 
     | 
    
         
            -
             
     | 
| 
       787 
     | 
    
         
            -
             
     | 
| 
       788 
     | 
    
         
            -
             
     | 
| 
       789 
     | 
    
         
            -
             
     | 
| 
       790 
     | 
    
         
            -
             
     | 
| 
       791 
     | 
    
         
            -
             
     | 
| 
       792 
     | 
    
         
            -
             
     | 
| 
       793 
     | 
    
         
            -
             
     | 
| 
       794 
     | 
    
         
            -
             
     | 
| 
       795 
     | 
    
         
            -
             
     | 
| 
       796 
     | 
    
         
            -
             
     | 
| 
       797 
     | 
    
         
            -
             
     | 
| 
       798 
     | 
    
         
            -
             
     | 
| 
       799 
     | 
    
         
            -
             
     | 
| 
       800 
     | 
    
         
            -
             
     | 
| 
       801 
     | 
    
         
            -
             
     | 
| 
       802 
     | 
    
         
            -
             
     | 
| 
       803 
     | 
    
         
            -
            i 
     | 
| 
       804 
     | 
    
         
            -
             
     | 
| 
       805 
     | 
    
         
            -
             
     | 
| 
       806 
     | 
    
         
            -
             
     | 
| 
       807 
     | 
    
         
            -
             
     | 
| 
       808 
     | 
    
         
            -
            i: 
     | 
| 
       809 
     | 
    
         
            -
             
     | 
| 
       810 
     | 
    
         
            -
             
     | 
| 
       811 
     | 
    
         
            -
             
     | 
| 
       812 
     | 
    
         
            -
            : 
     | 
| 
       813 
     | 
    
         
            -
             
     | 
| 
       814 
     | 
    
         
            -
            i 
     | 
| 
       815 
     | 
    
         
            -
             
     | 
| 
       816 
     | 
    
         
            -
             
     | 
| 
       817 
     | 
    
         
            -
             
     | 
| 
       818 
     | 
    
         
            -
             
     | 
| 
       819 
     | 
    
         
            -
             
     | 
| 
       820 
     | 
    
         
            -
             
     | 
| 
       821 
     | 
    
         
            -
             
     | 
| 
       822 
     | 
    
         
            -
             
     | 
| 
       823 
     | 
    
         
            -
             
     | 
| 
       824 
     | 
    
         
            -
             
     | 
| 
       825 
     | 
    
         
            -
             
     | 
| 
       826 
     | 
    
         
            -
             
     | 
| 
       827 
     | 
    
         
            -
             
     | 
| 
       828 
     | 
    
         
            -
             
     | 
| 
       829 
     | 
    
         
            -
             
     | 
| 
       830 
     | 
    
         
            -
             
     | 
| 
       831 
     | 
    
         
            -
             
     | 
| 
       832 
     | 
    
         
            -
             
     | 
| 
       833 
     | 
    
         
            -
            : 
     | 
| 
       834 
     | 
    
         
            -
            i 
     | 
| 
       835 
     | 
    
         
            -
             
     | 
| 
       836 
     | 
    
         
            -
             
     | 
| 
       837 
     | 
    
         
            -
             
     | 
| 
       838 
     | 
    
         
            -
             
     | 
| 
       839 
     | 
    
         
            -
             
     | 
| 
       840 
     | 
    
         
            -
             
     | 
| 
       841 
     | 
    
         
            -
             
     | 
| 
       842 
     | 
    
         
            -
             
     | 
| 
       843 
     | 
    
         
            -
             
     | 
| 
       844 
     | 
    
         
            -
             
     | 
| 
       845 
     | 
    
         
            -
             
     | 
| 
       846 
     | 
    
         
            -
             
     | 
| 
       847 
     | 
    
         
            -
             
     | 
| 
       848 
     | 
    
         
            -
            i 
     | 
| 
       849 
     | 
    
         
            -
             
     | 
| 
       850 
     | 
    
         
            -
             
     | 
| 
       851 
     | 
    
         
            -
             
     | 
| 
       852 
     | 
    
         
            -
             
     | 
| 
       853 
     | 
    
         
            -
             
     | 
| 
       854 
     | 
    
         
            -
             
     | 
| 
       855 
     | 
    
         
            -
             
     | 
| 
       856 
     | 
    
         
            -
             
     | 
| 
       857 
     | 
    
         
            -
             
     | 
| 
       858 
     | 
    
         
            -
             
     | 
| 
       859 
     | 
    
         
            -
             
     | 
| 
       860 
     | 
    
         
            -
             
     | 
| 
       861 
     | 
    
         
            -
             
     | 
| 
       862 
     | 
    
         
            -
            i 
     | 
| 
       863 
     | 
    
         
            -
             
     | 
| 
       864 
     | 
    
         
            -
             
     | 
| 
       865 
     | 
    
         
            -
             
     | 
| 
       866 
     | 
    
         
            -
            i 
     | 
| 
       867 
     | 
    
         
            -
             
     | 
| 
       868 
     | 
    
         
            -
            : 
     | 
| 
       869 
     | 
    
         
            -
             
     | 
| 
       870 
     | 
    
         
            -
             
     | 
| 
       871 
     | 
    
         
            -
             
     | 
| 
       872 
     | 
    
         
            -
             
     | 
| 
       873 
     | 
    
         
            -
            i 
     | 
| 
       874 
     | 
    
         
            -
            i 
     | 
| 
       875 
     | 
    
         
            -
             
     | 
| 
       876 
     | 
    
         
            -
             
     | 
| 
       877 
     | 
    
         
            -
             
     | 
| 
       878 
     | 
    
         
            -
             
     | 
| 
       879 
     | 
    
         
            -
             
     | 
| 
       880 
     | 
    
         
            -
             
     | 
| 
       881 
     | 
    
         
            -
             
     | 
| 
       882 
     | 
    
         
            -
             
     | 
| 
       883 
     | 
    
         
            -
             
     | 
| 
       884 
     | 
    
         
            -
             
     | 
| 
       885 
     | 
    
         
            -
             
     | 
| 
       886 
     | 
    
         
            -
             
     | 
| 
       887 
     | 
    
         
            -
            } 
     | 
| 
       888 
     | 
    
         
            -
             
     | 
| 
       889 
     | 
    
         
            -
             
     | 
| 
       890 
     | 
    
         
            -
             
     | 
| 
       891 
     | 
    
         
            -
             
     | 
| 
       892 
     | 
    
         
            -
             
     | 
| 
       893 
     | 
    
         
            -
             
     | 
| 
       894 
     | 
    
         
            -
             
     | 
| 
       895 
     | 
    
         
            -
             
     | 
| 
       896 
     | 
    
         
            -
             
     | 
| 
       897 
     | 
    
         
            -
             
     | 
| 
       898 
     | 
    
         
            -
             
     | 
| 
       899 
     | 
    
         
            -
             
     | 
| 
       900 
     | 
    
         
            -
             
     | 
| 
       901 
     | 
    
         
            -
             
     | 
| 
       902 
     | 
    
         
            -
             
     | 
| 
       903 
     | 
    
         
            -
             
     | 
| 
       904 
     | 
    
         
            -
             
     | 
| 
       905 
     | 
    
         
            -
             
     | 
| 
       906 
     | 
    
         
            -
             
     | 
| 
       907 
     | 
    
         
            -
             
     | 
| 
       908 
     | 
    
         
            -
             
     | 
| 
       909 
     | 
    
         
            -
            i 
     | 
| 
       910 
     | 
    
         
            -
             
     | 
| 
       911 
     | 
    
         
            -
             
     | 
| 
       912 
     | 
    
         
            -
             
     | 
| 
       913 
     | 
    
         
            -
             
     | 
| 
       914 
     | 
    
         
            -
             
     | 
| 
       915 
     | 
    
         
            -
             
     | 
| 
       916 
     | 
    
         
            -
             
     | 
| 
       917 
     | 
    
         
            -
             
     | 
| 
       918 
     | 
    
         
            -
             
     | 
| 
       919 
     | 
    
         
            -
             
     | 
| 
       920 
     | 
    
         
            -
             
     | 
| 
       921 
     | 
    
         
            -
             
     | 
| 
       922 
     | 
    
         
            -
             
     | 
| 
       923 
     | 
    
         
            -
             
     | 
| 
       924 
     | 
    
         
            -
            :
         
     | 
| 
       925 
     | 
    
         
            -
             
     | 
| 
       926 
     | 
    
         
            -
             
     | 
| 
       927 
     | 
    
         
            -
             
     | 
| 
       928 
     | 
    
         
            -
            i 
     | 
| 
       929 
     | 
    
         
            -
            luziui
         
     | 
| 
       930 
     | 
    
         
            -
            :systemarraycopymi:	staii:floor2i:	0x1ai:offsetfragmentlengthi; i
         
     | 
| 
       931 
     | 
    
         
            -
            :072700i:
         
     | 
| 
       932 
     | 
    
         
            -
            n_rowi:infiniti:initialisi:
         
     | 
| 
       933 
     | 
    
         
            -
            ;"i:	alkii
         
     | 
| 
       934 
     | 
    
         
            -
            ;�i:hasbadislandsinti:"40x00000000000060c2l1false715i;�i:	lofti:rewritesequi:notifii:	tonii:	()+"i:extractinti;Ni	;Si;�i:entryprevi	:416i;�i:javautilconcurri:boardtop_rowi:ifargslengthi:	ymini:thissymboli:raydiri;2	i:bottomuptree2item1i:javautillinkedlisti:recordsolutionsolni:"10x000000000000004fl0false803i:!nfsetminimumfractiondigits10i;yi;�i:	cmpdi:catchexcepti;ei;]i;,i;�i:!pidigitsintegerparseintargs0i:hashsetintegi	:pvxi
         
     | 
| 
       935 
     | 
    
         
            -
            n_coli/;Fi;�i:prodconi;7i:nsievemflagi;3i0:countonestofill0i:"00x00000000000011c8l3false759i:systemoutprintlnfibni:replacementsgetgroup0i:sufferi:starttime10000i:)+"i:bigintegervalueof2i;�i:
         
     | 
| 
       936 
     | 
    
         
            -
            :locksupportparki:stringbuffern_celi:	3newi:alugetbyti:systemoutprintftak302010i:illegalargumentexcepti:iftodoi:	trigi:	0x12i:fragmentlengthi
         
     | 
| 
       937 
     | 
    
         
            -
            ;�i:roti:max_island_offseti	;�i:replacealld1i:3httpjavasuncomdocsbookstutorialessentialthreadi;�i:pqoffernewsquari:systemoutprintfprimi:
         
     | 
| 
       938 
     | 
    
         
            -
            ncelli:152413110i:	fiboi:rewriterwykmsrbdvhni;�i	:"+(i;,i:bigintegervalueof0i;Zi;�i;�i�:llentrycurrvi:0xffffffff00000000li;�i;�i:taky10fzxi:fliptworowsinti:*0112233420x0000000000821084l2false539i:perm10ri:mincoli:subcenti;�i:bottomuptreeinti:	xmini:mattiai;�i:"40x0000000000043041l0false605i:numberformatgetinsti
         
     | 
| 
       939 
     | 
    
         
            -
            :recordsolutionm_cursolni;i:piece8i:	cmpki:dirusprogrammerneti;�i;>i:compose_r10i;�i;i:cellgroupsadddiagonal1i;`i;�i:whilemessagi:	alubi:fillinti;i:systemoutprintffib3i;�i:systemoutprintlnmeeti:mlengthi;Ci:	0x14i:calculatefrequenciesinti;�i;i	:setcoordlistveci:
         
     | 
| 
       940 
     | 
    
         
            -
            n_fixi;?i;
         
     | 
| 
       941 
     | 
    
         
            -
            i:newsquaregridindi:055010i:bytem1i:"00x0000000000061082l1false618i:fibojavavi:tofill0i;i:
         
     | 
| 
       942 
     | 
    
         
            -
            mfindi:newpairgetitemi:systemoutprintftimi:bigintegervalueof4i:
         
     | 
| 
       943 
     | 
    
         
            -
            ..");i;i:othernexti:0x00000000ffffffffli;li:systemoutprintlnvi:taktakx10fyzi:"50x00000000000c1041l0false604i:3rmathsqrt12i:permflipuntildoni:countonesinti:maxrowi:ray_sphereraii:
         
     | 
| 
       944 
     | 
    
         
            -
            i
         
     | 
| 
       945 
     | 
    
         
            -
            i:magicsquarespqnodetopsquari:
         
     | 
| 
       946 
     | 
    
         
            -
            razzii;`i:"00x0000000000002183l0false704i;
         
     | 
| 
       947 
     | 
    
         
            -
            shapei�:s_firstoneresulti;
         
     | 
| 
       948 
     | 
    
         
            -
            isleti:radiusri:treenodeinti;bi;Ei
         
     | 
| 
       949 
     | 
    
         
            -
            mmulti;
         
     | 
| 
       950 
     | 
    
         
            -
            i:
         
     | 
| 
       951 
     | 
    
         
            -
            0x08fi:pieceall_piece_maski:	stepi:	1110i:	cmpmi:echojavavi;�i;Oi:
         
     | 
| 
       952 
     | 
    
         
            -
            mdonei:halfpii:foundcounti:genorientationinti:	0x1ei;Pi:systemoutprintlnservi:162417i;�i;i:printsolutionslasti;Ni:
         
     | 
| 
       953 
     | 
    
         
            -
            +""))i:%systemoutprintlnstringformatprimi;�i:(01113240x00000000000009c4l2false748i:codelengthi;pi:currentsetitemnewi:linkedlistintegi:transformationbigintegi:	datei	:llentrii:0x0000ffff0000ffffli;�	i:	n20fi:"00x00000000000003d0l4false879i:
         
     | 
| 
       954 
     | 
    
         
            -
            regexi;,i!:perm1getn1i:s_firstoneresultlowi:
         
     | 
| 
       955 
     | 
    
         
            -
            mutati:centerci:longlivedtreeitemchecki;�i:introwscoli:)systemoutprintlnntoggle1activatevalui:
         
     | 
| 
       956 
     | 
    
         
            -
            0x187i;~i:heapsortjavavi:recordi:*0112233240x0000000000021884l2false649i:	cmpri;�i;ii:
         
     | 
| 
       957 
     | 
    
         
            -
            :1ipieci:
         
     | 
| 
       958 
     | 
    
         
            -
            populi:javaiooutputstreami:sm_cellsiji:	2112i;i:)>i:creaturesistarti:unsynchroni:
         
     | 
| 
       959 
     | 
    
         
            -
            twopii:,knucleotidefrequenciesgetnucleotidefragi;zi
         
     | 
| 
       960 
     | 
    
         
            -
            :%boardhasbadislandssinglepieceveci:	0x1ci;�
         
     | 
| 
       961 
     | 
    
         
            -
            :printsolutionsfirsti;�i	;�i:resultmovi;Hi:
         
     | 
| 
       962 
     | 
    
         
            -
            clampi:	6newi:rewritesbi:docomplimentci:tnextthreadi	:bigintegervalueofti;�i:
         
     | 
| 
       963 
     | 
    
         
            -
            size1i:resultlowi:171513110i:intersecthiti:systemoutprintlnlongi:bitmapi	:
         
     | 
| 
       964 
     | 
    
         
            -
            0x0a7i;V	i:
         
     | 
| 
       965 
     | 
    
         
            -
            recuri;�i:10x0000000000061041l0truei:	cmphi;i;i;�iX:
         
     | 
| 
       966 
     | 
    
         
            -
            tset1i:arraylistinti: bodies0offsetmomentumpxpypzi:'javautilconcurrentlockslocksupporti:javaioioexcepti
         
     | 
| 
       967 
     | 
    
         
            -
            :sm_celli;�i:"40x0000000000007042l1false715i:%=i:creaturecoloursii:nextthreadsendmdoni:mathpii;�i;�i:="i;�i:pm_veci:	0x18i:
         
     | 
| 
       968 
     | 
    
         
            -
            thispi:oddregioni:rewriternni:newcolouri	:bigintegervalueofi:whileti	;�i:li3sizi:0x00ff00ff00ff00ffli:superstart_sti;�i	:linetokenizernvi:systemoutprintlnperm1tostri:startpoi:"00x0000000000421082l1false528i:
         
     | 
| 
       969 
     | 
    
         
            -
            sset0i;�
         
     | 
| 
       970 
     | 
    
         
            -
            :bodieslengthi:	akini:systemarraycopym_celi:"00x0000000000003148l3false759i:systemoutprintffib1fi:*(-i:colourslengthi;Di":
         
     | 
| 
       971 
     | 
    
         
            -
            :xpoi
         
     | 
| 
       972 
     | 
    
         
            -
            :	0x10i:	batai;i:icounti;�i:
         
     | 
| 
       973 
     | 
    
         
            -
            n_dimi:prodconsjavavi:systemoutprintsolutionssi:resultxi:
         
     | 
| 
       974 
     | 
    
         
            -
            byteci:evenregioni:$0310x00000000000210c2l1false618i:
         
     | 
| 
       975 
     | 
    
         
            -
            thissi:
         
     | 
| 
       976 
     | 
    
         
            -
            0x0c7i:systemoutprintmm32i:valhash2getfoo_9999vi:hasbadislandsboardveci:"10x0000000000021184l2false638i:	cmpci;�i�:
         
     | 
| 
       977 
     | 
    
         
            -
            rset0i;i;�i	;=i
         
     | 
| 
       978 
     | 
    
         
            -
            :mathcoi:threadsend0i:nucleotidefragi:pm_offseti:	0x0fi:multiplyatavnvui:ilengthi	:deardeuffi:solutionslasti;�i:topsquarefindfewestmovi:
         
     | 
| 
       979 
     | 
    
         
            -
            thisci;�i:growthi:"40x00000000000020c3l0false705i:initiallengthi:newpairi	;i:bigintegervalueofri:systemoutprintlnli2i:0x0f0f0f0f0f0f0f0fli;ui	:linetokenizernexttokeni:permutationni	:towardi:
         
     | 
| 
       980 
     | 
    
         
            -
            42312i:lambdali;�i :
         
     | 
| 
       981 
     | 
    
         
            -
            iiteri
         
     | 
| 
       982 
     | 
    
         
            -
            0x465i;�i:systemoutprintmm23i:valhash2getfoo_1vi:allowedpiecevecipieceiorii:"20x0000000000041043l0false606i:	cmpgi;�i;}i�	:
         
     | 
| 
       983 
     | 
    
         
            -
            qset1i;oi:bodyuranui:1n_coli:possiblemovesinti:threadputhopcounti:spiecem_piecesii;Ai:"00x0000000000062082l1false617i;i:chameneosinti;gi;i	:071255i:mathsini;�i+:messagethreadstarti:writecountstri:posmaski
         
     | 
| 
       984 
     | 
    
         
            -
            ;Ji6:	0x0ei: socketclientgetoutputstreami:beni:multiplyatavnuvi:ftjavai:systemoutprintlnlasti:padnumbernsievemflagi;wi:magicsquaresffmresulti:frequencychari:trickii:"40x00000000000000cel1false815i:)){i:meetinti:sbappendcbufi;Yi:
         
     | 
| 
       985 
     | 
    
         
            -
            thisri;�i:listremove0i;[i:togglebooleani;\i:li1sizi:streamtokenizersystemini:fannkuchfini:negi
         
     | 
| 
       986 
     | 
    
         
            -
            :"00x0000000000082083l0false604i:
         
     | 
| 
       987 
     | 
    
         
            -
            0x427i:systemoutprintmm00i:valhash1getfoo_9999vi:allowednpiecesipieci:	9newi:	cmpai:systemoutprintlnstrbufi;i�;i;ui:bodysaturni:schedulerstarti:sm_piecesii;�
         
     | 
| 
       988 
     | 
    
         
            -
            i:	1312i;�i:csetothercolourfadi;�i;&i;W
         
     | 
| 
       989 
     | 
    
         
            -
            col10i:	dirdi:objinstjavavi;�i:0x1087i;�i
         
     | 
| 
       990 
     | 
    
         
            -
            ("");i:m_instanceisoddi:	0x08i:!systemoutprintlnfragmentsequi:inputstreami:doubleni:systemoutprintlnfirsti:superti:systemoutprintlnprimi;�i:topsquaregetpriori:updowni:"00x0000000000021842l1false629i:makerandomfastathrei:firstidi:charsreadi;�i;�i:
         
     | 
| 
       991 
     | 
    
         
            -
            thisqi;�i:!integervalueofmessageintvalui;ki	:
         
     | 
| 
       992 
     | 
    
         
            -
            origoi;�i:
         
     | 
| 
       993 
     | 
    
         
            -
            0x0cbi:holensteini:getmaskipieci:"20x00000000000001d8l3false857i;�i;	i:
         
     | 
| 
       994 
     | 
    
         
            -
            valv1i:systemoutprintlnc1i:	cmpii;�i:strbufappendi:bodysuni;{i:03015094502008di:getnami:clone2i:&011220x0000000000000946l1false726i:jk1ijii:csetotherothergetcolouri;�i;�	i:incorrecti:ttkyondi:});i:setokposinti:	0x07i:!doublefragmentcountdoublesumi:approximateinti:ssacceptingaccepti:systemoutprintlnsoluti:endlinklinki:	loadi:booleanm1i;�i:pqpolli;�i:022110i:makerandomfastatwoi:firstcolouri:piece4i:char16384i;yi;�i:newvalui:transformationinti;�i:javaiostreamtokeni:
         
     | 
| 
       995 
     | 
    
         
            -
            row10i;Ei:mathsqrtdotai:	10k2i:
         
     | 
| 
       996 
     | 
    
         
            -
            bitsji:
         
     | 
| 
       997 
     | 
    
         
            -
            0x10fi:
         
     | 
| 
       998 
     | 
    
         
            -
            thomai:piecemaski
         
     | 
| 
       999 
     | 
    
         
            -
            :1513110i;�	i:hash2putkeii:cmplengthi;Fi:printcolourscolouryellowi;�iC;�i;�
         
     | 
| 
       1000 
     | 
    
         
            -
            i:j10i10j0ji;i:gridcolinti:01975473066391di:
         
     | 
| 
       1001 
     | 
    
         
            -
            i1inii:othersetothercgetcolouri;�i;�i;�i:)((i
         
     | 
| 
       1002 
     | 
    
         
            -
            :familii:tobitvectorpti:	0x06i:#-i:knucleotidelistgetii:spectralnormapproximateni:socketclii:systemoutprintlntimi:finalcounti:
         
     | 
| 
       1003 
     | 
    
         
            -
            ;
         
     | 
| 
       1004 
     | 
    
         
            -
            i:	cbufi;
         
     | 
| 
       1005 
     | 
    
         
            -
            i:runtimeexceptionerrori;�i
         
     | 
| 
       1006 
     | 
    
         
            -
            i:stopstarti:
         
     | 
| 
       1007 
     | 
    
         
            -
            littli:
         
     | 
| 
       1008 
     | 
    
         
            -
            gridxi:01979883004921di:)systemoutprintlnnfformatbodiesenergii:nextthreadputmsgi:fillvali:10x0000000000021083l0truei:ifperm100i;i:
         
     | 
| 
       1009 
     | 
    
         
            -
            ;+i:pqisemptii:sbappendbarenumbi:	growi:&111130x00000000000001ccl2false837i:systemouti;Ii4;1i:stringbuilder5100000i;�	i:docomplimentcolouri:arraylistinteger16i;5i	;ii;7i:systemoutprintlntooki:	0xfli:jeffreii:getmaskinti;�i�;�i:iffi:	());i:;;i:arrayrowcoladdnewi:vecsaxi:systemoutprintlnstretchi:
         
     | 
| 
       1010 
     | 
    
         
            -
            feketi:g_okpiecesrowinextfili:"00x00000000000820c1l0false604i:hash2containskeykeii:500x08li:revcompi:printcolourscolourblui;�i
         
     | 
| 
       1011 
     | 
    
         
            -
            :strbufappendii:03029549426680di:nbodysystemi
         
     | 
| 
       1012 
     | 
    
         
            -
            ifmsgi:m_piecesii:"40x0000000000004146l1false715i:forr1ri;�i:%raytracerrunintegerparseintargs0i:
         
     | 
| 
       1013 
     | 
    
         
            -
            ;Yi:
         
     | 
| 
       1014 
     | 
    
         
            -
            pool0i:(/^>/)i:l_filei;�i
         
     | 
| 
       1015 
     | 
    
         
            -
            ;�i;�i;,i
         
     | 
| 
       1016 
     | 
    
         
            -
            ;�i;�i;�i:ucjoini:	ackni	;Ki;si;ni	;ii�:hashperl3perlvi:lehmanni:	ruudi;�i	:final_lini:	(/[^i;|i:imxi;Ni;�i:spellcheckperlvi:09ftharmonicni:
         
     | 
| 
       1017 
     | 
    
         
            -
            seperi:
         
     | 
| 
       1018 
     | 
    
         
            -
            ,""),i:length_i;"i;ni>:=$i	:other_colori
         
     | 
| 
       1019 
     | 
    
         
            -
            :
         
     | 
| 
       1020 
     | 
    
         
            -
            wahabi;i:
         
     | 
| 
       1021 
     | 
    
         
            -
            win32i;
         
     | 
| 
       1022 
     | 
    
         
            -
            ;di;�io:
         
     | 
| 
       1023 
     | 
    
         
            -
            harrii;:i:	trnni:z0bmuli;[i:	">";i:shutdownssocki;�
         
     | 
| 
       1024 
     | 
    
         
            -
            :	cnt_i	:qienqueue1qi1dequeui;+i;�i;�i;Oi
         
     | 
| 
       1025 
     | 
    
         
            -
            ;Pi;wi;`i;Li:streamlini;�i:andreai:	]->[i	;i:
         
     | 
| 
       1026 
     | 
    
         
            -
            ack_0i:
         
     | 
| 
       1027 
     | 
    
         
            -
            vecmii;�i:
         
     | 
| 
       1028 
     | 
    
         
            -
            clarki;_i6:atvavui;�i:
         
     | 
| 
       1029 
     | 
    
         
            -
            ;�io:
         
     | 
| 
       1030 
     | 
    
         
            -
            outeri;i;�i;�i;�
         
     | 
| 
       1031 
     | 
    
         
            -
            i;�i;�i;Ui	;,i;�i;�i:	..($i
         
     | 
| 
       1032 
     | 
    
         
            -
            :drugeoni;9i:vyi;�i	;�i	;�i:linelengthi";�i:socketssocki;7i;�i;�i:
         
     | 
| 
       1033 
     | 
    
         
            -
            tweaki	;�i;�i;�i:lengthstrni:advance001i;�i;!i;_i;�i;�i;3i;�i;di:orourki:>;i:muelleri;�
         
     | 
| 
       1034 
     | 
    
         
            -
            i:consumedni;i
         
     | 
| 
       1035 
     | 
    
         
            -
            ($\@)i;�i:!'i;yi;si;+i:1argv0i;si:
         
     | 
| 
      
 1597 
     | 
    
         
            +
            ack0ni;�i
         
     | 
| 
      
 1598 
     | 
    
         
            +
            foo_di:maxnumsmid2i:ht_find_newdicti;Ei:
         
     | 
| 
      
 1599 
     | 
    
         
            +
            iobufi:taabbti:meetingchameoi:ci1i;qi	:printfci:2n1i;i7:list_firstli1vi:	sanei;�i:nelementshomosapieni;Fi:maxlineleni:eval_ata_times_unvui:readcsocki:run_creaturi	;i:squarenewemptii:regexmatchgccvi;�i
         
     | 
| 
      
 1600 
     | 
    
         
            +
            :
         
     | 
| 
      
 1601 
     | 
    
         
            +
            i9999i;�i:
         
     | 
| 
      
 1602 
     | 
    
         
            +
            i0iiti;�i:v3di;i:my_addri:optvali;�i;�i:vestgaardeni;Zi
         
     | 
| 
      
 1603 
     | 
    
         
            +
            :lohi
         
     | 
| 
      
 1604 
     | 
    
         
            +
            ;pi:pthread_ti
         
     | 
| 
      
 1605 
     | 
    
         
            +
            :nelementsiubi:}};i
         
     | 
| 
      
 1606 
     | 
    
         
            +
            :hebischi:eval_ata_times_unuvi:sysabortserveraccepti;�i: squarequeuemergesquare_queui;Ai;�i7:consumerinti;�i;Yi:
         
     | 
| 
      
 1607 
     | 
    
         
            +
            '>'",i:aminoacidi:	]]);i;Zi:reallocqqqi:pid_tabnumber2i:	pow2i:squaregridrownii:
         
     | 
| 
      
 1608 
     | 
    
         
            +
            kerrii;�i:ht_nodei:kmediannumi:getcfhi;6i
         
     | 
| 
      
 1609 
     | 
    
         
            +
            :	me_pi;�i	:ci20yhi:
         
     | 
| 
      
 1610 
     | 
    
         
            +
            unioni:printfi3di:sradiui	:
         
     | 
| 
      
 1611 
     | 
    
         
            +
            newfdi:ingi:
         
     | 
| 
      
 1612 
     | 
    
         
            +
            joerni:workersinext_inboxi:
         
     | 
| 
      
 1613 
     | 
    
         
            +
            *****i;
         
     | 
| 
      
 1614 
     | 
    
         
            +
            ;;i:
         
     | 
| 
      
 1615 
     | 
    
         
            +
            endifi;�i:]!\i:advanci:
         
     | 
| 
      
 1616 
     | 
    
         
            +
            2yh10i:sizeof_lini:0000000000000000i:drenthi:forx0xwx2i:iubcomplementiubpairsi0i:sprintfstring_numbi;�i:dvecxdoubledxssn2i:10kdkdi:mutexthreadi;�i":
         
     | 
| 
      
 1617 
     | 
    
         
            +
            bufpoi;�i;/'i;�/i;�i:squarenewcopysquari;�#i;Gi:prodconsgccvi:
         
     | 
| 
      
 1618 
     | 
    
         
            +
            p_lohi:actionexceptiontexti: assertsem_initmain_inboxsemi:ifsquareunusedii;�6i:nostartfili;Xi:2x10w15i:fgets_lini:rodneii:energyinti:initvtwo20i:iubpairsi0i	:mallocsizeofchar10i:	nowni;�i:mutex0i:
         
     | 
| 
      
 1619 
     | 
    
         
            +
            buf64i:iffmpm_counti;�i:defined_windows_i:arpainethi	:***i:aligned64i:
         
     | 
| 
      
 1620 
     | 
    
         
            +
            2xw15i:iubcomplementii:sprintfbuffi:initv_1p515i:list_pop_headli2i;
         
     | 
| 
      
 1621 
     | 
    
         
            +
            pid_ti:destroyntogi:square_queui;Qi;�i:uthi:defined_windowi:	ohari;'-i;�6i:
         
     | 
| 
      
 1622 
     | 
    
         
            +
            m_onei;�i;�
         
     | 
| 
      
 1623 
     | 
    
         
            +
            i:
         
     | 
| 
      
 1624 
     | 
    
         
            +
            :(*(i	:paii:total_byti	:ntogactivatentogvaluentogi:printfnzunzunzuni;$i:$squaregetsuccessornodesptrsquari:toupperi;di:defined__win32i:ftci;ui:poweroftwoi;�!i:pqqqq1i:run_the_meetingscolori;�&i:squarefreeptrsquari;	i;�i;^/i;i:ht_destroydicti:
         
     | 
| 
      
 1625 
     | 
    
         
            +
            stdioi:chameneoscodi;*i$:i20i;�i:mpz_mul_sicvi;Hi:use_geti;�i;�i;i:buildiubcompli:
         
     | 
| 
      
 1626 
     | 
    
         
            +
            freeii;*i:putchar_unlocki;Ti;+i:	ataui;3i;H7i:1e6i:new_nthtogglevi;Ji:seqflipi;�i:queue2nexti:bufferseqleni:	num1i:defined_win32i;~i:	m_pii;P7i:
         
     | 
| 
      
 1627 
     | 
    
         
            +
            :
         
     | 
| 
      
 1628 
     | 
    
         
            +
            ypvali:max_sizi;�i
         
     | 
| 
      
 1629 
     | 
    
         
            +
            *(*)(i:workersthreadi:
         
     | 
| 
      
 1630 
     | 
    
         
            +
            i:mpz_mul_sicri;�i:	b2vxi;�'i:_iolbfi:iubcomplement1uchar_maxi;�i:output_so_fari:doublename1i:
         
     | 
| 
      
 1631 
     | 
    
         
            +
            freexi:equalni:
         
     | 
| 
      
 1632 
     | 
    
         
            +
            hrubii:pos1linestdouti;�i&;�i:eval_ata_times_uinti;�i:destroytogi;�i;	i%:fb_substseq1flipi;Ji;.i
         
     | 
| 
      
 1633 
     | 
    
         
            +
            :queue1nexti:_primetofindi:definedwin32i;�i:realloci	:fastagccvi;#i:sqrtdistance_squari;v7i:
         
     | 
| 
      
 1634 
     | 
    
         
            +
            :sched_yieldi;�i:ffastmathi;�7i;�i:
         
     | 
| 
      
 1635 
     | 
    
         
            +
            xpvali	:netdbhi;i
         
     | 
| 
      
 1636 
     | 
    
         
            +
            :lowshighest_zero_counti:mpz_mul_sicui	;�i;�i
         
     | 
| 
      
 1637 
     | 
    
         
            +
            data0i;�i:
         
     | 
| 
      
 1638 
     | 
    
         
            +
            ;�i;/i;�i:
         
     | 
| 
      
 1639 
     | 
    
         
            +
            i;�i
         
     | 
| 
      
 1640 
     | 
    
         
            +
            fetchi:
         
     | 
| 
      
 1641 
     | 
    
         
            +
            :n10i;�i	:0xai:colorsci:
         
     | 
| 
      
 1642 
     | 
    
         
            +
            freemi:errexnoi:zdzirni;�i;�/i:squarenewcopyptrsquari;$&i
         
     | 
| 
      
 1643 
     | 
    
         
            +
            ;�i;Oi	:bufvali;�i;Li{:dev3dev2devi:fwritei:dictionarynexit_failuri:	0000i:052130i:amdi:imaxlini;�i:printfackddi:
         
     | 
| 
      
 1644 
     | 
    
         
            +
            ;ji	:perrormi;�i5:workernext_inboxni:
         
     | 
| 
      
 1645 
     | 
    
         
            +
            ioveci:reallocbbufi;�i;�i:zerosii;�i:atexiti:b2massi
         
     | 
| 
      
 1646 
     | 
    
         
            +
            ;�'i;�i
         
     | 
| 
      
 1647 
     | 
    
         
            +
            :
         
     | 
| 
      
 1648 
     | 
    
         
            +
            i:auieval_aijuji:	(*)(i;;i;�7i
         
     | 
| 
      
 1649 
     | 
    
         
            +
            :cur_ptri:	seq0i:double_candidi:defined__gnuc__i;�i;�i:sncolorsicolorsji:
         
     | 
| 
      
 1650 
     | 
    
         
            +
            "))->i	:twothrdi:*/;i:ht_find_newhti:printfexcepti;?i:dev2devdevi:calloci:returnfprintfstderrcouldnti:00ysa0bw0r0i:creature_pwaiting_partni:
         
     | 
| 
      
 1651 
     | 
    
         
            +
            exit4i	:doubletrvi;�i:unitisevec1i:10kdkdkdskski;�i;;i
         
     | 
| 
      
 1652 
     | 
    
         
            +
            :sendtheirfdi;(i
         
     | 
| 
      
 1653 
     | 
    
         
            +
            line2i:advancenbodii:takn30i;li:compliment_coloriji:freematrixinti:errexbuffi:
         
     | 
| 
      
 1654 
     | 
    
         
            +
            0nulli;]	i:new_squaregridi0i;W*i$:xdxirni:sum_vecv2dfi:	)*/;i:sprintfbufi;Wi%:
         
     | 
| 
      
 1655 
     | 
    
         
            +
            numsii;�)i:0tvgh00cd00m0kn0i:some_functionni:pthread_mutex_locki;�i;%i:strncpynumji:spheretagi:atoiargvargc2i:ypyi:bflippi;'8i	;qi:(;;i;�i	:(&ig:
         
     | 
| 
      
 1656 
     | 
    
         
            +
            exit3i	:doublecivi;38i:	pipei;�i:subvec0i:connecttheirfdi:x87i	;�i;�i%;�i:new_toggletrui;>+i:	aui0i:mbuf128i:color2i
         
     | 
| 
      
 1657 
     | 
    
         
            +
            :queue2i:fb_readallseq0i:
         
     | 
| 
      
 1658 
     | 
    
         
            +
            sqrtni:181056i:defined__linuxi;]i:energynbodii	;�i:zeromatrixinti:xtab256i;�i;y	i:inni
         
     | 
| 
      
 1659 
     | 
    
         
            +
            :
         
     | 
| 
      
 1660 
     | 
    
         
            +
            nwsppi:	tmp1i;Hi:ht_createni;i:failednexit_failuri:%00000000000000000000000000000000i;M8i:pthread_mutex_initii;�i
         
     | 
| 
      
 1661 
     | 
    
         
            +
            buf_ti:myaborti;X8i:icell_group_counti:	bbufi;[8i;�i:+((i:write1i;�i;[i:requiremni:ldni:doublecrvi;�i
         
     | 
| 
      
 1662 
     | 
    
         
            +
            :
         
     | 
| 
      
 1663 
     | 
    
         
            +
            exit2i	:list_copyli1i:
         
     | 
| 
      
 1664 
     | 
    
         
            +
            argc2i:memsettheir_addrsin_zeroi;7(i	:size_ti':	ntogi
         
     | 
| 
      
 1665 
     | 
    
         
            +
            ;�i:
         
     | 
| 
      
 1666 
     | 
    
         
            +
            :
         
     | 
| 
      
 1667 
     | 
    
         
            +
            ovecki:pthread_mutex_ti	;Fin:
         
     | 
| 
      
 1668 
     | 
    
         
            +
            rorigi	:bmaskxi;�i:sockaddr_ini;i	;i:workeri
         
     | 
| 
      
 1669 
     | 
    
         
            +
            :iov_maxi;pi:bcolori:highest_zero_count0i:fb_initfbuf_ti;si:	fputi:4rni:
         
     | 
| 
      
 1670 
     | 
    
         
            +
            ctx_ti:b2zi	;�i;�$i;�%i;C	i:doublezivi;�'i;/i+:callocni
         
     | 
| 
      
 1671 
     | 
    
         
            +
            ;3i;�i:sqrtdbl_epsiloni:
         
     | 
| 
      
 1672 
     | 
    
         
            +
            ;q+i:sysabortclientreadi:squarequeuemergeptrsquari;�ic:fb_initseq0i;li;mi:stdlibhiL:
         
     | 
| 
      
 1673 
     | 
    
         
            +
            ht_hti:
         
     | 
| 
      
 1674 
     | 
    
         
            +
            :waiting_creature_pi	:maininti3:list_equaldli;�8i;�8i:clientmi;�i	:bsizexi;'i:semi:maxreadi;�)i:socklen_ti:zeroscell_group_counti;i:fbuf_ti:acolori;	i;qi;�i;e i:	1023i:
         
     | 
| 
      
 1675 
     | 
    
         
            +
            argc1i:doublezrvi;i;�i;Si;�i;Wi:freescenedatagchildi;~i
         
     | 
| 
      
 1676 
     | 
    
         
            +
            :in_addri:conversi
         
     | 
| 
      
 1677 
     | 
    
         
            +
            :secondarii:returninit_nthtogglethii;�+i:eval_a_times_uinti:offset1i:square2gridii;Vi	:
         
     | 
| 
      
 1678 
     | 
    
         
            +
            buf32i;�i	:
         
     | 
| 
      
 1679 
     | 
    
         
            +
            numsni:8w8i:ifdicti:setjmphi_excepti;hi:areacodi;�i;�8i.:returnnexti:
         
     | 
| 
      
 1680 
     | 
    
         
            +
            inboxi	:sysuiohi:
         
     | 
| 
      
 1681 
     | 
    
         
            +
            davidi:square1gridii;i:	seq2i;�i;oi:
         
     | 
| 
      
 1682 
     | 
    
         
            +
            hsiehi	;�i;�i	:dyni:$pthread_mutex_unlockprint_mutexi;�#i:new_squareffmnuli:gintersecti:deletetreetreelefti;�8i:
         
     | 
| 
      
 1683 
     | 
    
         
            +
            a20kdi:
         
     | 
| 
      
 1684 
     | 
    
         
            +
            /,'')i:collector2i;*i:}\i;�i;,i:	("")i;5@i:flagsmulti:freqdeleti:bit_countsii:	"").i;4i;�1i:bottom_up_treeitemi;x&i:toggleconstructori:	josei:receivers0i:420i;;i:gonzaloi;z3i:b1vaddsb2poi:diminshi;�$i:
         
     | 
| 
      
 1685 
     | 
    
         
            +
            lto_ii::"+i;e1i:
         
     | 
| 
      
 1686 
     | 
    
         
            +
            escapi;�i:other1scali:each_indexi;Ei
         
     | 
| 
      
 1687 
     | 
    
         
            +
            ;ai;bi:typeto_i:)}}i:exceptruby2rubyvi:
         
     | 
| 
      
 1688 
     | 
    
         
            +
            rtdivi;ii;ji;li:20ysize10i:valuescollecti	:pressurizedbottlenew3i:0b01100i;ti :fcoi:safedigiti:	#<--i:	seeki:
         
     | 
| 
      
 1689 
     | 
    
         
            +
            elsifi;zi:regionspushcur_regioni;m*i;{i;wi;�)i;|i:!unpressurized_emptynextbottli;�i:initial_collector_counti:}";i:mathpi2i;�i;�i:waiting_colouri
         
     | 
| 
      
 1690 
     | 
    
         
            +
            :prev_threadstopi:1nwidthcollecti;�i ;�i
         
     | 
| 
      
 1691 
     | 
    
         
            +
            ;�i;�"i;�i;
         
     | 
| 
      
 1692 
     | 
    
         
            +
            :
         
     | 
| 
      
 1693 
     | 
    
         
            +
            maximi:
         
     | 
| 
      
 1694 
     | 
    
         
            +
            self1i;�i;�i;1i:ggtattttaatttatagteachi;S$i;�&i;�i:
         
     | 
| 
      
 1695 
     | 
    
         
            +
            coveri;�i;�i:hash1ii;�i:arraynew50i;�6i:fisheri;�i;i:	row5i:
         
     | 
| 
      
 1696 
     | 
    
         
            +
            }-#{$i;%i=:converterrow_oni:conditionvariablenewi;(i�:neumanni:threadpassi;+i:
         
     | 
| 
      
 1697 
     | 
    
         
            +
            /,"")i;-i;s*i;2i:tcpsocketnewi:
         
     | 
| 
      
 1698 
     | 
    
         
            +
            #{$!.i:depthti:arraynewrowi;8i:
         
     | 
| 
      
 1699 
     | 
    
         
            +
            stripi:
         
     | 
| 
      
 1700 
     | 
    
         
            +
            incodi:yself1other1i:stdineachi;;i:returnli1lengthi;Ai
         
     | 
| 
      
 1701 
     | 
    
         
            +
            ;Bi:edgi:
         
     | 
| 
      
 1702 
     | 
    
         
            +
            argv0i;�-i;�i:lengtheachi;�#i;Ii_:
         
     | 
| 
      
 1703 
     | 
    
         
            +
            3timei;Ji:	new3i;Li;Ni;�%i;Oi:0b11111i
         
     | 
| 
      
 1704 
     | 
    
         
            +
            :private_class_methodi:	vbv0i;Ri;Xi:print_resulti:
         
     | 
| 
      
 1705 
     | 
    
         
            +
            0b110i	;�i	;[i;\i:],[i:{|i:seqgsubnni;`i":60to_ii;^%i;ei;�i :directionscollecti	:sockreadlini;ui;�i;ki:odd_offseti	:})i;�i:
         
     | 
| 
      
 1706 
     | 
    
         
            +
            :
         
     | 
| 
      
 1707 
     | 
    
         
            +
            :
         
     | 
| 
      
 1708 
     | 
    
         
            +
            tree1i:receiversi1nexti:ntimestlast_qpopi;�i;�i:#.i:
         
     | 
| 
      
 1709 
     | 
    
         
            +
            dtdddi:mathieui:,@i:other0scali;�i;�i:flagscompactsi:	wggti;bi;Gi; 7i;k$i:locationdivmod6i;Ji:hash2ii;�i;�i;�i:	col1i:.#########################################i:181041i:nwidthi;�i;7i(;�i:offsetdivmod6i;�i;�i:
         
     | 
| 
      
 1710 
     | 
    
         
            +
            renzii:pressurizedbottlenew1i:
         
     | 
| 
      
 1711 
     | 
    
         
            +
            :xself0other0i;�i:	durei:dictlchompi;�i;�i;A-i:li2pushli3popi;�
         
     | 
| 
      
 1712 
     | 
    
         
            +
            southi;i;i:
         
     | 
| 
      
 1713 
     | 
    
         
            +
            identi:
         
     | 
| 
      
 1714 
     | 
    
         
            +
            self0i:iistepmaxi;>i;^i;@i:
         
     | 
| 
      
 1715 
     | 
    
         
            +
            ideali;|i	:integerargv0timi:<=>i:
         
     | 
| 
      
 1716 
     | 
    
         
            +
            ntimei:
         
     | 
| 
      
 1717 
     | 
    
         
            +
            1to_ii
         
     | 
| 
      
 1718 
     | 
    
         
            +
            :
         
     | 
| 
      
 1719 
     | 
    
         
            +
            exponi;�i%:q2pushqpop1i:
         
     | 
| 
      
 1720 
     | 
    
         
            +
            forini:!()i;�i;�i:
         
     | 
| 
      
 1721 
     | 
    
         
            +
            thirdi:addsothi:mathsqrtmaxi;-i:linechompi;�i|;ti;�i;�i	:flood_fili;�$i;�#i:
         
     | 
| 
      
 1722 
     | 
    
         
            +
            :
         
     | 
| 
      
 1723 
     | 
    
         
            +
            typeni:zextractfouri;�i;i;i;i;iL;i/:
         
     | 
| 
      
 1724 
     | 
    
         
            +
            saveri:bodiesoffset_momentumi;`i:sockaccepti:
         
     | 
| 
      
 1725 
     | 
    
         
            +
            :
         
     | 
| 
      
 1726 
     | 
    
         
            +
            adjaci;+i:hashnewi:li3pushli2shifti;0i;L"i:(/\i:usrbinrubii*;�"i	:
         
     | 
| 
      
 1727 
     | 
    
         
            +
            5timei:	uptoi;5i	:seqpushi:hellorubyvi;8i;;i	;>i;&i;*i!:6to_iupto9i;=i;^!i:processornewfind_ali;i;Gi;Hi:boards_foundi
         
     | 
| 
      
 1728 
     | 
    
         
            +
            1iteri;wi:tcpsocketopen127001i:"]i:053655i:rotation_odd_addi;Vi;Yi;[i/:psteppmaxi:someoni;hi:collector0i	:	evani:other_colouri	;oi*;di;f7i:	ibiti;fi;05i	;hi:..(i;�2i:objecttcli;ni;pi;�+i
         
     | 
| 
      
 1729 
     | 
    
         
            +
            ;qi:atji;i:	binci;ui:strlengthi;�0i:
         
     | 
| 
      
 1730 
     | 
    
         
            +
            tree0i:precomputi;{i;i:aaddsbi;~i;�iN:flags0dupi;�i:
         
     | 
| 
      
 1731 
     | 
    
         
            +
            rescui:064459i:odd_offsetscollecti;�i;�i;�i:bottlenew8i;"/i:williami	;�i;�i:freenodi;�i;�i:is_primeii;�i:
         
     | 
| 
      
 1732 
     | 
    
         
            +
            :
         
     | 
| 
      
 1733 
     | 
    
         
            +
            motifi;�i;�i;c2i:tcpservernewi;�?i;�i:matrixrubyvi;�i:]/i:	kepti;�&i:
         
     | 
| 
      
 1734 
     | 
    
         
            +
            sgsubi;� i;�i	;�i:all_boardi:rpermshifti:randomrubyvi:
         
     | 
| 
      
 1735 
     | 
    
         
            +
            12345i;$i
         
     | 
| 
      
 1736 
     | 
    
         
            +
            :valuesuniqi;!i:
         
     | 
| 
      
 1737 
     | 
    
         
            +
            tjto_i:echorubyvi:
         
     | 
| 
      
 1738 
     | 
    
         
            +
            emergi:])}i;`i:lavanai:	2089i:nextputhopsremaini;i:unavaili:atii:count_sizi;i;�"i
         
     | 
| 
      
 1739 
     | 
    
         
            +
            ;�
         
     | 
| 
      
 1740 
     | 
    
         
            +
            :vector3dnewselfmapi:	expri:
         
     | 
| 
      
 1741 
     | 
    
         
            +
            locati::sunvsubspi;gi;ii:bestworsti:/[i;�i	:each_pairi;oi;�@i:byte_accchri;�
         
     | 
| 
      
 1742 
     | 
    
         
            +
            :180943i;~i;iQ;Hi:revcompseqjoini;�i5;b3i;�i;�i;�i:all_boardsboard_stri:injectseqsarii;3=i:1thread_numi;�i:I0b111111100000100000100000100000100000100000100000100000100000100000i:perminserti:mainintegerargvshifti;�i:valueslengthi;�iI:0b1i:widthntimi;�i ;�i;�i;�i;�i:rotation_even_addi:	new7i;�i:3481419i;�i
         
     | 
| 
      
 1743 
     | 
    
         
            +
            ;�i;�i;�i:collectorscollector_numi
         
     | 
| 
      
 1744 
     | 
    
         
            +
            }}/).i;�i
         
     | 
| 
      
 1745 
     | 
    
         
            +
            ;�i;�i:hemangi:yfirsti:mailboxpopi;)i;�i:sizedqueuenew1i:
         
     | 
| 
      
 1746 
     | 
    
         
            +
            follwi:i1lengtheachi:strcatruby2rubyvi;]i:
         
     | 
| 
      
 1747 
     | 
    
         
            +
            ;�i:ij0i:seqslengthi;�i:
         
     | 
| 
      
 1748 
     | 
    
         
            +
            ;i
         
     | 
| 
      
 1749 
     | 
    
         
            +
            :rotate_convertervalui;�i
         
     | 
| 
      
 1750 
     | 
    
         
            +
            :board_stringreversi:paddsbvi:localhosti;i;i;i;�i	; i;(i:item_checkstretch_trei:zself2i;$i:mkmatrixrowi:corneri:spellcheckrubyvi:earlieri;)5i
         
     | 
| 
      
 1751 
     | 
    
         
            +
            ;*i:li1dupi;-i:	kingi;_i:seqslicex60i;1i;2i;3i:raatj1i:board_string9i:)}"i:dirty_seqsi;:i:[[i;<i:stop_counti	;�9i:consumerjoini:kreversi:rotation_even_adderdirecti;�4i	;Fi*;Gi;Ji:0b0i:
         
     | 
| 
      
 1752 
     | 
    
         
            +
            :deviation4i;^i;m"i;\i	:bmove_from_ibodii:datasqueezi;ai
         
     | 
| 
      
 1753 
     | 
    
         
            +
            :,#{i;�i:new_regioni:	xatii:700000000000000000000000000000000000000000000000000i:messageloopi:last_qi:
         
     | 
| 
      
 1754 
     | 
    
         
            +
            earlii;mi	:planetnew0i:hellolengthi;0i
         
     | 
| 
      
 1755 
     | 
    
         
            +
            1timei;�i:prunableblank_boardi;�i:
         
     | 
| 
      
 1756 
     | 
    
         
            +
            4pipii;�i:	drawi:bottlenew5i:collectorsanii:is_primi:unpressurized_emptii;�i;�i;�i(:setcollecti;�i;�i:
         
     | 
| 
      
 1757 
     | 
    
         
            +
            boikoi;_;i;�i:blank_boardi;�i:piecefill_stri;�i;i$i:vector3dnew000i;�i:haarmani:181103i;�i;B@i	:stretch_depthti:
         
     | 
| 
      
 1758 
     | 
    
         
            +
            unfili:yself1i;�i;,i;P5i;�i;�i	;�6i:
         
     | 
| 
      
 1759 
     | 
    
         
            +
            raatji;�4i	;�i;Pi;�i:
         
     | 
| 
      
 1760 
     | 
    
         
            +
            sizexi;i;�i;�i;�i:revcompseqi:producerjoini;�i:permlslice0i;�i
         
     | 
| 
      
 1761 
     | 
    
         
            +
            ;�i:rotation_odd_adderdirecti;�i;�	i:pidigitspigotnewi;�i:pressurizedbottlenew9i:165956i:	rtnni;�i:bitsperchartimi:"pressurized_unsealednextbottli;�i;�i
         
     | 
| 
      
 1762 
     | 
    
         
            +
            :initial_collector_counttimi;2i:planetnew00i;i:meeting_pointsynchroni;i:50timei:deviation3i;i:datatrni:bit_counti;i;	i:	(/.{i;<3i:
         
     | 
| 
      
 1763 
     | 
    
         
            +
            :999eachi:agggtcgtaattacgaccctii:make_random_fastaidi;3i:rotationspushi:teni;8i	;�i: echo_serverintegerargvshifti;:i;�i	:is_evenoffseti;>i;?i
         
     | 
| 
      
 1764 
     | 
    
         
            +
            ;@i;Ai�:bottlenew4i;Ei:
         
     | 
| 
      
 1765 
     | 
    
         
            +
            32805i:
         
     | 
| 
      
 1766 
     | 
    
         
            +
            dto_fi;Gi;Ii
         
     | 
| 
      
 1767 
     | 
    
         
            +
            +i;Ti:new_regionscollecti;Zi;\i:serhiii;�;i:	falli:	barni:acheivi;bi;�$i:bvmagnitudi:robberti:bottom_up_tree0i:
         
     | 
| 
      
 1768 
     | 
    
         
            +
            :u1ni:1uptoni;ri%:necessarilii:!~i;vi
         
     | 
| 
      
 1769 
     | 
    
         
            +
            ;wi:stringlenseqlengthi:
         
     | 
| 
      
 1770 
     | 
    
         
            +
            raat1i:').i;~i:{!$i:strgsubsii:##########i;?i;G)i;�i:max_boardi
         
     | 
| 
      
 1771 
     | 
    
         
            +
            :datastripi:
         
     | 
| 
      
 1772 
     | 
    
         
            +
            6timei:	lesti;�i:flags0i:a1eachi;�i;�iS:is_eveni	;�i;�i;*%i;,i:
         
     | 
| 
      
 1773 
     | 
    
         
            +
            imaski;u#i:riverai;�i:ndowntoi;�i;�i
         
     | 
| 
      
 1774 
     | 
    
         
            +
            32005i;�i;�,i:bottlenew3i;�i:064859i:convertercollector2i;�i;�i	:bottlestateinitii:
         
     | 
| 
      
 1775 
     | 
    
         
            +
            paveli;�i:converterpushrowi;�i;�i
         
     | 
| 
      
 1776 
     | 
    
         
            +
            ;�i;�i:	septi:min_depthstepmax_depthi;�i;&i;�i;i	;�;i;�i:coroutinen1i:bposaddsbvi;�i;1'i;�i:normaili:
         
     | 
| 
      
 1777 
     | 
    
         
            +
            i:listsrubyvi:
         
     | 
| 
      
 1778 
     | 
    
         
            +
            8timei;i	;i;iI:Mseqreversetrwsatugcyrkmbdhvnatugcyrkmbdhvnwstaacgrymkvhdbntaacgrymkvhdbni;i:raatiri;i	;i:('^i;i;4)i;i:new_stri; i;#i;�&i;$i
         
     | 
| 
      
 1779 
     | 
    
         
            +
            :10timei	:strsizei:}]}i;(i:seqlengthi;*i;
         
     | 
| 
      
 1780 
     | 
    
         
            +
            )i:
         
     | 
| 
      
 1781 
     | 
    
         
            +
            /^>/)i:hi_exceptionnewnumi;Ii;Fi;�i:pressurized_unsi;�i:	3035i;Ki:lowmaski;Li ;ti:region_maski:b2_mass_magi	:
         
     | 
| 
      
 1782 
     | 
    
         
            +
            hashxi;ui;xi;zi:piecemasks0eachi:aggacttaaatttaagtcctii;}i;�1i;Ui:ssliceni;�i;�,i:600to_ii:mapmaski;�i	;�i:
         
     | 
| 
      
 1783 
     | 
    
         
            +
            cmaski:nfloatargv0i:itertimi;�i;�i:181335i:subsothi;�i;�i';�#i;�i;�i;&i:seqarraynewi:10_000i	;�i;�i:
         
     | 
| 
      
 1784 
     | 
    
         
            +
            raatli;h<i:board_arrayjoini;
         
     | 
| 
      
 1785 
     | 
    
         
            +
            %i;�i;�i:	ssubi:make_random_fastathrei;�i;�,i;�iA;�i:min_boardi
         
     | 
| 
      
 1786 
     | 
    
         
            +
            permmi;/i:start_adjusti;�i:
         
     | 
| 
      
 1787 
     | 
    
         
            +
            stevei;�i	:
         
     | 
| 
      
 1788 
     | 
    
         
            +
            qrst0i:pressurizedbottlenew6i;�i:0b00100i:rowstimi;�i:/^>i:lo_exceptionnewnumi;�i: unpressurized_fullnextbottli:	2429i;�i:bitsperchari;�i
         
     | 
| 
      
 1789 
     | 
    
         
            +
            superi;�
         
     | 
| 
      
 1790 
     | 
    
         
            +
            ;�$i:region2i:vector3dnewvxi:strcatrubyvi:
         
     | 
| 
      
 1791 
     | 
    
         
            +
            ylasti:
         
     | 
| 
      
 1792 
     | 
    
         
            +
            echoli:
         
     | 
| 
      
 1793 
     | 
    
         
            +
            ;$i:piecesshifti
         
     | 
| 
      
 1794 
     | 
    
         
            +
            ;�9i:srclengthi:agactgtaaatttacagtctii:	####i;,i	;1i:rotationstart_masksii:
         
     | 
| 
      
 1795 
     | 
    
         
            +
            dec31i;%3i;Ni:pieceslength1timi:b2vaddsb1poi;_'i:
         
     | 
| 
      
 1796 
     | 
    
         
            +
            vto_ii:	zizii
         
     | 
| 
      
 1797 
     | 
    
         
            +
            ;�@i;Ti3;Ui
         
     | 
| 
      
 1798 
     | 
    
         
            +
            :other2scali:eval_aijuji;^i
         
     | 
| 
      
 1799 
     | 
    
         
            +
            ;_i:K----------------------------------------------------------------------i	:
         
     | 
| 
      
 1800 
     | 
    
         
            +
            olseni;di	:
         
     | 
| 
      
 1801 
     | 
    
         
            +
            2to_ii:start_boardi;ii:rxspliti;mi:make_random_fastatwoi;.i;ri;Ai;si:
         
     | 
| 
      
 1802 
     | 
    
         
            +
            qrstki:pressurizedbottlenew5i:0b01010i:0ulength1i;�i	;�i:row_offseti;�i1:,((i:charexponi;Wi:	new5i:	1217i:regionseachi:
         
     | 
| 
      
 1803 
     | 
    
         
            +
            :dupi:brannani:initializestart_sti	;X1i:,-@i:062650i;�i:matrixruby2rubyvi:vector3dnewxi;�(i:
         
     | 
| 
      
 1804 
     | 
    
         
            +
            newlii;�i;A8i;p,i:jeremii;�i
         
     | 
| 
      
 1805 
     | 
    
         
            +
            :locationroti:jabarii:stdinreadlinesreversi:
         
     | 
| 
      
 1806 
     | 
    
         
            +
            chunki;�i:
         
     | 
| 
      
 1807 
     | 
    
         
            +
            ntabli:){|i
         
     | 
| 
      
 1808 
     | 
    
         
            +
            ;�i:mentali;�i
         
     | 
| 
      
 1809 
     | 
    
         
            +
            :zagorodnikovi	;�i;�i;�i:pieceslengthtimi:0b10000i	:083945i:aactggtaaatttaccagttii:make_repeat_fastaidi;�i;�i:rotationscollecti;�i	:]}"i:ssockaddr1i:
         
     | 
| 
      
 1810 
     | 
    
         
            +
            :	incri;�
         
     | 
| 
      
 1811 
     | 
    
         
            +
            i;�i`:item_itemi:threadstartiki;�i;�i:garramunoi;R3i;i;�<i;�i:
         
     | 
| 
      
 1812 
     | 
    
         
            +
            ;�i:
         
     | 
| 
      
 1813 
     | 
    
         
            +
            self2i;�*i;*i	;$i;	i:
         
     | 
| 
      
 1814 
     | 
    
         
            +
            bjarki;		i	;�:i:
         
     | 
| 
      
 1815 
     | 
    
         
            +
            4timei:
         
     | 
| 
      
 1816 
     | 
    
         
            +
            nextni;	i:piecefill_arraii;	i	:make_repeat_fastaoni;	i6;/i;�*i:dirty_seqgsubi;	i;�i;	i:	seqii;	i:
         
     | 
| 
      
 1817 
     | 
    
         
            +
            8d9dni:tableseqilengthi;�%i;�i;� i:6httpwww128ibmcomdeveloperworksjavalibraryjjavaopti:	Perl{�:
         
     | 
| 
      
 1818 
     | 
    
         
            +
            i;�;i::httpwwwnetworkcomputingcomunixworldtutorial005005htmli;�i
         
     | 
| 
      
 1819 
     | 
    
         
            +
            :
         
     | 
| 
      
 1820 
     | 
    
         
            +
            wahabi;�i:	..$#i	:threadsnewinc_threadi;i;�&i;Ui:*',i:hash2_i:302010i;7i	:10di;?#i;�i;i:
         
     | 
| 
      
 1821 
     | 
    
         
            +
            ;�i	;�i:063444i:nshifti:advance001i;i	;�i:length_i;�i;�i;i;�i;ti;Ri	;A	i:181344i:contentrgii:	seani;pi;�Ci:++*i:drugeoni;Gi;�>i:	len2i;'i:gen_randomargv0i;3i
         
     | 
| 
      
 1822 
     | 
    
         
            +
            ;�i;�i;�i:
         
     | 
| 
      
 1823 
     | 
    
         
            +
            ;Di:lehmanni;Fi;i�;�/i;�i;Aio:	genei:]/)i;3%i;�i;�i:	">",i;ci:spellcheckperlvi;Ki;Bi	:
         
     | 
| 
       1036 
1824 
     | 
    
         
             
            mass_i
         
     | 
| 
       1037 
     | 
    
         
            -
             
     | 
| 
       1038 
     | 
    
         
            -
            ( 
     | 
| 
       1039 
     | 
    
         
            -
             
     | 
| 
       1040 
     | 
    
         
            -
             
     | 
| 
       1041 
     | 
    
         
            -
             
     | 
| 
       1042 
     | 
    
         
            -
             
     | 
| 
       1043 
     | 
    
         
            -
             
     | 
| 
       1044 
     | 
    
         
            -
             
     | 
| 
       1045 
     | 
    
         
            -
             
     | 
| 
       1046 
     | 
    
         
            -
             
     | 
| 
       1047 
     | 
    
         
            -
            i 
     | 
| 
       1048 
     | 
    
         
            -
             
     | 
| 
       1049 
     | 
    
         
            -
             
     | 
| 
       1050 
     | 
    
         
            -
             
     | 
| 
       1051 
     | 
    
         
            -
             
     | 
| 
       1052 
     | 
    
         
            -
             
     | 
| 
       1053 
     | 
    
         
            -
             
     | 
| 
       1054 
     | 
    
         
            -
             
     | 
| 
       1055 
     | 
    
         
            -
             
     | 
| 
       1056 
     | 
    
         
            -
             
     | 
| 
       1057 
     | 
    
         
            -
             
     | 
| 
       1058 
     | 
    
         
            -
             
     | 
| 
       1059 
     | 
    
         
            -
             
     | 
| 
       1060 
     | 
    
         
            -
             
     | 
| 
       1061 
     | 
    
         
            -
            :
         
     | 
| 
       1062 
     | 
    
         
            -
             
     | 
| 
       1063 
     | 
    
         
            -
             
     | 
| 
       1064 
     | 
    
         
            -
             
     | 
| 
       1065 
     | 
    
         
            -
            :	($@)i
         
     | 
| 
      
 1825 
     | 
    
         
            +
            :serversetsockopti;�i;�,i;Ii	;i;�i:	pooli;�i;�i;,	i;�i;�i;�i:	matti;Bi:
         
     | 
| 
      
 1826 
     | 
    
         
            +
            lexici;i(;Ri;#i:[^\i;Ui: update_hash_for_framelengthi;�'i:	uglii:zero_threadi:0h1i;� i:
         
     | 
| 
      
 1827 
     | 
    
         
            +
            ,""),i:serverforki; >i;mi;�*i;�i;�i;�io;*Bi:qr_i;�i;�i;Ui;8.i:->{i;�.i;ci
         
     | 
| 
      
 1828 
     | 
    
         
            +
            :pushli3i;�%i
         
     | 
| 
      
 1829 
     | 
    
         
            +
            :memoizeacki;�i;Fi;�i;�i:	ary1i;|i;!i:mathgmpi:}*i:fiboperlvi;<i/;�i:threadscreatethr_funci;wi;�(i:butcheri:takfp_010i:	vbrai;!ir;aCi;Mi;�i;i
         
     | 
| 
      
 1830 
     | 
    
         
            +
            ;�i;�i;�;i:ys_i;�i	;�i;�;i;i;�i;di;�i;�/i&:	)==$i;�4i;i;�i;�i;ri[;ei
         
     | 
| 
      
 1831 
     | 
    
         
            +
            cntkni;�i;�i:
         
     | 
| 
      
 1832 
     | 
    
         
            +
            harrii;�Bi;p!i;|#iN;~i	;mi	;�i;Li;~i:!/^i:mutexnextthreadupi;i:(\&i
         
     | 
| 
      
 1833 
     | 
    
         
            +
            :	ksini;�&i
         
     | 
| 
      
 1834 
     | 
    
         
            +
            ;�i	;�Bi:nsieve_testn1i:	1_11i;�2i;Yi:sieveperlvi;Bi;zi:ifcolori;i
         
     | 
| 
      
 1835 
     | 
    
         
            +
            ;Ai:reoi;*i;�i;�i:($!)";i;Ei;mi:	p4nwi:
         
     | 
| 
      
 1836 
     | 
    
         
            +
            /\|/,i:
         
     | 
| 
      
 1837 
     | 
    
         
            +
            ackddi:
         
     | 
| 
      
 1838 
     | 
    
         
            +
            loloni;	i;<.i:closedicti;Xi:09ftgregoryni:
         
     | 
| 
      
 1839 
     | 
    
         
            +
            massii;�i:clientsocketi;�i;�i:#wstaacgrymkvhdbntaacgrymkvhdbni;@i;RBi;`i:bottom_up_treedepthi;�i	;�$i;}i:pushmxi;�
         
     | 
| 
      
 1840 
     | 
    
         
            +
            ;�&i:pfannkuchen_i;*i:ifintz2i;$9i;+i;�iJ;:i:($$$$){i:
         
     | 
| 
      
 1841 
     | 
    
         
            +
            12332i;'?i;�i;�i;pDi	;�i;\i:	jumpi:	warni;i:sngi;�i	:qienqueue1qi1dequeui;`i;XBi:disposi:	li2ii:
         
     | 
| 
      
 1842 
     | 
    
         
            +
            /\|/;i:xsprintfxi:
         
     | 
| 
      
 1843 
     | 
    
         
            +
            poweli:selfcountmaxi	:reverse2exponent1i;� i;�i:$#$i:r1gi;�i;?Ai
         
     | 
| 
      
 1844 
     | 
    
         
            +
            ;�i:(?(i:wahabchemieunihalledi;�i:ack_01i;
         
     | 
| 
      
 1845 
     | 
    
         
            +
            versui:z0bmuli;$i:cottrili;�i;}i;�@i:zshifti:selectstdouti;�i:
         
     | 
| 
      
 1846 
     | 
    
         
            +
            joinni;Ji;Hi;^i:other_colori
         
     | 
| 
      
 1847 
     | 
    
         
            +
            ;Di;�i:lengthconti:orourki;ZCi;�4i;�i;�i;i;�i;�i;+i	:detachi:scalarli2i;li;�i:ack_0_1i;�i:/(^>.*)?\i:andreai:\@i	;K=i
         
     | 
| 
      
 1848 
     | 
    
         
            +
            ;Ti:$/;i
         
     | 
| 
      
 1849 
     | 
    
         
            +
            :
         
     | 
| 
      
 1850 
     | 
    
         
            +
            1sizei;�i:	coroi;�i;Ei:ifrandi;i*:("$i;3i:":$i	;P$i;)i:refi;�i;R3i:
         
     | 
| 
      
 1851 
     | 
    
         
            +
            massji:bindssi;�i;^!i;�i;&Ci;Wi;�&i;i:listeni;�i;�!i:	\(])i;�i;Bi:doti:	leifi	;_i;i:hash1foo__i;�i:nthtogglenew1i;�=i;&
         
     | 
| 
      
 1852 
     | 
    
         
            +
            ;Fi:	vys0i:acceptcsocki;�i:reversefileperlvi;�*i;�i;�i;�Ci;�;i:	($@)i
         
     | 
| 
       1066 
1853 
     | 
    
         
             
            :
         
     | 
| 
       1067 
     | 
    
         
            -
             
     | 
| 
       1068 
     | 
    
         
            -
             
     | 
| 
       1069 
     | 
    
         
            -
             
     | 
| 
       1070 
     | 
    
         
            -
             
     | 
| 
       1071 
     | 
    
         
            -
             
     | 
| 
       1072 
     | 
    
         
            -
             
     | 
| 
       1073 
     | 
    
         
            -
             
     | 
| 
       1074 
     | 
    
         
            -
             
     | 
| 
       1075 
     | 
    
         
            -
            i 
     | 
| 
       1076 
     | 
    
         
            -
             
     | 
| 
       1077 
     | 
    
         
            -
             
     | 
| 
       1078 
     | 
    
         
            -
             
     | 
| 
       1079 
     | 
    
         
            -
             
     | 
| 
       1080 
     | 
    
         
            -
            i 
     | 
| 
       1081 
     | 
    
         
            -
             
     | 
| 
       1082 
     | 
    
         
            -
             
     | 
| 
       1083 
     | 
    
         
            -
             
     | 
| 
       1084 
     | 
    
         
            -
            i 
     | 
| 
       1085 
     | 
    
         
            -
             
     | 
| 
       1086 
     | 
    
         
            -
             
     | 
| 
       1087 
     | 
    
         
            -
             
     | 
| 
       1088 
     | 
    
         
            -
             
     | 
| 
       1089 
     | 
    
         
            -
             
     | 
| 
       1090 
     | 
    
         
            -
             
     | 
| 
       1091 
     | 
    
         
            -
            ; 
     | 
| 
       1092 
     | 
    
         
            -
             
     | 
| 
       1093 
     | 
    
         
            -
             
     | 
| 
       1094 
     | 
    
         
            -
             
     | 
| 
       1095 
     | 
    
         
            -
             
     | 
| 
       1096 
     | 
    
         
            -
             
     | 
| 
       1097 
     | 
    
         
            -
             
     | 
| 
       1098 
     | 
    
         
            -
             
     | 
| 
       1099 
     | 
    
         
            -
             
     | 
| 
       1100 
     | 
    
         
            -
             
     | 
| 
       1101 
     | 
    
         
            -
             
     | 
| 
       1102 
     | 
    
         
            -
             
     | 
| 
       1103 
     | 
    
         
            -
             
     | 
| 
       1104 
     | 
    
         
            -
             
     | 
| 
       1105 
     | 
    
         
            -
             
     | 
| 
       1106 
     | 
    
         
            -
             
     | 
| 
       1107 
     | 
    
         
            -
            i 
     | 
| 
       1108 
     | 
    
         
            -
             
     | 
| 
       1109 
     | 
    
         
            -
             
     | 
| 
       1110 
     | 
    
         
            -
             
     | 
| 
       1111 
     | 
    
         
            -
            i 
     | 
| 
       1112 
     | 
    
         
            -
             
     | 
| 
       1113 
     | 
    
         
            -
             
     | 
| 
       1114 
     | 
    
         
            -
             
     | 
| 
       1115 
     | 
    
         
            -
             
     | 
| 
       1116 
     | 
    
         
            -
            i
         
     | 
| 
       1117 
     | 
    
         
            -
             
     | 
| 
       1118 
     | 
    
         
            -
             
     | 
| 
       1119 
     | 
    
         
            -
             
     | 
| 
       1120 
     | 
    
         
            -
             
     | 
| 
       1121 
     | 
    
         
            -
             
     | 
| 
       1122 
     | 
    
         
            -
            i
         
     | 
| 
       1123 
     | 
    
         
            -
            ;Ni:
         
     | 
| 
       1124 
     | 
    
         
            -
            avoidi;i	:zero_threadi;�i:vxi;�i
         
     | 
| 
       1125 
     | 
    
         
            -
            i:	sbufi:nthtogglenew1i:	pykei
         
     | 
| 
       1126 
     | 
    
         
            -
            ;i	;Di;�i:K######################################################################i;�i:print_revcompdesci;�i:",$i;�i:echoperlvi:sfindiubiub1gi;�i;�i:	seani:$|i:steffeni;oi;�i:lists_equi	;i
         
     | 
| 
       1127 
     | 
    
         
            -
            :helloperlvi:	leifi	;�i:eachcounti:mathgmpi;�i;�i:"$i!:mutexthr_namedowni;Si	;'i;�i:substrai;�i	;�i:bowdeni:zsji;[ i:clientconnecti;�i	:
         
     | 
| 
       1128 
     | 
    
         
            -
            ($/);i:	seqki:whoi;�	i;�i:
         
     | 
| 
       1129 
     | 
    
         
            -
            undefi:(()i;�i:	fibdi:update_hash_for_frami;i:memoizeacki;Di:inc_threadi;�i
         
     | 
| 
       1130 
     | 
    
         
            -
            ;Yi:0w1i:hash1_i;{iD;�i;�i;�i[:sysreadcsocki:]*$i;Ii;oi:fannkuch_ni:
         
     | 
| 
       1131 
     | 
    
         
            -
            dict_i:zsii;�i&:($)i:myistop0lengths60i;�i;i;�i;	i:ifcolori;�i;�i:091906i:margini;i;Ri:countni;i;�
         
     | 
| 
       1132 
     | 
    
         
            -
            i;�i:->{i;Gi:	len1i:cosimoi:cond_signalcounti:mymi:dyi;Ri:
         
     | 
| 
      
 1854 
     | 
    
         
            +
            outeri;�i;dDi:	seq_i	;>i;:i;�i;�i	;�i;�i;7!i:pushli2i:**$i:ackermannperl3perlvi;�7i:consumedni;�i;�i;;�i;� i:	myz0i;	i
         
     | 
| 
      
 1855 
     | 
    
         
            +
            ;]i:	)}++i:fibi;D-i[:
         
     | 
| 
      
 1856 
     | 
    
         
            +
            :myni	;9i;�i:dyi; i:print_revcompdesci;si;�i:sfindiubiub1gi;� i	;ai;�i	:
         
     | 
| 
      
 1857 
     | 
    
         
            +
            undefi:sfindiubiub1ogi;#*i:	1numi
         
     | 
| 
      
 1858 
     | 
    
         
            +
            ;�i;�1i:threadnewproduci:
         
     | 
| 
      
 1859 
     | 
    
         
            +
            ;]i;�i:total_meetingsni;\i	;�i;i:	)))[i:
         
     | 
| 
      
 1860 
     | 
    
         
            +
            ($/);i:	cntki;"/i
         
     | 
| 
      
 1861 
     | 
    
         
            +
            i;o6i;�-i:cexistsxii;�i;&i;�i;�Bi;M3i;5!i	:testargv0i;�i;Ci	:	vxsii;Ai;�i;3i:
         
     | 
| 
      
 1862 
     | 
    
         
            +
            ;\i;.i;i:
         
     | 
| 
      
 1863 
     | 
    
         
            +
            ($$$)i;�i:substrsoluti;`i;Ti;i
         
     | 
| 
      
 1864 
     | 
    
         
            +
            pool0i:r2gi:declari;�
         
     | 
| 
      
 1865 
     | 
    
         
            +
            ack_0i:'(['.(i	:	numni;>i	:181034i;=i;
         
     | 
| 
      
 1866 
     | 
    
         
            +
            i:splitazi:###i:z2bmuli;�(i;z'i;�#i*:threadsemaphori;�i;P,i:splicei
         
     | 
| 
      
 1867 
     | 
    
         
            +
            ;:i;N2i:	ifz0i;[8i:nestedloopperlvi;�i�;�*i; i;�i:splitni;�i;Hi;Gi;vi:
         
     | 
| 
      
 1868 
     | 
    
         
            +
            _nonei;�0i;xi:threadqueui;Ei;oi:(/^>/)i;i	:lists_equi	:	0123i;�*i;ti>:koenigi;~i9;�i:(\@i:helloperlvi;)i:
         
     | 
| 
      
 1869 
     | 
    
         
            +
            :corosemaphori:
         
     | 
| 
      
 1870 
     | 
    
         
            +
            pickni;�i:definedargv0i;y"i:
         
     | 
| 
      
 1871 
     | 
    
         
            +
            vecmii;>i;�i;VBi;�iR;�Ai;%3i:
         
     | 
| 
      
 1872 
     | 
    
         
            +
            ;wBi;5i:	0leni	:
         
     | 
| 
      
 1873 
     | 
    
         
            +
            chompi;{i;Wi:\(i:rewritteni;�i:
         
     | 
| 
      
 1874 
     | 
    
         
            +
            _joini;)	i;zi:	cnt_i	:
         
     | 
| 
      
 1875 
     | 
    
         
            +
            1lasti;$Di;�i;i:	..($i
         
     | 
| 
      
 1876 
     | 
    
         
            +
            :	len1i:last42i;�1i;�i	;�i;!i	;�i	:mathgmpnew_101i;�i;7i ;(i:fib_02i;�i:#}i;ri;�i:mutex0downi;�i:myiddescngenelisti;�i:takfp_210i:	($,,i:]||i:__package__i;�5i:zs_i;�i;�"i:pf_ineti
         
     | 
| 
      
 1877 
     | 
    
         
            +
            blessi;�>i;\ i	;�
         
     | 
| 
      
 1878 
     | 
    
         
            +
            i;Gi;�i:ivi;T<i:	for0i;�
         
     | 
| 
      
 1879 
     | 
    
         
            +
            ;�i	:	0seqi	:thrjoini:..$i/:scalarspliti:substrsslinelengthi:
         
     | 
| 
      
 1880 
     | 
    
         
            +
            i;�i	;� i:8dnmxnsievemxi;�i;�i:scalarnumi:threadsshari;?i;ui.:bottom_up_tree2i:ndndndni	;�i:resultni:ackermannperl2perlvi:	/));i:threadnewconsumi;Ki:	qwrai;�i;�4i;�i	:/\i:threadsemaphore0i;�i:162418i:two_thirdi;�6i;�i;�&i:
         
     | 
| 
      
 1881 
     | 
    
         
            +
            (/^/,i:contentseqkgii;�"i	:fib280i:ernestoi:ucjoini;�-i;�i.:
         
     | 
| 
      
 1882 
     | 
    
         
            +
            :K######################################################################i;i;�i;�i;�i:2_500_000i;�i;�i:cond_signi;�i;�i:ái;'i
         
     | 
| 
      
 1883 
     | 
    
         
            +
            i;�=i:streamlini;i;1i;�i:unshifti:usrbinperli/;Ei:	('',i;�i
         
     | 
| 
      
 1884 
     | 
    
         
            +
            hgvani;�i:substrss0ni:definedsendcsocki;Mi:	iidxi;^i	:1argv0i;�i::#i:usrdictwordsni;�&i:09ftriemanni:	vzsji:socketci;i;�.i:
         
     | 
| 
      
 1885 
     | 
    
         
            +
            12330i:print_revcompi;Ii:
         
     | 
| 
      
 1886 
     | 
    
         
            +
            +i%;i: bottom_up_treestretch_depthi:
         
     | 
| 
      
 1887 
     | 
    
         
            +
            myrowi:item_checki:-]i:smgi;�i:
         
     | 
| 
      
 1888 
     | 
    
         
            +
            myi1mi:/;i;W*i;ji;8ir:($)i:$!;i;q?i:stdinni;i:
         
     | 
| 
      
 1889 
     | 
    
         
            +
            mrtoni;1i;�i;�:i:	redoi:	(<>)i;�i:communi;�Ci	;$>i;_Ci;�i;i:	->[$i;�i:	z2_2i:mutexiddowni;`i;R"i	:nessarii:
         
     | 
| 
      
 1890 
     | 
    
         
            +
            clarki:
         
     | 
| 
      
 1891 
     | 
    
         
            +
            ($\@)i:chr60xi;Bi:vecmx10i;�i;H)i;Ri�;�"i;�i;�i:09ft1kk1ni;Ti:vxi:	vxsji:inaddr_loopbacki
         
     | 
| 
      
 1892 
     | 
    
         
            +
            mircoi:hsubstrsequence_frami;�i{;?i;�Ci;)i:
         
     | 
| 
      
 1893 
     | 
    
         
            +
            ;Ki:	lacki;�@i:selectcsocki;�i:
         
     | 
| 
      
 1894 
     | 
    
         
            +
            soreni;�Ci;�i;�i:
         
     | 
| 
      
 1895 
     | 
    
         
            +
            intn2i;�)i!:$@;i:
         
     | 
| 
      
 1896 
     | 
    
         
            +
            asynci	;�i%;�0i:contentlgii;�i;i;�Ci;�i
         
     | 
| 
      
 1897 
     | 
    
         
            +
            :181048i;�i
         
     | 
| 
      
 1898 
     | 
    
         
            +
            :scalarli1i:(-(i:gregguesti;�i	;�i:	nmaxi;�i&;
         
     | 
| 
      
 1899 
     | 
    
         
            +
            -i!;*i:	marci;�i;&i	:	(/[^i:$\)i;�i;iX;Yi;hi:masteri;5	i:$&i;�i;�i
         
     | 
| 
      
 1900 
     | 
    
         
            +
            :zsji;�i:
         
     | 
| 
      
 1901 
     | 
    
         
            +
            packli;i;Fi:shiftbooli;pi:>)i
         
     | 
| 
      
 1902 
     | 
    
         
            +
            :mydepthi;Oi:matrixperlvi;<i;�ia:(?:i;i:	})->i;�i:
         
     | 
| 
      
 1903 
     | 
    
         
            +
            qwggti:($$i:
         
     | 
| 
      
 1904 
     | 
    
         
            +
            questi;�i;(i:hash2perlvi;O+i!;i;94i:mathbigintnew0i:145635i:
         
     | 
| 
      
 1905 
     | 
    
         
            +
            kalevi;�Ci:toti;�5i:zsii:	='';i:
         
     | 
| 
      
 1906 
     | 
    
         
            +
            pjoini;�i:
         
     | 
| 
      
 1907 
     | 
    
         
            +
            myrrai;i;�i;)!i;;i:+/)i:mutex_i;i;cAi;m&i;8*i:takfp3ni;�i;bi:laimonai;�i%;#>i:
         
     | 
| 
      
 1908 
     | 
    
         
            +
            markui;Ti;�8i:xsji;�i:echoperlvi;N	i	:scalari;�i:$|i:treebuildi;�i:	>));i:	seqki:	dot_i:cosimoi;�i	;�i:
         
     | 
| 
      
 1909 
     | 
    
         
            +
            lhsumi:hernandeznovichi;�i:tili;,i:
         
     | 
| 
       1133 
1910 
     | 
    
         
             
            0lasti
         
     | 
| 
       1134 
     | 
    
         
            -
             
     | 
| 
       1135 
     | 
    
         
            -
             
     | 
| 
       1136 
     | 
    
         
            -
             
     | 
| 
       1137 
     | 
    
         
            -
             
     | 
| 
       1138 
     | 
    
         
            -
             
     | 
| 
       1139 
     | 
    
         
            -
             
     | 
| 
       1140 
     | 
    
         
            -
             
     | 
| 
       1141 
     | 
    
         
            -
             
     | 
| 
       1142 
     | 
    
         
            -
             
     | 
| 
       1143 
     | 
    
         
            -
             
     | 
| 
       1144 
     | 
    
         
            -
             
     | 
| 
       1145 
     | 
    
         
            -
            i 
     | 
| 
       1146 
     | 
    
         
            -
             
     | 
| 
       1147 
     | 
    
         
            -
             
     | 
| 
       1148 
     | 
    
         
            -
             
     | 
| 
       1149 
     | 
    
         
            -
             
     | 
| 
       1150 
     | 
    
         
            -
             
     | 
| 
       1151 
     | 
    
         
            -
             
     | 
| 
       1152 
     | 
    
         
            -
             
     | 
| 
       1153 
     | 
    
         
            -
             
     | 
| 
       1154 
     | 
    
         
            -
            i 
     | 
| 
       1155 
     | 
    
         
            -
             
     | 
| 
       1156 
     | 
    
         
            -
             
     | 
| 
       1157 
     | 
    
         
            -
             
     | 
| 
       1158 
     | 
    
         
            -
             
     | 
| 
       1159 
     | 
    
         
            -
             
     | 
| 
       1160 
     | 
    
         
            -
            i 
     | 
| 
       1161 
     | 
    
         
            -
             
     | 
| 
       1162 
     | 
    
         
            -
             
     | 
| 
       1163 
     | 
    
         
            -
             
     | 
| 
       1164 
     | 
    
         
            -
            i 
     | 
| 
       1165 
     | 
    
         
            -
             
     | 
| 
       1166 
     | 
    
         
            -
             
     | 
| 
       1167 
     | 
    
         
            -
             
     | 
| 
       1168 
     | 
    
         
            -
             
     | 
| 
       1169 
     | 
    
         
            -
             
     | 
| 
       1170 
     | 
    
         
            -
             
     | 
| 
       1171 
     | 
    
         
            -
             
     | 
| 
       1172 
     | 
    
         
            -
            ;�i 
     | 
| 
       1173 
     | 
    
         
            -
             
     | 
| 
       1174 
     | 
    
         
            -
             
     | 
| 
       1175 
     | 
    
         
            -
             
     | 
| 
       1176 
     | 
    
         
            -
             
     | 
| 
       1177 
     | 
    
         
            -
            i 
     | 
| 
       1178 
     | 
    
         
            -
             
     | 
| 
       1179 
     | 
    
         
            -
             
     | 
| 
       1180 
     | 
    
         
            -
             
     | 
| 
       1181 
     | 
    
         
            -
             
     | 
| 
       1182 
     | 
    
         
            -
             
     | 
| 
      
 1911 
     | 
    
         
            +
            ;�i
         
     | 
| 
      
 1912 
     | 
    
         
            +
            istopi;�i;bi;;i;�<i;|$i:pushrowi:item_checktree1i;(i;�i	;�i;i;b9i	:cond_waitcounti;�-i;�Ai
         
     | 
| 
      
 1913 
     | 
    
         
            +
            :pushlini;Ii;�!i;i;-i:/^i;�i	:mutexthr_namedowni;�i;�i;j1i;4i:nsieve_testni;Xi;>i;S	i�;Bi;$i;�i	;�i:cond_waiti;�i;h*i;�i	;ji;�Ai:l_codei
         
     | 
| 
      
 1914 
     | 
    
         
            +
            takz1i:ackermannperlvi;�i:kjetili:
         
     | 
| 
      
 1915 
     | 
    
         
            +
            '])';i;,im;i:toli;?i:sysreadcsocki:vecveci11i;�i;�i
         
     | 
| 
      
 1916 
     | 
    
         
            +
            ;�i-;�i:	hihii:
         
     | 
| 
      
 1917 
     | 
    
         
            +
            dict_i:09ftalterni:
         
     | 
| 
      
 1918 
     | 
    
         
            +
            seperi:getprotobynametcpi;i
         
     | 
| 
      
 1919 
     | 
    
         
            +
            tree2i	:(/$i:	trndi;�Ai8:).'])';i	:prodconsperlvi;Si:
         
     | 
| 
      
 1920 
     | 
    
         
            +
            :
         
     | 
| 
      
 1921 
     | 
    
         
            +
            09999i:countii	;�6i;v/i:ifintzzi;�i;�%i:	($){i;Xi ;�i:
         
     | 
| 
      
 1922 
     | 
    
         
            +
            12331i;Xi:	pappi;Hi	;�3i;ii:ifmeeti;[i/;.i;S$i;i;�Bi;i:080845i:l_filei;i):	li1ii;�i;8i;�'i;DCi	;yi;�+i;�i
         
     | 
| 
      
 1923 
     | 
    
         
            +
            :
         
     | 
| 
      
 1924 
     | 
    
         
            +
            ]->[$i;vAi;�i;ji;i:	z0z2i;�i
         
     | 
| 
      
 1925 
     | 
    
         
            +
            :hashperlvi;]i:165128i;�i:dataidi;�i;�i:roberti;�i:myiddescsni;�i:socketcsocki;C	i;2i;�i;�i;^i	:
         
     | 
| 
      
 1926 
     | 
    
         
            +
            :xitostri;�.i;	i;�i:printa4tofixed9i;�i;Wi:keysunshiftki;�Di;	i	;^i;ji:resultli;)i:treenodeprototypeitemchecki;�i;iG;
         
     | 
| 
      
 1927 
     | 
    
         
            +
            i;Mi:compswstaacgrymkvhdbni;�i:functionpxpypzi;N5i;�i
         
     | 
| 
      
 1928 
     | 
    
         
            +
            i:flagsorigconcati:	1i31i:bodyjmassi	;�i;Gi;;i:seqsubstringseqii:ntofixed1i;q i:
         
     | 
| 
      
 1929 
     | 
    
         
            +
            ;N	i;�0i:tak302010tofixed1i:li1tmpi;�i
         
     | 
| 
      
 1930 
     | 
    
         
            +
            rand1i;vi:
         
     | 
| 
      
 1931 
     | 
    
         
            +
            padm9i;�i
         
     | 
| 
      
 1932 
     | 
    
         
            +
            subski:nthtoggleprototypi:forvari;�i:flagsorigi:bodyizi;Xi; i;pi;�i;i:tparseintli:primesisprimi	:
         
     | 
| 
      
 1933 
     | 
    
         
            +
            foo_ii;�i�;�i;�'i:tharmoni:findseqi:aggacttaaatttaagtcctigi;�6i:stringfromcharcodebyte_acci;AiZ;gi:treenodenullnullitemi:	rseqi:thisbodiesii	;si;�4i;i;�8i;�i:	r002i;pi:atauuvwi:numbertostri;"i;�/i;ki;�i;�i;i:fastarandom5ni;�i;�i:printa1tofixed9i;F1i;DCi	;�i:(/>.*\i;Yi;si:printack3i;�i�:li2pushtmpi;� i;�#i:randmaxi;�i;�i:
         
     | 
| 
      
 1934 
     | 
    
         
            +
            i�;[i%;ai:bodyjxi;Hi;�i:tablelasti;�6i:(printspectralnormarguments0tofixed9i:padnsievemflags8i;�i;�i;0i;�i
         
     | 
| 
      
 1935 
     | 
    
         
            +
            ;i:sjoerdi;�!i;Bi:bodyxyzvxvyvzmassi;i%:printpfannkucheni:bodyivzi;zi;�-i
         
     | 
| 
      
 1936 
     | 
    
         
            +
            ;&i;`i;�i;�&i;[i;�i;�&i:{},i:hash2ai;8.i:printa9tofixed9i:lmatchi;:i:inputlengthi;u.i;�Bi;i: bottomuptreeidepthitemchecki;�i;i:printli;�i
         
     | 
| 
      
 1937 
     | 
    
         
            +
            bodyji;�iD;�i;�i:homosapi;�Ai;^i;vi;�i:arraym1i;Li;G)i;�i:xitostring16i;Yi:
         
     | 
| 
      
 1938 
     | 
    
         
            +
            t1kk1i;�i	;�i$;�0i:arri:ifki;�Ai;�i:treenodeleftrightitemi;i;i:li1lengthi:keyswsatugcyrkmbdhvni;yi;�4i: bodyprototypeoffsetmomentumi:	b002i;�1i	:	auuvi:whileai;Ki;-i;�i;\i;�5i:array10000n315i;i;i;i;�i;.2i;i:parseintarguments0i:fortmpi;�.i;oi;�i;�i;i;�i	:printcleni:printtogglevalui;�i	;�i:flagsorigii;�*i:bodyivxi;�0i	;1Di;Ti;�i:
         
     | 
| 
      
 1939 
     | 
    
         
            +
            takn3i:	m315i;"/i
         
     | 
| 
      
 1940 
     | 
    
         
            +
            :undefini;�i;�i; 2i;Ci:
         
     | 
| 
      
 1941 
     | 
    
         
            +
            atuwvi;i;
         
     | 
| 
      
 1942 
     | 
    
         
            +
            ;zi
         
     | 
| 
      
 1943 
     | 
    
         
            +
            ;+i:	[]).i:printtak302010i;�1i;Ii�;�i;�i:1ijij12i1i:thisvii;q+i;ri;(3i:	c012i:paddedcount9i:nbodysystemprototypeenergii;	i;�i;
         
     | 
| 
      
 1944 
     | 
    
         
            +
            +i:ilinelengthi;8i;&i;�2i:(/^>/))i;Li;�"i;^0i:inputreplaceki:togglecallthii;�
         
     | 
| 
      
 1945 
     | 
    
         
            +
            i;�i:10000ni;i;�i:bodyjii;�Di
         
     | 
| 
      
 1946 
     | 
    
         
            +
            ;�i:printstrlengthi:ntostri; i:i10000i;Zi;�i:printa6tofixed9i;Ji:fntofixed3i;>i:agactgtaaatttacagtctigi;�6i:p4ni:bottomuptreeitemdepthi;�Ci;�i;�4i:thisbodieslengthi;	i:	('')i:	n002i;�'i:nani:ajii;ci:padnumberwidthi;�i:printthrei;]	i	;�i;wi;3i;�Ci	:
         
     | 
| 
      
 1947 
     | 
    
         
            +
            ))));i;8i;�i;�Ai:
         
     | 
| 
      
 1948 
     | 
    
         
            +
            ;-i:fastarandomni;Ii
         
     | 
| 
      
 1949 
     | 
    
         
            +
            ;�i;�6i:	="",i;�i:printhash1foo_1i:rand100i;�*i1;%i:	()){i;�i:inputreplacenngi:togglestart_sti;9i
         
     | 
| 
      
 1950 
     | 
    
         
            +
            padm8i;�i;f'i:printci:tflinti;�i;?i:keyssortfunctionai:agggtaaatttaccctigi;�"i:
         
     | 
| 
      
 1951 
     | 
    
         
            +
            whilei:thisleftnuli;ki	;�i;�i;�%i;�i:
         
     | 
| 
      
 1952 
     | 
    
         
            +
            seqlii;
         
     | 
| 
      
 1953 
     | 
    
         
            +
            i;'5i:body00i:	h002i;�i;�i:
         
     | 
| 
      
 1954 
     | 
    
         
            +
            ;ui;si;"i:arrayn1i;�Bi:
         
     | 
| 
      
 1955 
     | 
    
         
            +
            i;)i	;�i%;riF:printcounti:bodyivii;$i;�i	;�i:seqilenouti;Ai:isprimei5i;�i;�i;�i:	forai;Ki;i
         
     | 
| 
      
 1956 
     | 
    
         
            +
            ;V i:talterni:readlini
         
     | 
| 
      
 1957 
     | 
    
         
            +
            ;h3i;�i:agggtaacgtacgttaccctigi;@i:
         
     | 
| 
      
 1958 
     | 
    
         
            +
            jsizei;�i;`i:	y002i;"Bi;�i	:printpartialsumtofixed9i;�i:printa3tofixed9i;�i;�i	;�0i:sortseqi;�&i;�i;�i;i1i;S	i,;i�;i;Ki;�i:li2tmpi:printy0i;�i;�4i:
         
     | 
| 
      
 1959 
     | 
    
         
            +
            ;|#i;�Bi:	t027i:<<(i:printbodiesenergytofixed9i;�i;n3i;�i:
         
     | 
| 
      
 1960 
     | 
    
         
            +
            ;T2i;�i;�:i;�#i;�
         
     | 
| 
      
 1961 
     | 
    
         
            +
            i;*i;�7i:printileni:nthtoggleprototypeactivi:perm1i1tostri;Gi;~i6:array8193i:0xffffffffi;�*i
         
     | 
| 
      
 1962 
     | 
    
         
            +
            ;�i:bodyjzi;�i;�0i:nlenouti;i;�i;i:;i:printti;�i:
         
     | 
| 
      
 1963 
     | 
    
         
            +
            ;	i;�i
         
     | 
| 
      
 1964 
     | 
    
         
            +
            ;�+i:
         
     | 
| 
      
 1965 
     | 
    
         
            +
            :nlinelengthi;	i
         
     | 
| 
      
 1966 
     | 
    
         
            +
            :isprimej5i;^i;-&i;�Fi;�i:
         
     | 
| 
      
 1967 
     | 
    
         
            +
            ackmni;h1i;�i;m*i2;ei;Vi:inputmatchseqsii;�i:toggleprototypeactivi;�i;i	;iL;�i:bodyiii;�i;i:fastarepeatni:padnwidthi:array10000i;s>i:
         
     | 
| 
      
 1968 
     | 
    
         
            +
            atuuvi:printxi;	i;y	i;i;i	:fastarandom3ni;Gi;�1i;�i:printhelloi;�i;�i;i;Ii:fib270ntofixed1i;;i
         
     | 
| 
      
 1969 
     | 
    
         
            +
            ;�i:
         
     | 
| 
      
 1970 
     | 
    
         
            +
            135emi:
         
     | 
| 
      
 1971 
     | 
    
         
            +
            125emi:backgroundattachmentfixi:urlbg_contentgifi:
         
     | 
| 
      
 1972 
     | 
    
         
            +
            bispoi:width81pxi;�i:
         
     | 
| 
      
 1973 
     | 
    
         
            +
            weirdi:b99ab8i:
         
     | 
| 
      
 1974 
     | 
    
         
            +
            513pxi:top8pxi:
         
     | 
| 
      
 1975 
     | 
    
         
            +
            432pxi;@i:
         
     | 
| 
      
 1976 
     | 
    
         
            +
            469pxi:urlttls2gifi:urlimgleft_larchivesgifi;*i:pparticipi;� i:rgb903248i:urlheading04gifi:backgroundcolorf3f3f3i:margintop110pxi:urlsculpturesjpgi:height27pxi
         
     | 
| 
      
 1977 
     | 
    
         
            +
            :
         
     | 
| 
      
 1978 
     | 
    
         
            +
            980pxi:urlside_01gifi:textindent0i	:backgroundcolor3399ffi:__________footer__________i:urlparticbggifi:zindex2i:divextradiv2i:-----*/i:f2f2f2i:&backgroundurlrequirements_backgifi:	timoi:experimenti:width126pxi:backgroundurllistbggifi:urlzengardengifi:urlberryflavourgifi:xsmalli:repeatiiz;xi:padding102pxi:padding20pxi
         
     | 
| 
      
 1979 
     | 
    
         
            +
            :margin55pxi:"aactivetextdecorationunderlini:;/*i:galeoni:7pxi1:bandwidthi:8pt14pti:dinmediumi:	peaci: backgroundurlexplanationjpgi:80addressi: urlstylequick_summary_p1jpgi:httpwwwmezzobluecomi:paddingtop3pxi:backgroundcolorwhiti:left197pxi:
         
     | 
| 
      
 1980 
     | 
    
         
            +
            :urlh3_archivesjpgi;�i:urlbg_bodygifi:138i:backgroundurlbulletgifi:
         
     | 
| 
      
 1981 
     | 
    
         
            +
            oxtoni:urlh_participationgifi:9e2e2fi
         
     | 
| 
      
 1982 
     | 
    
         
            +
            :d70000i:urlheader1gifi:
         
     | 
| 
      
 1983 
     | 
    
         
            +
            ramoni:ecca99i
         
     | 
| 
      
 1984 
     | 
    
         
            +
            146pxi;�i:"backgroundimageurlarchivesgifi:
         
     | 
| 
      
 1985 
     | 
    
         
            +
            759pxi;-i:urlboyjpgi:urlimgleft_lselectgifi:pexplani:
         
     | 
| 
      
 1986 
     | 
    
         
            +
            188pxi:170i:urlbotmenugifi:urlimgsamplegifi:avisiti�:993300i:urlheading03gifi:
         
     | 
| 
      
 1987 
     | 
    
         
            +
            -----i:0c3379i;�-i:urlrequirements_h3gifi:"backgroundurlbenefits_backgifi:outbacki:urlimagesbg_preamblegifi:urldotgifi;Mi:urlh3_the_roadgifi:backgroundurlcandeljpgi:606060i:overflowhiddeni:backgroundcadeb9i;�i:f4f0e6i:urlsidejpgi;�i:"backgroundurlr3_zc_summarygifi:left130pxi:colora1a07bi:#avisitedtextdecorationunderlini;i:819effi:urlbenefits_bgjpgi:
         
     | 
| 
      
 1988 
     | 
    
         
            +
            240pxi;Di:172104i:urltextbgjpgi:
         
     | 
| 
      
 1989 
     | 
    
         
            +
            415pxi:urlimagespageheader_p2jpgi:extradiv6i:padding74pxi:background555040i:httpwwwmeyerwebcomi:urllampgifi:height15pxi:
         
     | 
| 
      
 1990 
     | 
    
         
            +
            a3181i:p###########################################################################################################i:paddingleft25pxi:centerfoldi;�i:displayblockcolori:spanquicksummarii:
         
     | 
| 
      
 1991 
     | 
    
         
            +
            accidi:urlresources_bggifi:width124pxi:
         
     | 
| 
      
 1992 
     | 
    
         
            +
            laughi:rgb1796396i:urlheading02gifi:
         
     | 
| 
      
 1993 
     | 
    
         
            +
            665pxi:width240pxi
         
     | 
| 
      
 1994 
     | 
    
         
            +
            :
         
     | 
| 
      
 1995 
     | 
    
         
            +
            633pxi:
         
     | 
| 
      
 1996 
     | 
    
         
            +
            recovi:08bi:backgroundcolorffffffi;
         
     | 
| 
      
 1997 
     | 
    
         
            +
            i:urlimageslist_bggifi:urlexplainationbggifi:urlheadline_archivesgifi:005e00i:urlbenefits_h3gifi:
         
     | 
| 
      
 1998 
     | 
    
         
            +
            730pxi:'backgroundurlparticipation_backgifi:
         
     | 
| 
      
 1999 
     | 
    
         
            +
            icicli:da8c11i
         
     | 
| 
      
 2000 
     | 
    
         
            +
            :renderi:headlini:
         
     | 
| 
      
 2001 
     | 
    
         
            +
            majori:backgroundurlpreamblejpgi:height120pxi	:	sheai:urlninjapacgifi:paddingtop5pxi:width520pxi;�i:	07emi	:&fontfamilyarialhelveticasansserifi:height220pxbackgroundi:urlh3_selectjpgi:antiquageorgiami:o##########################################################################################################i:paddingbottom6pxi:	----i:urlh_sowhatgifi:%backgroundimageurllinklist_bggifi:
         
     | 
| 
      
 2002 
     | 
    
         
            +
            82150i:199i;�i:fcci: backgroundimageurldesigngifi: httpwwwemaginacioncomargeeki:
         
     | 
| 
      
 2003 
     | 
    
         
            +
            achovi$:	47pxi:h3lselecti;F!i:urlimgsummarytxt_2gifi:5dbee4i:
         
     | 
| 
      
 2004 
     | 
    
         
            +
            alinki�:
         
     | 
| 
      
 2005 
     | 
    
         
            +
            capiti	:urlheading01gifi:urlpreamblebggifi:marginbottom8pxi:borderleft2pxi:bourbonnaii:marginleft112pxi:1650pxi:urlquicksumpngi:urlcurlbiggifi:urlimagesleftside_bggifi:urlheadline_selectgifi:
         
     | 
| 
      
 2006 
     | 
    
         
            +
            546pxi;�i:urlpraeamble_bgjpgi:	13emi:%backgroundurlexplanation_backgifi:urlhrzlinegifi;�i:width119pxi:urlintrogifi:fontsize6emi:
         
     | 
| 
      
 2007 
     | 
    
         
            +
            123pxi:116i;/i:xsmall16emi:paddingrighti':
         
     | 
| 
      
 2008 
     | 
    
         
            +
            305pxi;�i:d8ci:124i:liststyleimageurlbulletgifi:
         
     | 
| 
      
 2009 
     | 
    
         
            +
            161pxi
         
     | 
| 
      
 2010 
     | 
    
         
            +
            ;�$i:emaginacioni;J'i	:urlsteinegifi;	&i	:width142pxi;�9i:width220pxi:
         
     | 
| 
      
 2011 
     | 
    
         
            +
            153pxi;�i:textindent10000pxi:122i:
         
     | 
| 
      
 2012 
     | 
    
         
            +
            747pxi	:1946pxi: urlmarginal_boxes_middlegifi:1180pxi:urlparticipation_h3gifi:height107pxi:007f00i:width222pxi:urlimagesbg_blackcombjpgi:pseudoclassi:urlh3_resourcesgifi:416d8ei:urldotlinkgifi:backgroundurlbellajpgi:p2hoveri:color73552ai:4pxi-:florali:edbi:supportingtexti�: fontsize11pxmargin0padding0i:urlzengardeniagifi:urlimagesbullet_ovalgifi:letterspacing003emi:width70i:048i:urlrelaxpngi:urlbg_divide1gifi:99cc00i;�i:415pxtextaligncenti:urlimageslinklist_backjpgi:extradiv3i:b6bb68i:backgroundcolorfffi:
         
     | 
| 
      
 2013 
     | 
    
         
            +
            meyeri:b9e0ffi:width170pxi:top1932pxi:engravi:londoni:height6embackgroundi:urlbullet_whitegifi:width14emi;ji:
         
     | 
| 
      
 2014 
     | 
    
         
            +
            :
         
     | 
| 
      
 2015 
     | 
    
         
            +
            420pxi:rgb126164139i:urlheadjpgi:
         
     | 
| 
      
 2016 
     | 
    
         
            +
            198pxi	:cf3i:height54pxi;
         
     | 
| 
      
 2017 
     | 
    
         
            +
            325pxi;&&i:
         
     | 
| 
      
 2018 
     | 
    
         
            +
            chieni:padding02emi:9f9667i:urlresourcesjpgi
         
     | 
| 
      
 2019 
     | 
    
         
            +
            291pxi:h3benefiti;u!i:borderie:---------------------------------------*/i:height0i	:marginleft2pxi:remembri:
         
     | 
| 
      
 2020 
     | 
    
         
            +
            290pxi:	opaci:	6515i:urlli_elementgifi:
         
     | 
| 
      
 2021 
     | 
    
         
            +
            630pxi:
         
     | 
| 
      
 2022 
     | 
    
         
            +
            475pxi:padding19pxi:urlselectdesignjpgi:
         
     | 
| 
      
 2023 
     | 
    
         
            +
            460pxi:browseri:
         
     | 
| 
      
 2024 
     | 
    
         
            +
            231pxi:urlh3_archivesgifi:acolord6ae73i:&p1hoverp2hoverp3hoverp4hoverp5hovi:height320pxi:urlcontainergifi:fef6fai	:cb9i:753i:preambliF:urldropsmain_titlejpgi: backgroundurlr3_zc_titlegifi:urlarchivespngi:urlimagesbullet_stahgifi:textindent5000pxi:margin18pxi:colorc5e1ffi:26ai	:height60pxi
         
     | 
| 
      
 2025 
     | 
    
         
            +
            Gi:
         
     | 
| 
      
 2026 
     | 
    
         
            +
            075emi:width577pxi:fontsize150i:urlli_bgjpgi:33eeffi:marginright0pxi:818181i:"urli_supportingtext_headergifi:colorc20000i:width227pxi:
         
     | 
| 
      
 2027 
     | 
    
         
            +
            340pxi:urlfavouritesgifi:margin25pxi
         
     | 
| 
      
 2028 
     | 
    
         
            +
            ;+i:urlpictogifi: httpwwwemaginacioncomarhacki:a03e19i:urlfooter_bggifi;A&i:bottom70pxi:9f916bi:urlimgleft_bg2jpgi:urlarchivesjpgi
         
     | 
| 
      
 2029 
     | 
    
         
            +
            greeci:url5gifi:	23pxi:height307pxi;t$i:height245pxi:liststylepositi:
         
     | 
| 
      
 2030 
     | 
    
         
            +
            143pxi:f6f1c0i:urlimagestit_04gifi:
         
     | 
| 
      
 2031 
     | 
    
         
            +
            440pxi: urlmarginal_boxes_bottomgifi:
         
     | 
| 
      
 2032 
     | 
    
         
            +
            209pxi:!backgroundurltheroad_backgifi:urlquicksummarygifi:urlh3_favoritesgifi:688fbai:bebcadi;�!i;^i:backgroundurlrgifi:a68858i:
         
     | 
| 
      
 2033 
     | 
    
         
            +
            493pxi:top98pxi:)backgroundimageurlfondoparagraph1gifi:cd9caei:ec9i;Qi;ciL:height190pxi:!urlimagesbullet_flower_ongifi:height70pxi:height14pxi:quicksummarytextaligncenti:urlpartcipation_bgjpgi:9pxi':d6decai;�+i:urlbg_dividegifi:113i:urlgoldenoldiesgifi:urlstylepage_headerjpgi:sidebari:urlbgendjpgi:108108cssi:width177pxi:
         
     | 
| 
      
 2034 
     | 
    
         
            +
            431pxi:353535i:backgroundcolor66992di;T
         
     | 
| 
      
 2035 
     | 
    
         
            +
            :f2e1eci:cabrerai:feffffi
         
     | 
| 
      
 2036 
     | 
    
         
            +
            :	guidi:fffcf1i:urllselect_a_bggifi:
         
     | 
| 
      
 2037 
     | 
    
         
            +
            672pxi;i:urlfavoritesjpgi:width475pxi:backgroundurltheroadgifi;�!i:	10pti:fffi�:urltopmenugifi;�i:,-------------------------------------*/i:
         
     | 
| 
      
 2038 
     | 
    
         
            +
            195pxi:
         
     | 
| 
      
 2039 
     | 
    
         
            +
            410pxi	:urlimagestit_03gifi:
         
     | 
| 
      
 2040 
     | 
    
         
            +
            399pxi:height69pxi:%backgroundimageurllinklist_bkgifi:urlimagesbg_bodyjpgi;�i:arialhelveticasansserifi;�i:width420pxi:urllibggifi:
         
     | 
| 
      
 2041 
     | 
    
         
            +
            :httpwwwthoughtanomaliescomi:urlplaylistgifi:height75pxi:
         
     | 
| 
      
 2042 
     | 
    
         
            +
            petali:urlh3resgifi;�i:urlpaperbgjpgi;g	i:
         
     | 
| 
      
 2043 
     | 
    
         
            +
            321pxi:b74213i	:color436023i:left250pxi:61a7bci:javieri;�i:ffae00i
         
     | 
| 
      
 2044 
     | 
    
         
            +
            ;-i:trebucheti%:paddingleft380pxi:urldesignsjpgi:	92pxi:fontsize90i:
         
     | 
| 
      
 2045 
     | 
    
         
            +
            grandi:urllresourceshgifi:	94pxi	:clearrighti	:backgroundimageurltitlegifi:url3gifi:colorcccccci:
         
     | 
| 
      
 2046 
     | 
    
         
            +
            675pxi:urlroadtoenlightenmentgifi:urlimagestit_02gifi:rightautoi:backgroundurltxt_backgifi:lineheight12pxi:urlh3_selectgifi:T_______________________________________________________________________________i
         
     | 
| 
      
 2047 
     | 
    
         
            +
            :144i;)"i:backgroundurlauthorjpgi:urllibttmbggifi:left405pxi:
         
     | 
| 
      
 2048 
     | 
    
         
            +
            100pxi+;�i;�i:urlfondoparagraphbottomgifi:bd4d0di:padding190pxi:3d82adi
         
     | 
| 
      
 2049 
     | 
    
         
            +
            :f287f8i: urlimagestitle_resourcesgifi:
         
     | 
| 
      
 2050 
     | 
    
         
            +
            :5b2c02i:simmoni:header3i:urlh3arcgifi;�(i:width640pxi:
         
     | 
| 
      
 2051 
     | 
    
         
            +
            ordeni;>i":bottom0i:777777i:alinkavisiti:
         
     | 
| 
      
 2052 
     | 
    
         
            +
            106pxi:top1070pxi:	78pxi:urlmfootgifi:yokobui:160605i;�&i:dfe3bai:margintop46pxi:185i:urlimgtop_bgjpgi:	80pxi:width230pxi:
         
     | 
| 
      
 2053 
     | 
    
         
            +
            320pxi:urlttlsgifi:5b5962i:
         
     | 
| 
      
 2054 
     | 
    
         
            +
            :
         
     | 
| 
      
 2055 
     | 
    
         
            +
            533pxi:urllselecthgifi:floatrighti:margintop15pxi:urlsidebar_part_1gifi:
         
     | 
| 
      
 2056 
     | 
    
         
            +
            588pxi:__________side__________i;�i{:urlimagesleafgifi:
         
     | 
| 
      
 2057 
     | 
    
         
            +
            :backgroundnoni:	21sti:preampli:$backgroundurlh1_requirementsgifi:
         
     | 
| 
      
 2058 
     | 
    
         
            +
            505pxi:060i:httpwwwmariocarbonicomi:----------i;D"i:*backgroundurlmenu_droite_fd_bottomjpgi:urlstar_overgifi:urlfooterlogogifi:	14emi
         
     | 
| 
      
 2059 
     | 
    
         
            +
            :httpyuanqingblogspotcomi:positionabsolutit:&backgroundimageurlrequirementsjpgi:d48ea8i:efece3i:width570pxi:urlbg_li_hoverpngi:urlimagestitle_archivesgifi:top40pxi:backgroundurlbyegifi:
         
     | 
| 
      
 2060 
     | 
    
         
            +
            167pxi:backgroundposition100pxi:333i!:condensi:
         
     | 
| 
      
 2061 
     | 
    
         
            +
            310pxi:schoolbooki
         
     | 
| 
      
 2062 
     | 
    
         
            +
            :	halli:urlh3selgifi:fontsize110i;�i:urlfooterbgjpgi;�i: /**************************i:left265pxi;�1i:height35emi;
         
     | 
| 
      
 2063 
     | 
    
         
            +
            )i:urlhovergifi;�iP:backgroundurlarchivesgifi:urlpage_headerjpgi:paddingbottom14pxi	:urlarchivesgifi;�i#:positionfixi:bodycontaini:colore7f9d3i:
         
     | 
| 
      
 2064 
     | 
    
         
            +
            115pxi:urlgirlgifi:42443ai;|i:
         
     | 
| 
      
 2065 
     | 
    
         
            +
            135pxi;3i:height46pxi:
         
     | 
| 
      
 2066 
     | 
    
         
            +
            touchi:urlfooter_bgjpgi:	95pxi	:	70pxi:bugi:-spanextradiv3extradiv4extradiv5extradiv6i:artisti:textaligni�;�i:urlimgsummarybgjpgi:	e2ebi;N	i�:letterspacing1pxi	:backgroundimageurlzs5gifi:sani:aa7846i:
         
     | 
| 
      
 2067 
     | 
    
         
            +
            352pxi:fa0i:width290pxi:url2gifi:
         
     | 
| 
      
 2068 
     | 
    
         
            +
            170pxi:urlcurlsmallgifi:1375pxi:urlimagestit_01gifi:urlcatgifi: urlheadline_requirementsgifi:72141ai:margin7pxi:595339i;IiL:urlpreamble_h3gifi:backgroundurlh1_benefitgifi:
         
     | 
| 
      
 2069 
     | 
    
         
            +
            :marginleft42pxi:width112pxi:color81b4cfi:windowi:urlsowhatisitabout_bgjpgi:urlbg_headerjpgi:fontstretchi;ui
         
     | 
| 
      
 2070 
     | 
    
         
            +
            :paddingright0pxi:extradiv1i1:urlbargifi;Aih:urlreqgifi:	hidei:borderbottom5pxi:urlpicsresources_headerjpgi:width324pxi	:dollari:lselectlii:top1190pxi:,#i]:left205pxi:httpwwwpixelflexmediacomi:divfooti:e6e9cdi:height17pxi
         
     | 
| 
      
 2071 
     | 
    
         
            +
            253pxi:larchivi�:
         
     | 
| 
      
 2072 
     | 
    
         
            +
            129pxi:d07b00i:
         
     | 
| 
      
 2073 
     | 
    
         
            +
            191pxi	:height615pxi:
         
     | 
| 
      
 2074 
     | 
    
         
            +
            430pxi:
         
     | 
| 
      
 2075 
     | 
    
         
            +
            760pxi:margincollpasi:urlimgcontainer_bgjpgi:spanlresourci:endlessi;~i:left5000pxi	:127i:httpwwwklavinacomi:margintop30pxi:98b974i	:lucidai":lineheightnormi:aaa08ci;�i:colorccddcbi:height35pxi:
         
     | 
| 
      
 2076 
     | 
    
         
            +
            470pxi:urlbottlegifi:urlbgpreamblegifi:D===============================================================i:importantheighti
         
     | 
| 
      
 2077 
     | 
    
         
            +
            marioi:
         
     | 
| 
      
 2078 
     | 
    
         
            +
            hoveri:liststyleimageurlclougifi:c3a680i:urlmenubggifi:7pti:	yuani	:fontstyleitali$:	12emi:'backgroundimageurlparticipationjpgi;�i:1200pxi:urlquicksummaryjpgi:background0a3443i:%================================i:#urlimagestitle_requirementsgifi:backgroundfcci:
         
     | 
| 
      
 2079 
     | 
    
         
            +
            160pxi:b942c0i	:width440pxi:right128pxi;�:i
         
     | 
| 
      
 2080 
     | 
    
         
            +
            :cochini
         
     | 
| 
      
 2081 
     | 
    
         
            +
            :paddingleft0pxi:e6ad6ci:gardenit:urlh3reqgifi:c17535i	:urlstylebg_containergifi:urlpicsarchives_headerjpgi:width330pxi:urlmediaresourcesgifi:width455pxi;,i;oi;�i;B$i:f2f4d8i:backgroundurlselectgifi
         
     | 
| 
      
 2082 
     | 
    
         
            +
            :%)i:bbb5a2i:Z************************************************************************************/i:urlreq_btrflysgifi:*backgroundurlr3_zen666_larchive_bgjpgi:
         
     | 
| 
      
 2083 
     | 
    
         
            +
            83133i:urldesignlistgifi:madi:
         
     | 
| 
      
 2084 
     | 
    
         
            +
            229pxi:
         
     | 
| 
      
 2085 
     | 
    
         
            +
            kleini;�1i:backgroundurlimg_4pngi:urlh3_benefitsgifi:2b0101i	:fff5d9i:76693ci:f4f2eai:spanlarchi:
         
     | 
| 
      
 2086 
     | 
    
         
            +
            703pxi;�i:url1gifi:1260pxi:text__________i:156i:B=============================================================i:003399i:!urlheadline_participationgifi:&backgroundurlquicksummary_backgifi:7ecdffi:urlhead1gifi:
         
     | 
| 
      
 2087 
     | 
    
         
            +
            182pxi	:backgroundurlh1_sowhatgifi:blackcombi:
         
     | 
| 
      
 2088 
     | 
    
         
            +
            rgb70i:url700_28jpgi:ulpaddingtop0pxi:urlhead_resourcesgifi:db7762i:urlbengifi:color555040i:zeniv:width245pxi:urlmediaarchivesgifi:
         
     | 
| 
      
 2089 
     | 
    
         
            +
            425pxi
         
     | 
| 
      
 2090 
     | 
    
         
            +
            :paddingleft12pxi:%,i:&backgroundimageurlbenefits_hdrgifi:ff9f9fi:)backgroundurlr3_zen666_lselect_bgjpgi:
         
     | 
| 
      
 2091 
     | 
    
         
            +
            175pxi:lselectia:
         
     | 
| 
      
 2092 
     | 
    
         
            +
            434pxi
         
     | 
| 
      
 2093 
     | 
    
         
            +
            :bulleti:zindex4i:left580pxi:
         
     | 
| 
      
 2094 
     | 
    
         
            +
            435pxi;�i:
         
     | 
| 
      
 2095 
     | 
    
         
            +
            manfri:3000pxi:	axeli:width157pxi:urlh3_participationgifi:borderwidthi
         
     | 
| 
      
 2096 
     | 
    
         
            +
            :
         
     | 
| 
      
 2097 
     | 
    
         
            +
            246pxi:nowrapi:
         
     | 
| 
      
 2098 
     | 
    
         
            +
            147pxi
         
     | 
| 
      
 2099 
     | 
    
         
            +
            :
         
     | 
| 
      
 2100 
     | 
    
         
            +
            250pxi:spanlselecti:
         
     | 
| 
      
 2101 
     | 
    
         
            +
            sheeti:*{i;u#i;6i:;/**/}i;�i{:
         
     | 
| 
      
 2102 
     | 
    
         
            +
            guntai:	54pxi:backgroundimageurlzs3gifi:urlpagebggifi:textindent1emi:cbdaf8i:ccddcbi:margintop20pxi:
         
     | 
| 
      
 2103 
     | 
    
         
            +
            142pxi	:	handi:__________supporti;�i:
         
     | 
| 
      
 2104 
     | 
    
         
            +
            254pxi	:@===========================================================i:urlimagesarrowgifi:050i:urlheadline_explanationgifi:height82pxi:pageheaderhovi:
         
     | 
| 
      
 2105 
     | 
    
         
            +
            213pxi:height43pxi
         
     | 
| 
      
 2106 
     | 
    
         
            +
            :	bowli:color9c5600i:urlhdrescgifi::;i;�)i:pixelisi:marginbottom10pxi	:#backgroundimageurltheroadtojpgi:marshali:beckeri;�iY:httpwwwjonnyblaircouki:urlh3downloadgifi:rgb429242i;�i:$urlimagestitle_participationgifi:width650pxi:urlrequirementspngi;0i:backgroundurldownloadgifi:color3c6faci:httpwwwinfofundpacbesmai:
         
     | 
| 
      
 2107 
     | 
    
         
            +
            187pxi:paddingright6pxi:bbbbbbi:
         
     | 
| 
      
 2108 
     | 
    
         
            +
            178pxi:b6c77bi:font11px54pxi;>i:urlbackground_containergifi:+backgroundimageurlparticipation_hdrgifi:af0000i:width131pxi:
         
     | 
| 
      
 2109 
     | 
    
         
            +
            326pxi:
         
     | 
| 
      
 2110 
     | 
    
         
            +
            376pxi:stylegalai:	22pxi:a50069i:
         
     | 
| 
      
 2111 
     | 
    
         
            +
            389pxi:britishi:
         
     | 
| 
      
 2112 
     | 
    
         
            +
            operai
         
     | 
| 
      
 2113 
     | 
    
         
            +
            601pxi;;iZ:
         
     | 
| 
      
 2114 
     | 
    
         
            +
            330pxi:spanbenefiti:urlreqsgifi:
         
     | 
| 
      
 2115 
     | 
    
         
            +
            704pxi:
         
     | 
| 
      
 2116 
     | 
    
         
            +
            /*\*/i;wi;P"i;�)i:paddingbottom0i
         
     | 
| 
      
 2117 
     | 
    
         
            +
            :346293i:lineheight2emi;�
         
     | 
| 
      
 2118 
     | 
    
         
            +
            i	:beb9aai:backgroundcolor4178e6i:width57pxi:width450pxi:borderbottom0i:
         
     | 
| 
      
 2119 
     | 
    
         
            +
            ;mi:15000pxi:222i;�"i;�i	:height65pxi:urlhdarchgifi:%********************************i:4a0201i:
         
     | 
| 
      
 2120 
     | 
    
         
            +
            166emi;*i:
         
     | 
| 
      
 2121 
     | 
    
         
            +
            mareni:
         
     | 
| 
      
 2122 
     | 
    
         
            +
            blairi;7i1:	morni:urlimagestitle_so_whatgifi:
         
     | 
| 
      
 2123 
     | 
    
         
            +
            left0i:
         
     | 
| 
      
 2124 
     | 
    
         
            +
            162pxi:urlbg_requirementspngi:
         
     | 
| 
      
 2125 
     | 
    
         
            +
            marini:backgroundposition0i:
         
     | 
| 
      
 2126 
     | 
    
         
            +
            kanadi:	28pxi:!urlimagesresources_headergifi:urlsidegraphicgifi:	20eni:backgroundfffi:urlpicsdesign_headerjpgi:width335pxi:urlmediaselectgifi:pp3i::.i	:
         
     | 
| 
      
 2127 
     | 
    
         
            +
            744pxi:154i:
         
     | 
| 
      
 2128 
     | 
    
         
            +
            459pxi;�i:width174pxi:	86pxi:urltitlejpgi:urlmenubackgifi:
         
     | 
| 
      
 2129 
     | 
    
         
            +
            605pxi:backgroundurlimg_3jpgi:
         
     | 
| 
      
 2130 
     | 
    
         
            +
            762pxi:fontsize70i:5emi:borderrighti:spanparticipi:morguefilecomi:urlbenigifi;i:urlimgcollargifi:%;}i	:explori:
         
     | 
| 
      
 2131 
     | 
    
         
            +
            :a09b7di:292421i:spanrequiri:marginleft0i
         
     | 
| 
      
 2132 
     | 
    
         
            +
            :
         
     | 
| 
      
 2133 
     | 
    
         
            +
            400pxi:bordertop1pxi:urlphoto_csspilljpgi;i:
         
     | 
| 
      
 2134 
     | 
    
         
            +
            328pxi:importantwidthi	:urlcontent_boxes_middlegifi;Ci�:107i:
         
     | 
| 
      
 2135 
     | 
    
         
            +
            550pxi
         
     | 
| 
      
 2136 
     | 
    
         
            +
            :paddingleft343pxi:backgroundurlh1_roadgifi:spearheadi;i	:"backgroundurlselect_designgifi:urlhdselectgifi:divsupportingtexti:margintop0pxi	:conteni:!backgroundimageurldivizorgifi:flavouri:
         
     | 
| 
      
 2137 
     | 
    
         
            +
            jonnii:
         
     | 
| 
      
 2138 
     | 
    
         
            +
            iewini:	citii:abbrsupportingtexti:urlbenefitspngi:colora8a781i:
         
     | 
| 
      
 2139 
     | 
    
         
            +
            misusi:
         
     | 
| 
      
 2140 
     | 
    
         
            +
            174pxi	:samueli:	43pxi	:urlvisitedpngi:urlflower2gifi:
         
     | 
| 
      
 2141 
     | 
    
         
            +
            176pxi	:paddingtop0pxi:	14thi:	grrri	:e0e8b6i:httpwwwjoroncomi:fontxsmall14i:urlpartgifi:paddingbottom57pxi:urlmediabasejpgi;�i:
         
     | 
| 
      
 2142 
     | 
    
         
            +
            pinupi;�i:	85pxi
         
     | 
| 
      
 2143 
     | 
    
         
            +
            :192i:jelriki:httpwwwdafontcomi:margintop45pxi:urlh3_preamblegifi:000505i:width296pxi:ie5wini:fffdfai:spanexplani;�"i:urlpartigifi:urlimgcontainerbggifi:.---------------------------------------*/i;�i:94ab36i:urlextradiv1_bggifi:754f38i:4f8cc3i:httpwwwadampolsellicomi:height799pxi:urlrequirementsendgifi:height1650pxi:marginbottom0i
         
     | 
| 
      
 2144 
     | 
    
         
            +
            crazii:urlleaves_neugifi:*backgroundurlmenu_droite_fd_centerjpgi:urlhdreqgifi:	clipi:supportingtextp1i:urlselect_dsgifi:$backgroundimageurlpanel3_botgifi:
         
     | 
| 
      
 2145 
     | 
    
         
            +
            berrii;ki;i;i:quicksummariis:abbrintroi:
         
     | 
| 
      
 2146 
     | 
    
         
            +
            211pxi:urlbg_benefitspngi;�i:urlimagestitle_the_roadgifi:
         
     | 
| 
      
 2147 
     | 
    
         
            +
            299pxi:urlroadtoenlightmentjpgi:/httpwellstyledcomcssnopreloadrollovershtmli:urlflower3gifi:5ea936i:pozdravi: urlimagesarchives_headergifi:urlhead_archivesgifi;i
         
     | 
| 
      
 2148 
     | 
    
         
            +
            :romkemai	:colora082a7i:urlh3partgifi:paddingbottom60pxi:height90pxi:top55pxi;�Bi:	conei:333399i:height56pxi;i0:7divexplanationdivparticipationdivbenefitsdivrequiri:	55pxi	:httpwwwidizyncomblogi:%backgroundimageurlso_what_hdrgifi:*backgroundurlr3_zen666_licklist_bgjpgi:4e7ed1i
         
     | 
| 
      
 2149 
     | 
    
         
            +
            ;8i:	48pxi:backgroundurlbenefitsgifi
         
     | 
| 
      
 2150 
     | 
    
         
            +
            :urldown1gifi;i:soni;H'i:width176pxi:
         
     | 
| 
      
 2151 
     | 
    
         
            +
            :ffeed6i:./*---------------------------------------i:height9pxi:741600i:	12pti
         
     | 
| 
      
 2152 
     | 
    
         
            +
            ;'i:
         
     | 
| 
      
 2153 
     | 
    
         
            +
            241pxi:becuasi:	(../i:urltitle4jpgi:!__________preamble__________i:/httpwwwstopdesigncomarticlescssreplacetexti
         
     | 
| 
      
 2154 
     | 
    
         
            +
            269pxi;Si:c7cdd8i:
         
     | 
| 
      
 2155 
     | 
    
         
            +
            :$backgroundimageurlpanel3_medgifi;mi;i\:
         
     | 
| 
      
 2156 
     | 
    
         
            +
            burnti:lineheight12emi:introsupportingtexti:
         
     | 
| 
      
 2157 
     | 
    
         
            +
            950pxi:urlparticipationpngi:backgroundurlheaderjpgi:backgroundurlheadjpgi:9e3e02i	:color93a871i:
         
     | 
| 
      
 2158 
     | 
    
         
            +
            veliki:ie5i
         
     | 
| 
      
 2159 
     | 
    
         
            +
            jordii	:urlpicsresources_bottomjpgi:marginleft322pxi:
         
     | 
| 
      
 2160 
     | 
    
         
            +
            452pxi:
         
     | 
| 
      
 2161 
     | 
    
         
            +
            ;�i;�(i
         
     | 
| 
      
 2162 
     | 
    
         
            +
            :robw349hotmailcomi:left380pxi:padding340pxi:
         
     | 
| 
      
 2163 
     | 
    
         
            +
            157pxi	:027d87i:top16pxi:urlarchivegifi:.*/i:chapteri:textindiV:
         
     | 
| 
      
 2164 
     | 
    
         
            +
            696pxi:urllresources_topgifi:6f715ci:	adami:marginleft250pxi:httpwwwrosefuneti:urlrequirementshgifi:
         
     | 
| 
      
 2165 
     | 
    
         
            +
            navagi:color333333i:borderbottom1pxi:urltitle3jpgi:spanpageheadi;Bi;�'i]:bowmani
         
     | 
| 
      
 2166 
     | 
    
         
            +
            348pxi:(urlcontent_boxes_middle_preamblegifi:height367pxi:382a07i:fcfe85i:
         
     | 
| 
      
 2167 
     | 
    
         
            +
            bryani	:urlspacergifi:urlteacupjpgi:left463pxi:urlhdpartgifi:urlcontainerbgjpgi:136i;F.i!:
         
     | 
| 
      
 2168 
     | 
    
         
            +
            serifiS:width165pxi:
         
     | 
| 
      
 2169 
     | 
    
         
            +
            349pxi:urlbg_participationpngi:urlimagesfootergifi:zindex100i:backgroundurlback_topgifi:padding4pxi:inozemstvui:urlimagesselect_headergifi:
         
     | 
| 
      
 2170 
     | 
    
         
            +
            177pxi:michaudi;Fi;�i�:httpwwworderedlistcomi:urlh3roadgifi;�)i:width205pxi:width55pxi:
         
     | 
| 
      
 2171 
     | 
    
         
            +
            cnotei:urlmediabenefitsgifi:alistaparti:311d00i:cc9i:backgroundurlhdrequiregifi;{i3:	65pxi:aadeshi:df0000i:(backgroundurlr3_zen666_footer_bgjpgi:genevai:
         
     | 
| 
      
 2172 
     | 
    
         
            +
            354pxi:
         
     | 
| 
      
 2173 
     | 
    
         
            +
            323pxi:width114pxi:background900i:urlheaderpngi:
         
     | 
| 
      
 2174 
     | 
    
         
            +
            dedici;�(i:
         
     | 
| 
      
 2175 
     | 
    
         
            +
            rob_wi:backgroundurlsowhatpngi:urlpage_header_bgjpgi:width474pxi:pp2iZ:urltitlegifi;�i:urltheroadgifi:7c7c7ci:padding39pxi:
         
     | 
| 
      
 2176 
     | 
    
         
            +
            507pxi:pneumai:marginleft258pxi:urlbenefitshgifi:fontsize11pxi:
         
     | 
| 
      
 2177 
     | 
    
         
            +
            360pxi
         
     | 
| 
      
 2178 
     | 
    
         
            +
            771pxi:
         
     | 
| 
      
 2179 
     | 
    
         
            +
            :
         
     | 
| 
      
 2180 
     | 
    
         
            +
            122pxi:urlimgtopjpgi:urlhead2jpgi:height300pxi:urlchoosegifi:urlimgbodybggifi:
         
     | 
| 
      
 2181 
     | 
    
         
            +
            362pxi:zindex5i:	rosei:189i:162i:width500pxi
         
     | 
| 
      
 2182 
     | 
    
         
            +
            :
         
     | 
| 
      
 2183 
     | 
    
         
            +
            773pxi:5httpwwwshauninmancommuteprojectthis_is_cerealphpi: csszengardenbackgroundcolori:urlsidebar_part_4gifi:__________quicki:urlimagesheader_bggifi:
         
     | 
| 
      
 2184 
     | 
    
         
            +
            169pxi:width764pxi:a8a439i: urlimageslinklist_footerjpgi;i:backgroundimageurlpgifi:urlhdroadgifi:
         
     | 
| 
      
 2185 
     | 
    
         
            +
            251pxi:textalignlefti#:
         
     | 
| 
      
 2186 
     | 
    
         
            +
            :	top0i:width781pxi:borderright1pxi	:urlstarttext_bgjpgi:fontsize08emi
         
     | 
| 
      
 2187 
     | 
    
         
            +
            :ahoverlinklisti:21313ci:
         
     | 
| 
      
 2188 
     | 
    
         
            +
            ribici:citajui:displayinlini:width185pxi;pDi:urlherlegsgifi:margintop28pxi:C--------------------------------------------------------------i:urlmediaparticipationgifi:width195pxi
         
     | 
| 
      
 2189 
     | 
    
         
            +
            :
         
     | 
| 
      
 2190 
     | 
    
         
            +
            :
         
     | 
| 
      
 2191 
     | 
    
         
            +
            650pxi
         
     | 
| 
      
 2192 
     | 
    
         
            +
            ;�i:%backgroundurlr3_zen666_ben_bgjpgi:
         
     | 
| 
      
 2193 
     | 
    
         
            +
            83150i:joseavidosneti:height184pxi:
         
     | 
| 
      
 2194 
     | 
    
         
            +
            370pxi:width233pxi:texttransformlowercasi:fontsize081emi:103i;|#i:robi:margintop44pxi:
         
     | 
| 
      
 2195 
     | 
    
         
            +
            102pxi:
         
     | 
| 
      
 2196 
     | 
    
         
            +
            405pxi:color6c7a70i:
         
     | 
| 
      
 2197 
     | 
    
         
            +
            298pxi:decenti:
         
     | 
| 
      
 2198 
     | 
    
         
            +
            141pxi:acb7a6i:60d4e9i:aactiviu;�i
         
     | 
| 
      
 2199 
     | 
    
         
            +
            277pxi:f7f5d9textdecori:linotypi:backgroundbd8100i:height2200pxi:urlpatterngifi:d4d2d2i;�i:backgroundimageurlsgifi:arialsansserifi:
         
     | 
| 
      
 2200 
     | 
    
         
            +
            :
         
     | 
| 
      
 2201 
     | 
    
         
            +
            183pxi:urlresourcesheadpngi:
         
     | 
| 
      
 2202 
     | 
    
         
            +
            224pxi:lilinklisti:426279i:
         
     | 
| 
      
 2203 
     | 
    
         
            +
            mitjai:ovoi:8b3c12textdecorationnoni:displayblocki8:
         
     | 
| 
      
 2204 
     | 
    
         
            +
            263pxi	: urlimagesselecter_headergifi:urlimagesll_resourcesgifi;�i:urlpicsarchives_bottomjpgi:D---------------------------------------------------------------i:pp4i
         
     | 
| 
      
 2205 
     | 
    
         
            +
            :colorff0000i:
         
     | 
| 
      
 2206 
     | 
    
         
            +
            220pxi:gifi:margin4pxi:colordf0000i:rgb99131101i:
         
     | 
| 
      
 2207 
     | 
    
         
            +
            autori:&backgroundurlr3_zen666_part_bgjpgi:)backgroundurlr3_zc_lselect_bulletgifi:
         
     | 
| 
      
 2208 
     | 
    
         
            +
            920pxi:.httpwwwistockphotocomuser_viewphpid127925i:
         
     | 
| 
      
 2209 
     | 
    
         
            +
            355pxi	:margin30pxi	:5d5d5di:b63i:db008ci
         
     | 
| 
      
 2210 
     | 
    
         
            +
            :letterspacing02emi;~i	:
         
     | 
| 
      
 2211 
     | 
    
         
            +
            110pxi
         
     | 
| 
      
 2212 
     | 
    
         
            +
            :fledgli:firefoxi:width212pxi:urlgrassgifi:padding8pxi:urlleafgifi;�i>:httpwwwmqstudiocomi;,i:cccccci	:urllselect_topgifi:font76i:clearbothi:
         
     | 
| 
      
 2213 
     | 
    
         
            +
            351pxi:colorwhiti
         
     | 
| 
      
 2214 
     | 
    
         
            +
            lihovi,:backgroundimageurltgifi:font8em15emi:
         
     | 
| 
      
 2215 
     | 
    
         
            +
            win98i:
         
     | 
| 
      
 2216 
     | 
    
         
            +
            437pxi:width189pxi:urlimagesll_archivesgifi:paddingright30pxi:b7a5dfi;�Di:urlmediaenlightenmentgifi:top2985pxi:
         
     | 
| 
      
 2217 
     | 
    
         
            +
            385pxi	:"backgroundurlenlightenmentgifi:555555i:borderbottomdoti:
         
     | 
| 
      
 2218 
     | 
    
         
            +
            700pxi:avisitedfontweightnormi:,.i:miczajacpocztaonetpli;pi:safarii:height44pxi:fbfbe5i
         
     | 
| 
      
 2219 
     | 
    
         
            +
            ;i:spanaccesskeii:	75pxi:urlrepeaterjpgi:urlstripsjpgi:lilarchi:176i:padding30pxi;ri<:	46pxi:stultzi:colorfcd2b8i:!backgroundurllresourcesh3gifi:backgroundimageurlzh4gifi:tahomaserifi:urlexplanationhgifi:	29pxi:backgroundblacki:height200pxi;�i:63939ci:e9c482i:
         
     | 
| 
      
 2220 
     | 
    
         
            +
            297pxi	:f7f5d9i:mokrzyckii:
         
     | 
| 
      
 2221 
     | 
    
         
            +
            75160i;�i:"urlimagesheader_lresourcesjpgi:
         
     | 
| 
      
 2222 
     | 
    
         
            +
            273pxi:margin15pxi:
         
     | 
| 
      
 2223 
     | 
    
         
            +
            :textaligncenti5:*backgroundimageurlpanel_azul_mediogifi:dcd5b8i;�i:letterspaci":a2c1b9i:c50i:
         
     | 
| 
      
 2224 
     | 
    
         
            +
            677pxi:d7d6b7i:containerpositionreli:urlfavoriteheadpngi:urlsubtitle2gifi:f00i:designerimai:1pti:
         
     | 
| 
      
 2225 
     | 
    
         
            +
            :2b497bi:left5pxi:zeldmani:urlpreamblebottomjpgi;�i:divrequiri;�i:backgroundurlhdexplaingifi:padding50pxi:width543pxi:tani	:margintopi�:estiloi:height37pxi	;�i:color7fa2b0i:istockphotocomi:height36pxi:706f6ai:paddingbottom5pxi	:backgroundurlheart2gifi:
         
     | 
| 
      
 2226 
     | 
    
         
            +
            647pxi;�i;�i:p1p2p3p4p5i:colorcec81ai:	69pxi	:urllink_footergifi;Ui;L(i:	tomai:width175pxi: backgroundurllarchivesh3gifi:
         
     | 
| 
      
 2227 
     | 
    
         
            +
            560pxi;>i:
         
     | 
| 
      
 2228 
     | 
    
         
            +
            664pxi:width710pxi:backgroundpositionlefti:
         
     | 
| 
      
 2229 
     | 
    
         
            +
            473pxi	:h1h2h3i	:urlbackjpgi:michali:backgroundcolore7d8afi:urltitulo5gifi:!urlimagesheader_larchivesjpgi:urlli_bgpngi:width385pxi:urllogojpgi:	38pxi:avisitedci:marginleft33pxi:backgroundpositiontopi:verdanaarialserifi;H
         
     | 
| 
      
 2230 
     | 
    
         
            +
            366pxi:colora3c979i:7f7f7fi:padding2pxi;�i:ahovercolor3d82adi:345082i:
         
     | 
| 
      
 2231 
     | 
    
         
            +
            zajaci:!',i:backgroundurlroadtopngi:	daumi:colorinheriti:urlimghead_requirementsgifi:eeffc5i;�i:urlbg2gifi:collari;�i:left525pxi:
         
     | 
| 
      
 2232 
     | 
    
         
            +
            589pxi
         
     | 
| 
      
 2233 
     | 
    
         
            +
            :marginright30pxi:	16pxi:backgroundurllselecth3gifi:marginright40pxi:urlpreamblehgifi:visuali:urlheadgifi:
         
     | 
| 
      
 2234 
     | 
    
         
            +
            260pxi:f8f698i:importantfontsi
         
     | 
| 
      
 2235 
     | 
    
         
            +
            :	63pxi:6thi:ea907fi:urltopgrndjpgi:urltitulo4gifi:urlimagesheader_lselectjpgi:urlleft_footergifi:margintop25pxi:
         
     | 
| 
      
 2236 
     | 
    
         
            +
            271pxi:urlquickbggifi:alinkci:width424pxi:+backgroundimageurlpanel_naranja_topgifi:texttransformi{:urlhdr_benefitsjpgi:small15emi:/******************i:width390pxi;�,i#:urlimagesbackgroundgifi:fontfamilygeorgiai:	68pxi:urlbg_quicksummarypngi:decembi
         
     | 
| 
      
 2237 
     | 
    
         
            +
            :aactivecolorwhiti:borderleft1pxi:backgroundurlsubtitle0gifi:acronymhovi	:
         
     | 
| 
      
 2238 
     | 
    
         
            +
            388pxi:lineheight22pxi:&backgroundurlr3_zen666_road_bgjpgi:129129cssi:*backgroundurlr3_zc_larchives_titlegifi:backgroundcolorc9e1aai:444444i;�<i:caspeli:5475abi:ladybugi:
         
     | 
| 
      
 2239 
     | 
    
         
            +
            120pxi:mozillai:backgroundurlimg_1jpgi:lari:dfce3bi:colorb36d00i:urlimghead_benefitsgifi:backgroundurlbg_ligifi:urlheading3gifi;if:
         
     | 
| 
      
 2240 
     | 
    
         
            +
            205pxi
         
     | 
| 
      
 2241 
     | 
    
         
            +
            ;9i	:
         
     | 
| 
      
 2242 
     | 
    
         
            +
            580pxi
         
     | 
| 
      
 2243 
     | 
    
         
            +
            :urlcr1gifi:minwidth764pxi;
         
     | 
| 
      
 2244 
     | 
    
         
            +
            i:urltitulo3gifi:urlimagesfooter_bgjpgi:1px1pxi:urlleft_favoritesgifi:httpsquidfingerscompatterni:width550pxi:	logoi
         
     | 
| 
      
 2245 
     | 
    
         
            +
            :fdf4b3i:repeatxi,:-backgroundimageurlpanel_naranja_mediogifi:urllselectspangifi:urlhdr_participationjpgi;)i:rgb91131104i:height41pxi:backgroundf60i:1802pxi:urllogopngi:httpwwwmanisheriarcomblogi:avisitedcolorb8dbffi:1pxneedi;	i:color4c4e39i:
         
     | 
| 
      
 2246 
     | 
    
         
            +
            lipadi:hrvi:urlimageshbggifi:8f2323i:f6f6f6i:urlpicslist_backgroundjpgi:rizwani:	13thi:
         
     | 
| 
      
 2247 
     | 
    
         
            +
            214pxi:paddingbottom15pxi;Di:lineheight16pxi:
         
     | 
| 
      
 2248 
     | 
    
         
            +
            /**/:i:
         
     | 
| 
      
 2249 
     | 
    
         
            +
            595pxi:color69913i	:
         
     | 
| 
      
 2250 
     | 
    
         
            +
            381pxi:	06emi:
         
     | 
| 
      
 2251 
     | 
    
         
            +
            accesi:	99pxi:facd56i:
         
     | 
| 
      
 2252 
     | 
    
         
            +
            206pxi	:color7e7e7i	:6pxi :marginleft122pxi:urlbgmaingifi:ziegeri:httpwww804casecomi:
         
     | 
| 
      
 2253 
     | 
    
         
            +
            116pxi:fontfamiliiS;�i:
         
     | 
| 
      
 2254 
     | 
    
         
            +
            522pxi	:heartii:backgroundurlintrobggifi:)backgroundimageurlpanel_azul_bajogifi:urllarchivesspangifi:153i:urlhdr_aboutgifi:________________i:******************/i:	59pxi:backgroundurlpreamblegifi:ccafe3i;-!i:
         
     | 
| 
      
 2255 
     | 
    
         
            +
            192pxi;�,i:191i:alinkcolore5fbbbi:
         
     | 
| 
      
 2256 
     | 
    
         
            +
            482pxi:color3f753i:cursori(:
         
     | 
| 
      
 2257 
     | 
    
         
            +
            shakii:ulbackgroundi;�i;�i:linklist2i5:clearlefti	:
         
     | 
| 
      
 2258 
     | 
    
         
            +
            185pxi:width115pxi	:	14pxi&:	monoi:
         
     | 
| 
      
 2259 
     | 
    
         
            +
            279pxi;Ki:margin0pxi;�i�:left500pxi:
         
     | 
| 
      
 2260 
     | 
    
         
            +
            408pxi: backgroundurlpreamble_bggifi:httpwwwovilloorgi:
         
     | 
| 
      
 2261 
     | 
    
         
            +
            :fontweighti�:height22pxi
         
     | 
| 
      
 2262 
     | 
    
         
            +
            :colorc9e1aai:urlsidebar_bggifi:maartji:
         
     | 
| 
      
 2263 
     | 
    
         
            +
            jimmii:padding7pxi:
         
     | 
| 
      
 2264 
     | 
    
         
            +
            128pxi:	nului:msarialhelveticasansserifi:
         
     | 
| 
      
 2265 
     | 
    
         
            +
            196pxi:color968354i;=i:katrini:	61pxi
         
     | 
| 
      
 2266 
     | 
    
         
            +
            :kawachii:
         
     | 
| 
      
 2267 
     | 
    
         
            +
            318pxi;�.i:
         
     | 
| 
      
 2268 
     | 
    
         
            +
            586pxi:f386fbi:k------------------------------------------------------------------------------------------------------i:atextdecorationnoni:
         
     | 
| 
      
 2269 
     | 
    
         
            +
            314pxi:
         
     | 
| 
      
 2270 
     | 
    
         
            +
            255pxi:urlbgbottom1gifi:urlbody_bg2jpgi;i�;i:urlcornersgifi:abroadi:omniwebi:$urlimagesrequirements_headergifi;�iw:
         
     | 
| 
      
 2271 
     | 
    
         
            +
            /**/{i:ffe6f0i:borderbottomfffi:	stari:urlmediamastheadjpgi:height3000pxi:
         
     | 
| 
      
 2272 
     | 
    
         
            +
            standi:urlrequirementsjpgi
         
     | 
| 
      
 2273 
     | 
    
         
            +
            ;ci:paddingtop20pxi;�i�:urlh3bggifi:textindent150pxi:color949494i:httpwwwavidosnetblogoldi:padding28pxi;Li:&backgroundurlr3_zc_linklist_bggifi:8pt12pti:
         
     | 
| 
      
 2274 
     | 
    
         
            +
            :4f740ei:font11px18pxi:urlimghead_theroadgifi:lineheight5pxi:
         
     | 
| 
      
 2275 
     | 
    
         
            +
            %i:	17pxi(:colore9e6d9i;�ih:urlfooter_topgifi:30261di:backgroundpositionrighti:
         
     | 
| 
      
 2276 
     | 
    
         
            +
            173pxi:/httpwwwmezzobluedevzengardenalldesignsstudi:marginleft15pxi:	50pxiF:
         
     | 
| 
      
 2277 
     | 
    
         
            +
            afocui:ff0000i	:ada364i:brushwoodi:
         
     | 
| 
      
 2278 
     | 
    
         
            +
            browni;�	i;�i:urlbg_hdr_favoritesgifi:croatiai:desmondi:marginleft100pxi;�4i: urlimagestrans_bene_requjpgi:
         
     | 
| 
      
 2279 
     | 
    
         
            +
            515pxi:marginbottom0pxi:urlh3requiregifi;m-i:nouveaui:$/******************************i:backgroundurlmainimagegifi:ba76ffi:	sosai;�+iy:ba41c3i:d94904i:f-------------------------------------------------------------------------------------------------i:lineheight16i:width510pxi:newmonospaci:brailli:
         
     | 
| 
      
 2280 
     | 
    
         
            +
            450pxi:urldividergifi:184i:
         
     | 
| 
      
 2281 
     | 
    
         
            +
            396pxi:urlbenefitsjpgi
         
     | 
| 
      
 2282 
     | 
    
         
            +
            :	91pxi;ri
         
     | 
| 
      
 2283 
     | 
    
         
            +
            :)httpsxchubrowsephtmlfprofilelweirdvii:height20pxi;8iu:divexplani:zindex300i:color787878i:floridoi:$backgroundurlr3_zen666_qs_bgjpgi:rgb207216214i:width180pxi:padding75pxi:toii:55012bi:left568pxi:urlattentjpgi:floweri:httpwwwsxchui:height131pxi:
         
     | 
| 
      
 2284 
     | 
    
         
            +
            847pxi:urlbkgr1jpgi:
         
     | 
| 
      
 2285 
     | 
    
         
            +
            423pxi:lineheight11pxi:spandisplaynoni:voicefamilii+:
         
     | 
| 
      
 2286 
     | 
    
         
            +
            190pxi:urlstylelink_list_h3gifi:	feelif:backgroundfd9453i
         
     | 
| 
      
 2287 
     | 
    
         
            +
            : backgroundimageurlzleaf3gifi;�4i;�i:"backgroundurlexplanationh3gifi:paddingleft025emi:zengardeni:gallerii:
         
     | 
| 
      
 2288 
     | 
    
         
            +
            230pxi :padding14emi:__________basics__________i:
         
     | 
| 
      
 2289 
     | 
    
         
            +
            139pxi
         
     | 
| 
      
 2290 
     | 
    
         
            +
            :urlleft_archivegifi:
         
     | 
| 
      
 2291 
     | 
    
         
            +
            mariai	:�i:textdecorationoverlini:	10thi
         
     | 
| 
      
 2292 
     | 
    
         
            +
            :
         
     | 
| 
      
 2293 
     | 
    
         
            +
            319pxi:
         
     | 
| 
      
 2294 
     | 
    
         
            +
            148pxi;�i:widthautoi:
         
     | 
| 
      
 2295 
     | 
    
         
            +
            217pxi
         
     | 
| 
      
 2296 
     | 
    
         
            +
            :e2eff3i:urlh3allaboutgifi:d6e6b6i:contemporarii:14117b173i:armandoi:
         
     | 
| 
      
 2297 
     | 
    
         
            +
            168pxi:urlbg_containerpngi:fontsize09emi:800x600i:urlbgbottom0gifi:courieri:
         
     | 
| 
      
 2298 
     | 
    
         
            +
            aurali:urlborder3gifi:183183cssi:engi: urlimagesbenefits_headergifi:urlimagesbggifi:bcfd69i:urlaboutgifi:urlferlaufpngi:colora9e0ffi:csszengardeni:
         
     | 
| 
      
 2299 
     | 
    
         
            +
            quicki:*****************/i;�i;	i:urlparticipationjpgi
         
     | 
| 
      
 2300 
     | 
    
         
            +
            :lancasti;� i:textindent10pxi;�i�:urlh3bg_navgifi:
         
     | 
| 
      
 2301 
     | 
    
         
            +
            526pxi:paddingtop27pxi:
         
     | 
| 
      
 2302 
     | 
    
         
            +
            356pxi:height215pxi:marginlefti�;kAi:
         
     | 
| 
      
 2303 
     | 
    
         
            +
            479pxi
         
     | 
| 
      
 2304 
     | 
    
         
            +
            :background777colorbbbi:
         
     | 
| 
      
 2305 
     | 
    
         
            +
            770pxi:
         
     | 
| 
      
 2306 
     | 
    
         
            +
            164pxi:urlrequirements_topgifi:
         
     | 
| 
      
 2307 
     | 
    
         
            +
            118pxi:csszengardencomi;!i:backgroundurlpreamblep1gifi:paddingtop50pxi:fff0f0i:3399ffi:especii:studenti:urlzen_bggifi:
         
     | 
| 
      
 2308 
     | 
    
         
            +
            300pxi&:
         
     | 
| 
      
 2309 
     | 
    
         
            +
            234pxi:backgroundcoloriU:	winei:3f5671i:liesongi:urlbg_leftnav_bottomjpgi:383b16i:	towni:5785a4i:	armii;�i:	--*/i:urlimagesbenefits_bgjpgi:
         
     | 
| 
      
 2310 
     | 
    
         
            +
            119pxi:anchori:positionreli9:b69b86i:777i	:width759pxi:
         
     | 
| 
      
 2311 
     | 
    
         
            +
            311pxi:
         
     | 
| 
      
 2312 
     | 
    
         
            +
            mediai:4f711fi:prayeri:8pti:	pinki:dbfe72i	:urlroadgifi;�.i;�)i:marginbottom14pxi:urlimagesbg_bcgifi;�i:#"i:	risei:
         
     | 
| 
      
 2313 
     | 
    
         
            +
            369pxi:urlwhatjpgi:	lynni:Y***********************************************************************************/i
         
     | 
| 
      
 2314 
     | 
    
         
            +
            :width310pxi;�!i':h3divintroi:5f5f5fi:paddingleft150pxi:
         
     | 
| 
      
 2315 
     | 
    
         
            +
            690pxi:height347pxi:width479pxi:ragi:color999textdecorationnoni:width200pxi
         
     | 
| 
      
 2316 
     | 
    
         
            +
            erguni:
         
     | 
| 
      
 2317 
     | 
    
         
            +
            257pxi:left444pxi:
         
     | 
| 
      
 2318 
     | 
    
         
            +
            243pxi:urlheading1gifi:377774i	:urlstylebullet_stylesgifi;ig:urlbenefits_topgifi:addressapache2054i:backgroundurlpreambleh3gifi;�i&:backgroundimagenoni:%acronymcursorhelpborderbottom1pxi;oi:44410di:httpwwwlearnnewmediacai:
         
     | 
| 
      
 2319 
     | 
    
         
            +
            212pxi
         
     | 
| 
      
 2320 
     | 
    
         
            +
            374pxi:arti:__________cleani:	83pxi	:
         
     | 
| 
      
 2321 
     | 
    
         
            +
            448pxi:urlleft_selectgifi:teatimi: **************************/i: urlimagestrans_part_benejpgi:fontsize2pxi:
         
     | 
| 
      
 2322 
     | 
    
         
            +
            428pxi:divquicksummarii:marginrightautoi;�i:
         
     | 
| 
      
 2323 
     | 
    
         
            +
            523pxi:backgroundrepeatrepeatxi:
         
     | 
| 
      
 2324 
     | 
    
         
            +
            booyai:779b31i:fontsizi	:fontsize8pti:
         
     | 
| 
      
 2325 
     | 
    
         
            +
            532pxi:!unicodearialverdanasansserifi:754i:urlsowhatgitulowhjpgi:fontfamilytrebucheti:httpwwwgrasseggerati;hi:7fc937i:urltitle2gifi:footerpadi:medievi:%urlimagesparticipation_headergifi:51c3c4i:caminoi;�i:c5f7a5i:da0000i:c1ad79i:urlpicsright_list_bgjpgi:urlscrewoffgifi;4i:f60i;�i:urlroadjpgi:photographii:marginleft20pxi:divlinklisti&:
         
     | 
| 
      
 2326 
     | 
    
         
            +
            740pxi:marginleft150pxi:width699pxi:#backgroundurlr3_zen666_logojpgi:996699i:background555i:9thi
         
     | 
| 
      
 2327 
     | 
    
         
            +
            kegeli:urlseltitlejpgi;�i:httpwwwpixyczi:
         
     | 
| 
      
 2328 
     | 
    
         
            +
            332pxi	:c32i:httpwwwjustkylecomi:
         
     | 
| 
      
 2329 
     | 
    
         
            +
            725pxi:width255pxi:12px150i:acolorffffffi:urlstylebullet_normalgifi;�ig:httpwwwmichaelfasanicomi:
         
     | 
| 
      
 2330 
     | 
    
         
            +
            126pxi:urlparticipation_topgifi:backgroundurlserialgifi:backgroundimageurlzh3gifi:
         
     | 
| 
      
 2331 
     | 
    
         
            +
            somthi:	talki:margin07emi:165i;�
         
     | 
| 
      
 2332 
     | 
    
         
            +
            103pxi:
         
     | 
| 
      
 2333 
     | 
    
         
            +
            964pxi:urlbg_navleftgifi;�i:786a47i:entwurfi:urltitulo1gifi:
         
     | 
| 
      
 2334 
     | 
    
         
            +
            paperi:urllarchivesh3gifi:marginleftautoi:obliqui
         
     | 
| 
      
 2335 
     | 
    
         
            +
            :backgroundimageurlfondogifi:urllselectbttmgifi:urlimgstonegifi:visibli:urlhdr_enlightenmentgifi:left430pxi:perfumi:
         
     | 
| 
      
 2336 
     | 
    
         
            +
            484pxi:grandelucidai
         
     | 
| 
      
 2337 
     | 
    
         
            +
            :urltheroadtojpgi:fontsize10001i:
         
     | 
| 
      
 2338 
     | 
    
         
            +
            387pxi:
         
     | 
| 
      
 2339 
     | 
    
         
            +
            471pxi:761c1ci:urlintro_bggifi:fontsize085emi:background000000i:urlbackgroundjpgi;i:145i:ancienti:borderbottom2pxi:margintop4pxi;Ri:'httpcreativecommonsorglicensessa10i:height48pxi: backgroundimageurlheaderjpgi:(backgroundurlr3_zen666_banner_bgjpgi:,backgroundurlheaderslresources_titlejpgi:padding6pxi:netscapi:
         
     | 
| 
      
 2340 
     | 
    
         
            +
            107pxi:	jonei;-i:width210pxi	:fasanii:
         
     | 
| 
      
 2341 
     | 
    
         
            +
            600pxi:urlexplanation_topgifi:!backgroundurlquicksummarygifi:backgroundimageurlzh2gifi:serverpi:audienci:flui:httpbradleyboycomi:	40pxiZ:lineheight14emi	:50591bi;�i:
         
     | 
| 
      
 2342 
     | 
    
         
            +
            239pxi:urlizqdagifi:
         
     | 
| 
      
 2343 
     | 
    
         
            +
            222pxi:
         
     | 
| 
      
 2344 
     | 
    
         
            +
            900pxi:pixelpusherbizi:grueneri:color999999i:urlbullet2gifi	:=/******************************************************/i	:"urlimagesparticipation_imgjpgi:
         
     | 
| 
      
 2345 
     | 
    
         
            +
            754pxi:urllresourcesh3gifi:lselectlarchiveslresourci:5c99e4i;2i�:
         
     | 
| 
      
 2346 
     | 
    
         
            +
            b0a77i:urlbackgifi:203144i	:
         
     | 
| 
      
 2347 
     | 
    
         
            +
            780pxi;�i�:	renei:
         
     | 
| 
      
 2348 
     | 
    
         
            +
            117pxi;�i:6faf30i:urltitle1gifi:
         
     | 
| 
      
 2349 
     | 
    
         
            +
            divisi:catholi:width375pxi:urlhead_requirementsgifi:osxi:urlsvirgolatagifi:urlselect_bggifi:left602pxi;i:cf6i:>#i:textdecorationlinethroughi:
         
     | 
| 
      
 2350 
     | 
    
         
            +
            bridgi:urlcontentbggifi:v10i:width485pxi:color606060i:margin380pxi:1100pxi;�i:urlfooterjpgi
         
     | 
| 
      
 2351 
     | 
    
         
            +
            :+backgroundurlheaderslarchives_titlejpgi:backgroundc6b478colorfffi:backgroundurllogojpgi:urlsupp_bggifi:backgroundurltopleft_bggifi:urlselectjpgi:whitteti:
         
     | 
| 
      
 2352 
     | 
    
         
            +
            480pxi	:butterflii:
         
     | 
| 
      
 2353 
     | 
    
         
            +
            232pxi:	kylei:	petri:color96cb18i:
         
     | 
| 
      
 2354 
     | 
    
         
            +
            724pxi:marginleft10pxi;Pig;�%i
         
     | 
| 
      
 2355 
     | 
    
         
            +
            660pxi:padding41pxi;�i: backgroundurlpoorrichardjpgi:backgroundimageurlzbggifi;�i:ddd1a8i;}5i:daileii:
         
     | 
| 
      
 2356 
     | 
    
         
            +
            225pxi	:
         
     | 
| 
      
 2357 
     | 
    
         
            +
            202pxi;7Ei:	folki;g)ig:
         
     | 
| 
      
 2358 
     | 
    
         
            +
            419pxi:httpwwwboppmediendi:urlbg_hdr_requirementsgifi:	36pxi
         
     | 
| 
      
 2359 
     | 
    
         
            +
            :httpwwwpixelpusherbizi;�iV:urllinklistjpgi:firstletti:urlbullet1gifi:850e0ei:!urlimagesparticipation_bgjpgi:fontsize16pxi:666666i
         
     | 
| 
      
 2360 
     | 
    
         
            +
            :cc0000i:cursorhelpi:ph1h2h3i:urllselecth3gifi:httpwwwtheom3gatki:urlprebggifi:urlphflower2pngi:backgroundurlsummarygifi:1042pxi:bodycsszengardeni:173i:b9b9b9i:
         
     | 
| 
      
 2361 
     | 
    
         
            +
            306pxi:background3c6faci;	i	:1095pxi;�i:backgroundurldotedlinegifi:urlborder1gifi:
         
     | 
| 
      
 2362 
     | 
    
         
            +
            glassi:starteri:#urlimagesquicksumary_headergifi:urlsummary_bggifi:httpwebburzahri:
         
     | 
| 
      
 2363 
     | 
    
         
            +
            468pxi:urlfootbackjpgi:backgroundurlpreamb2gifi;�,i:sharealiki:backgroundurlfooterbggifi:
         
     | 
| 
      
 2364 
     | 
    
         
            +
            275pxi
         
     | 
| 
      
 2365 
     | 
    
         
            +
            ;:/i:urlheadersselect_titlejpgi:
         
     | 
| 
      
 2366 
     | 
    
         
            +
            514pxi:colorc64708i	:height201pxi;Bi
         
     | 
| 
      
 2367 
     | 
    
         
            +
            :height127pxi:h3selectbackgroundtranspari:
         
     | 
| 
      
 2368 
     | 
    
         
            +
            138pxi	:
         
     | 
| 
      
 2369 
     | 
    
         
            +
            462pxi:kingayowanadoofri;h*i:width299pxi:urlbentitlejpgi;Bi:
         
     | 
| 
      
 2370 
     | 
    
         
            +
            457pxi	:cuti:backgroundurlfooter_bgpngi:footermargin25pxi:"urlstyletitle_requirementsgifi:
         
     | 
| 
      
 2371 
     | 
    
         
            +
            156pxi
         
     | 
| 
      
 2372 
     | 
    
         
            +
            ;$	i:	18pxi#:	acuti:
         
     | 
| 
      
 2373 
     | 
    
         
            +
            urbani:!httpwwwcriaturacreativacomari;�i:
         
     | 
| 
      
 2374 
     | 
    
         
            +
            235pxi:httpwwwmikhelcomi:urlflechita2gifi:	56pxi:=============i:urlwhat_isgifi:	boppi:1d0d00i:urlbg_hdr_benefitsgifi:grakali:hiddeni":sunsansregulari:*backgroundurlimagestrans_expl_partjpgi;�$i:padding25pxi:urlpapergifi:858585i:ffeac8i:	15emi:backgroundattachi:urlrequirementsh3gifi:
         
     | 
| 
      
 2375 
     | 
    
         
            +
            67172i:
         
     | 
| 
      
 2376 
     | 
    
         
            +
            476pxi:httpwwwaprildesigndi:
         
     | 
| 
      
 2377 
     | 
    
         
            +
            258pxi:	casui:width490pxi:	darki:cfb35bi:
         
     | 
| 
      
 2378 
     | 
    
         
            +
            staini;�i:height1641pxi:urltitle2jpgi;�	i:dugonji:151i:borderbottomnoni:urlimagesbg_li_2gifi:/*****************i:httppeterrockpersgi:9ead6ci:fontsizexsmali:
         
     | 
| 
      
 2379 
     | 
    
         
            +
            debati:urlbenbackjpgi:font12px15pxi:verduri:paddingbottom1pxi:urlgrad_topjpgi:
         
     | 
| 
      
 2380 
     | 
    
         
            +
            708pxi:urlmainjpgi	:urldropsli_higifi:width423pxi: padding2pxtextdecorationnoni:59365fi
         
     | 
| 
      
 2381 
     | 
    
         
            +
            :width813pxi:width49i:dummymargini:	64pxi;�i:httpwwwkingayocomi:mediterraneani:backgroundurlthebeautyjpgi:urlparttitlejpgi;�i:000i|:
         
     | 
| 
      
 2382 
     | 
    
         
            +
            395pxi	:goldeni:	41pxi:urlbg_textjpgi:307082i:pp1displaynoni;i:
         
     | 
| 
      
 2383 
     | 
    
         
            +
            acacti
         
     | 
| 
      
 2384 
     | 
    
         
            +
            :urlstyletitle_benefitsgifi:8c7846i:urlpreamble_topgifi:backgroundurlsidebodygifi:backgroundposition7pxi
         
     | 
| 
      
 2385 
     | 
    
         
            +
            :
         
     | 
| 
      
 2386 
     | 
    
         
            +
            132pxi;9i:d25c3ei:	feari:
         
     | 
| 
      
 2387 
     | 
    
         
            +
            193pxi:fontsize1emi:
         
     | 
| 
      
 2388 
     | 
    
         
            +
            303pxi:
         
     | 
| 
      
 2389 
     | 
    
         
            +
            inviti:cesarioi	;�i:proulxi:paddingleftiO:
         
     | 
| 
      
 2390 
     | 
    
         
            +
            200pxi':===========i;(it:
         
     | 
| 
      
 2391 
     | 
    
         
            +
            520pxi;�5i:margin400pxi:urlliliresourcen_01gifi: urlimagesexplanation_imgjpgi:margin50pxi:urlpaperfoldedgifi:c29e47i:
         
     | 
| 
      
 2392 
     | 
    
         
            +
            180pxi:urlsfondogifi:urlparticipationh3gifi:manhattani:urlcontbggifi:
         
     | 
| 
      
 2393 
     | 
    
         
            +
            465pxi:
         
     | 
| 
      
 2394 
     | 
    
         
            +
            378pxi:
         
     | 
| 
      
 2395 
     | 
    
         
            +
            goetzi:5pxi;�i:urltitle0gifi:
         
     | 
| 
      
 2396 
     | 
    
         
            +
            decori:
         
     | 
| 
      
 2397 
     | 
    
         
            +
            552pxi:photographi:sessioni;ZiX:overcodi:width600pxi	:htmllinklisti:
         
     | 
| 
      
 2398 
     | 
    
         
            +
            krsuli:5bbb11i:urlrequirements_hgifi:urlpicsfooterjpgi:urlimagesbg_li_hovergifi:6b320ei
         
     | 
| 
      
 2399 
     | 
    
         
            +
            :urlselectadesignjpgi:/*/i:ongi:fontfamilyverdanai;{i
         
     | 
| 
      
 2400 
     | 
    
         
            +
            :
         
     | 
| 
      
 2401 
     | 
    
         
            +
            breezi:urlparticipationbackjpgi:
         
     | 
| 
      
 2402 
     | 
    
         
            +
            130pxi:kingayoi:	32pxi:
         
     | 
| 
      
 2403 
     | 
    
         
            +
            :backgroundurlmastheadjpgi:backgroundimageurlzh1gifi:
         
     | 
| 
      
 2404 
     | 
    
         
            +
            534pxi:foundh1i;�i:colord25c3i:
         
     | 
| 
      
 2405 
     | 
    
         
            +
            384pxi:
         
     | 
| 
      
 2406 
     | 
    
         
            +
            innoci:
         
     | 
| 
      
 2407 
     | 
    
         
            +
            295pxi:eduardoi	:
         
     | 
| 
      
 2408 
     | 
    
         
            +
            stocki:mikheli:urlizqdaulgifi:
         
     | 
| 
      
 2409 
     | 
    
         
            +
            778pxi	:=========i:urlheader_preamblegifi:	rougi:e8cfb0i:666i:!urlbg_hdr_whatisthisaboutgifi:urlliliarchives_01gifi:	09emi
         
     | 
| 
      
 2410 
     | 
    
         
            +
            :"backgroundimageurlmur_fondjpgi:urltitle5gifi:	15thi:1emi:870b01i:urlexplanationh3gifi:displaynoni�:cbc7b5i:9c26a3i:width223pxi:	sosoi:
         
     | 
| 
      
 2411 
     | 
    
         
            +
            pabloi:urlselectgifi:	nelei:4httpwwwstopdesigncomlog20040706filteringcsshtmli:height23pxi:canadai	;�i:colord6bd15i:urlhead_benefitsgifi:
         
     | 
| 
      
 2412 
     | 
    
         
            +
            markoi	:e1ebcci:urllistimagegifi:paddingbottom240pxi:urlimagesbg_ligifi:	pieri;�Fi:
         
     | 
| 
      
 2413 
     | 
    
         
            +
            670pxi:	viewi:lineheight30pxi:backgroundcoloradc8a2i:httpwwwstuartandpetracomi:borderbottomi�:
         
     | 
| 
      
 2414 
     | 
    
         
            +
            248pxi:lineheight165pxi;�	i:
         
     | 
| 
      
 2415 
     | 
    
         
            +
            498pxi;i:ayoi:ea0000i:top50pxi:urlleaf_09bgifi:urlimagest_requirementsjpgi:backgroundurlsowhatgifi;gix:d2c598i:urlstyletitle_so_whatgifi:width524pxi:82a839i:
         
     | 
| 
      
 2416 
     | 
    
         
            +
            h1noti:hyperlinki:
         
     | 
| 
      
 2417 
     | 
    
         
            +
            755pxi; i:zeldmancomi:
         
     | 
| 
      
 2418 
     | 
    
         
            +
            101pxi:=======i:urlbg_preamblegifi:
         
     | 
| 
      
 2419 
     | 
    
         
            +
            237pxi	:punkassi:vini:colore8cfb0i;_ i:urlbg_hdr_roadtogifi:urloriginaljpgi:width215pxi:urlkastenliliegifi:backgroundcolor000000i:urltitle4gifi:860d01i:9px3emi:
         
     | 
| 
      
 2420 
     | 
    
         
            +
            dreami:ffb9cbi:
         
     | 
| 
      
 2421 
     | 
    
         
            +
            268pxi:
         
     | 
| 
      
 2422 
     | 
    
         
            +
            vivaci:urlikonlijpgi:
         
     | 
| 
      
 2423 
     | 
    
         
            +
            569pxi:airi:	76pxi:stopdesigncomi:width260pxi:urlenvjpgi:	88pxi:torontoi:nearlii:!avisitedcolorb00707textdecori:htmlsupportingtexti:
         
     | 
| 
      
 2424 
     | 
    
         
            +
            500pxi;aCi:height71pxi:
         
     | 
| 
      
 2425 
     | 
    
         
            +
            fefefi:urlimagest_benefitsjpgi:sansserifi�:backgroundurlgirljpgi: quicksummarypositionabsoluti:borderbottomcolori
         
     | 
| 
      
 2426 
     | 
    
         
            +
            363pxi:	cocki:urlbackpngi;
         
     | 
| 
      
 2427 
     | 
    
         
            +
            i:
         
     | 
| 
      
 2428 
     | 
    
         
            +
            cad2di:
         
     | 
| 
      
 2429 
     | 
    
         
            +
            458pxi:
         
     | 
| 
      
 2430 
     | 
    
         
            +
            165pxi	:
         
     | 
| 
      
 2431 
     | 
    
         
            +
            =====i:linethroughi:9000pxi:urlbg_homejpgi:top0pxi
         
     | 
| 
      
 2432 
     | 
    
         
            +
            342pxi
         
     | 
| 
      
 2433 
     | 
    
         
            +
            :urlimagesexplanation_bgjpgi:color000001i:urltitle3gifi:yorksansserifi:urlpreambleh3gifi:923b09i	:margin0i�:left666pxi:spanbefori:backgroundurlheadergifi:subwaii;m"iZ:urlselecthoverbggifi:
         
     | 
| 
      
 2434 
     | 
    
         
            +
            582pxi:ecefd7i:	lovei;'i:height174pxi:urlbgbiogifi:churchi:
         
     | 
| 
      
 2435 
     | 
    
         
            +
            themei:00004ai	:acolorb00707textdecori:urlpiumagifi:	73pxi;�i:urlbenefits_hgifi:color00cc00i:urlpicsheader5gifi:
         
     | 
| 
      
 2436 
     | 
    
         
            +
            :
         
     | 
| 
      
 2437 
     | 
    
         
            +
            durati:	75emi:height1pxi:attridi:urldesignsgifi:colore4cf9di:zindex200i:stuarti:background000i:	39pxi:
         
     | 
| 
      
 2438 
     | 
    
         
            +
            293pxi:)backgroundurlr3_zc_benefits_titlegifi:%}i:
         
     | 
| 
      
 2439 
     | 
    
         
            +
            layeri:603i:revisiti:colora9a867i:linklist2width201pxi:	lilii:!backgroundurlcsszengardenjpgi:urlwjpgi:urlleaf_09fgifi: urlimagest_participationjpgi:982417i:helveticaiY:height1500pxi:pageheaderdisplaynoni;o6i:
         
     | 
| 
      
 2440 
     | 
    
         
            +
            339pxi:celebri:backgroundwhiti	:
         
     | 
| 
      
 2441 
     | 
    
         
            +
            365pxi:urllinklist_bgjpgi:	25pxig:rougeuxi:efefefi:2000pxi:color33eeffi:	flowi:httpwwwsitemakerui:149i;�i):height150pxi:8pt16pti:urlsupportingtextjpgi:colorffe1a4i: urlimagestrans_prea_expljpgi;a%i:httpwwwaccxsneti:urlsummarygifi:
         
     | 
| 
      
 2442 
     | 
    
         
            +
            150pxi*;�i":urlextraflowerjpgi:left530pxi:top1325pxi:
         
     | 
| 
      
 2443 
     | 
    
         
            +
            535pxi:
         
     | 
| 
      
 2444 
     | 
    
         
            +
            :htmlpreabli:d5e3b8i:urlpicsheader4gifi:
         
     | 
| 
      
 2445 
     | 
    
         
            +
            subtli:
         
     | 
| 
      
 2446 
     | 
    
         
            +
            598pxi:paraloi;_i:textindent15000pxi:dividbefori:f3f3f3i:font7em12emi:marginleft75pxi:darumai:
         
     | 
| 
      
 2447 
     | 
    
         
            +
            572pxi:margin0padding0i:
         
     | 
| 
      
 2448 
     | 
    
         
            +
            999emi:height26pxi::"\"}\"";i:backgroundurlbgjpgi;oi:
         
     | 
| 
      
 2449 
     | 
    
         
            +
            pharki:colorbcbb93i:font08em16i;�i:
         
     | 
| 
      
 2450 
     | 
    
         
            +
            wateri:urlresourcen_bggifi:backgroundurlcover_toppngi:urlgjpgi:urlleaf_09agifi;�!i:$urlimagest_sowhatisthisaboutjpgi:807944i:
         
     | 
| 
      
 2451 
     | 
    
         
            +
            ariali�:width750pxi:backgroundcolorfbd1bci:borderbottomstyli:414141i:backgroundcolor555040i:urlquicksummary_maingifi:backgroundimageurlzegifi:
         
     | 
| 
      
 2452 
     | 
    
         
            +
            485pxi:
         
     | 
| 
      
 2453 
     | 
    
         
            +
            smilei:
         
     | 
| 
      
 2454 
     | 
    
         
            +
            530pxi:divpreamblesupportingtexti:
         
     | 
| 
      
 2455 
     | 
    
         
            +
            455pxi:
         
     | 
| 
      
 2456 
     | 
    
         
            +
            186pxi:font75i:nicholai:
         
     | 
| 
      
 2457 
     | 
    
         
            +
            efecdi:linkoui:---i:urldeadgifi:
         
     | 
| 
      
 2458 
     | 
    
         
            +
            172pxi:paddingtop30pxi:urlimagesst_bgjpgi:143i:urlheadlines_07gifi:pierreantoini:
         
     | 
| 
      
 2459 
     | 
    
         
            +
            558pxi:
         
     | 
| 
      
 2460 
     | 
    
         
            +
            210pxi:artworki:height242pxi:ahoveraacti:backgroundf8f8f8i:
         
     | 
| 
      
 2461 
     | 
    
         
            +
            466pxi:urlbgsidebarjpgi:3c9a35i:444i	;�i:urlbgwomangifi:textdecorationunderlini:	45pxi+:width208pxi:	doori:
         
     | 
| 
      
 2462 
     | 
    
         
            +
            223pxi:httpwwwt2ati:9pti
         
     | 
| 
      
 2463 
     | 
    
         
            +
            :h2displaii:htmlquicksummarii:urlpicsheader3gifi:urlimagesbg_h3favoritesgifi;�i:urldot2gifi:2000emi:angeloi;Ki:height50pxi	;�EiF:424242i:
         
     | 
| 
      
 2464 
     | 
    
         
            +
            dividi:height16pxi
         
     | 
| 
      
 2465 
     | 
    
         
            +
            :urldropsred_dropjpgi:wwwreh3comi:.backgroundurlr3_zc_participation_titlegifi;�i
         
     | 
| 
      
 2466 
     | 
    
         
            +
            :padding125pxi:
         
     | 
| 
      
 2467 
     | 
    
         
            +
            276pxi:urlst_bggifi:
         
     | 
| 
      
 2468 
     | 
    
         
            +
            278pxi:wwwclagnutcomblog348i:zenfandeli:254634i:urlpageheadergifi:
         
     | 
| 
      
 2469 
     | 
    
         
            +
            259pxi	:urlbgh3gifi;=	i;�i:
         
     | 
| 
      
 2470 
     | 
    
         
            +
            372pxi:margintop1pxi:urlimagespreamble_imgjpgi:urlheadlines_06gifi:vialloni:divpageheadi;�i:	1em2i:deisgni:backgroundurlleavesjpgi:f0ac4ai:1500pxi	:verticalaligni:border2pxi:color7e84a1i:
         
     | 
| 
      
 2471 
     | 
    
         
            +
            416pxi:c3a176i:urlbotjpgi:height40pxi:	72pxi:padding97pxi:urlbgmozartjpgi:
         
     | 
| 
      
 2472 
     | 
    
         
            +
            179pxi:%backgroundurlr3_zc_what_titlegifi:width818pxi:edwardsoni;i:height12pxi:avisitedcolor992d2ai:vxdigiti:paddingbottom120pxi:p1firstletti:)urlimagest_theroadtoenlightenmentjpgi:georgiaiC:
         
     | 
| 
      
 2473 
     | 
    
         
            +
            380pxi;�i6:urlheadlines_05gifi:lugozei:
         
     | 
| 
      
 2474 
     | 
    
         
            +
            homeri:metrosti:
         
     | 
| 
      
 2475 
     | 
    
         
            +
            :
         
     | 
| 
      
 2476 
     | 
    
         
            +
            angeli:georgiatimi	;qi:urlbck2jpgi:
         
     | 
| 
      
 2477 
     | 
    
         
            +
            287pxi:autumni:urllinkbottomjpgi:urlh3_08gifi:coloraf9874i:	35pxiI;a'i:135i:backgroundcolore2c0ci:178i:urldotsgifi:backgroundpositiN;i#:httpwwwreh3comi:
         
     | 
| 
      
 2478 
     | 
    
         
            +
            750pxi:lineheightiz:urlr3_zc_support_bggifi:overflowautoi
         
     | 
| 
      
 2479 
     | 
    
         
            +
            265pxi	:
         
     | 
| 
      
 2480 
     | 
    
         
            +
            brunoi:
         
     | 
| 
      
 2481 
     | 
    
         
            +
            :backgroundurlcover_botpngi:	96pxi:small18emi:urlstone_21gifi:fontweight600i:pmargini:urlstyletitle_the_roadgifi:
         
     | 
| 
      
 2482 
     | 
    
         
            +
            401pxi:background666i:
         
     | 
| 
      
 2483 
     | 
    
         
            +
            313pxi:ietfdtdi:left170pxi:height470pxi:paddingleft40pxi:httpwwwkhmerangcomi;$7i:preamblesupportingtexti:9999pxi	:ahoverlresourci;�!i:urlh_archivesgifi:!color787878textdecorationnoni:
         
     | 
| 
      
 2484 
     | 
    
         
            +
            510pxi
         
     | 
| 
      
 2485 
     | 
    
         
            +
            :columnai:urlbgh3selgifi;	i:urlgardeniagifi:urlbg_hdrcsszengardenjpgi:zindex6i:urlcss_zenjpgi:width190pxi:urlheadlines_04gifi;i:urltopgifi:159i:
         
     | 
| 
      
 2486 
     | 
    
         
            +
            f0e9ci	:urlimgbulletgifi;�Fi:	57pxi:width604pxi:148i:urlfooterbggifi:
         
     | 
| 
      
 2487 
     | 
    
         
            +
            280pxi
         
     | 
| 
      
 2488 
     | 
    
         
            +
            :
         
     | 
| 
      
 2489 
     | 
    
         
            +
            6aa14i:
         
     | 
| 
      
 2490 
     | 
    
         
            +
            850pxi:paddingbottom10pxi
         
     | 
| 
      
 2491 
     | 
    
         
            +
            :
         
     | 
| 
      
 2492 
     | 
    
         
            +
            461pxi:backgroundurlbenefitspngi:httpmrthomasdotcomport5comi:wwwwortahncomi:urlimagesmain_bgjpgi:urlparticipation_hgifi;,i;*i:height30pxi:left150pxi:urlimagesbg_h3selectgifi:363i:accesskeii
         
     | 
| 
      
 2493 
     | 
    
         
            +
            :
         
     | 
| 
      
 2494 
     | 
    
         
            +
            620pxi;�i:
         
     | 
| 
      
 2495 
     | 
    
         
            +
            henrii
         
     | 
| 
      
 2496 
     | 
    
         
            +
            :
         
     | 
| 
      
 2497 
     | 
    
         
            +
            720pxi:urldropsjbgifi:
         
     | 
| 
      
 2498 
     | 
    
         
            +
            506pxi:backgrounddecd95i:height600pxi;�i
         
     | 
| 
      
 2499 
     | 
    
         
            +
            ;�Bi:color28411ci:right59pxi:efae89i:
         
     | 
| 
      
 2500 
     | 
    
         
            +
            245pxi;*i:8pxi1:
         
     | 
| 
      
 2501 
     | 
    
         
            +
            219pxi
         
     | 
| 
      
 2502 
     | 
    
         
            +
            :color696969i:urldemojpgi:12px140i:pulollidtdlddh1h2h3h4h5h6i;Ji:width685pxi:height24pxi	;Yi:spaceri:height80pxi;i:top35pxi:"backgroundimageurlzheader2gifi:margin75pxi:
         
     | 
| 
      
 2503 
     | 
    
         
            +
            085emi:h1pageheadi;~i	:alresourci:faa123i:paddingbottom8pxi:
         
     | 
| 
      
 2504 
     | 
    
         
            +
            764pxi:urlstar_bltpngi:left590pxi:backgroundurltreebggifi;^i:urlzenbgjpgi:urlrockbottomgifi:
         
     | 
| 
      
 2505 
     | 
    
         
            +
            105pxi:pfirstletti
         
     | 
| 
      
 2506 
     | 
    
         
            +
            :backgroundurlresourcespngi:urlcontainerbackgroundgifi:	--//i:urlbodybgjpgi:httpwwwliquidarchcomi:!httpwwwpeamarteit01metrohtmli:115i:padding135pxi:georgiatimesserifi:urlimgrequirementsgifi:zindexi":urlbgroundgifi;;	i:
         
     | 
| 
      
 2507 
     | 
    
         
            +
            155pxi:marginleft351pxi:d7661ci:626262i:urlside_03gifi:	30pxi�:"backgroundurlparticipationpngi:703i:brundli:
         
     | 
| 
      
 2508 
     | 
    
         
            +
            lukici:httpwwwdesignerstalkcomi:urlbckjpgi:bonsaii: backgroundurlselect_backgifi;P,i:
         
     | 
| 
      
 2509 
     | 
    
         
            +
            scrimi:
         
     | 
| 
      
 2510 
     | 
    
         
            +
            504pxi:1214pxi:urlpgifi:understandi:urlh3_06gifi:width18emi:2emi;�'i:urldownloadgifi:^-----------------------------------------------------------------------------------------i:urlbg_archivesgifi;�i
         
     | 
| 
      
 2511 
     | 
    
         
            +
            :	27pxi:urlheadersreq_titlejpgi:colorcfd9dci:width360pxi;�?i
         
     | 
| 
      
 2512 
     | 
    
         
            +
            ;�i:colora7d277i:
         
     | 
| 
      
 2513 
     | 
    
         
            +
            112pxi:
         
     | 
| 
      
 2514 
     | 
    
         
            +
            748pxi:typographii:urlstone_19gifi:colorabd550i:h3margin0i:width238pxi;.ij:urlfavoritesgifi:marginautoi:left185pxi:height240pxi:height4emi;#i:fontsize100i:0pxin:hicksdesigncouki:d07b02i:urlresources_hdrgifi:urlfootergifi:669900i:3b6132i	:ullresourci:urlbg_goldbluebeigegifi:6d7134i:backgroundurltreejpgi:top1098pxi:urla_linkjpgi:margintop55pxi:urlheadlines_03gifi:urlimagespreamble_bgjpgi:width85pxi:
         
     | 
| 
      
 2515 
     | 
    
         
            +
            159pxi:urlbackgroundgifi: httpwwwstuffandnonsensecouki:conleii:11em1emi:pennisii:backgroundurlflowerjpgi:wwwcouchfortneti:urlimgbenefitsgifi;i;�i	:font8pti:2b4d70i	:urlrequirementsgifi
         
     | 
| 
       1183 
2516 
     | 
    
         
             
            :
         
     | 
| 
       1184 
     | 
    
         
            -
             
     | 
| 
       1185 
     | 
    
         
            -
             
     | 
| 
       1186 
     | 
    
         
            -
             
     | 
| 
       1187 
     | 
    
         
            -
             
     | 
| 
       1188 
     | 
    
         
            -
             
     | 
| 
       1189 
     | 
    
         
            -
            i 
     | 
| 
       1190 
     | 
    
         
            -
             
     | 
| 
       1191 
     | 
    
         
            -
            i 
     | 
| 
       1192 
     | 
    
         
            -
            : 
     | 
| 
       1193 
     | 
    
         
            -
             
     | 
| 
      
 2517 
     | 
    
         
            +
            540pxi	:fontweightnormi:
         
     | 
| 
      
 2518 
     | 
    
         
            +
            270pxi: backgroundurlexplanationpngi;i:
         
     | 
| 
      
 2519 
     | 
    
         
            +
            648pxi:wisdomi:urllinkbackgifi:urlh3_05gifi:
         
     | 
| 
      
 2520 
     | 
    
         
            +
            googli:color191970i:d65200i:urlimgbody_bggifi:urlleaf_09dgifi:
         
     | 
| 
      
 2521 
     | 
    
         
            +
            345pxi:fontweight700i:109i:backgrounde9e6d9i:graphicis:b07d03i:width700pxi:
         
     | 
| 
      
 2522 
     | 
    
         
            +
            171pxi:width410pxi:width250pxi	:width70pxi:hengardeni:acvisiti:737373i;-"i
         
     | 
| 
      
 2523 
     | 
    
         
            +
            :urlbg_containergifi:urlarchives_hdrgifi;f)i:690i:lilresourci:172i:e6ccb3i:width454pxi:zindex0i:margintop5pxi:urlimagespreamblejpgi;�
         
     | 
| 
      
 2524 
     | 
    
         
            +
            606emi;,i;�Fi:922i:terrenci:
         
     | 
| 
      
 2525 
     | 
    
         
            +
            570pxi:
         
     | 
| 
      
 2526 
     | 
    
         
            +
            i:backgroundurlpreamblepngi:701i:urlbgfullgifi:mozarti:182i:angelui:olii:urlnavbottomgifi;�7i:
         
     | 
| 
      
 2527 
     | 
    
         
            +
            cellai:
         
     | 
| 
      
 2528 
     | 
    
         
            +
            619pxi:divlresourci:	90pxi:paddingtop62pxi:height140pxi;�i:larchiveshovi:eeei:urlstylesjpgi;�i:187i:urluselessjpgi:930000i:left425pxi:
         
     | 
| 
      
 2529 
     | 
    
         
            +
            115emi:debuggoodi:urlh3_04gifi:paddingtop12pxi:urlbg_selectgifi:urlh3requirementsgifi:18di:paddingbottomif:%urlheadersparticipation_titlejpgi:
         
     | 
| 
      
 2530 
     | 
    
         
            +
            691pxi:height45pxi:httpwwwcactuslabcomi:background2b411bi:
         
     | 
| 
      
 2531 
     | 
    
         
            +
            307pxi:color5ea936i:avisitedcolori:padding5pxi:urllistendjpgi;�7i;�i;�'i:colora77749i:marginleft185pxi:lineheight150i:
         
     | 
| 
      
 2532 
     | 
    
         
            +
            334pxi:lineheight9pxi:wordspacing01emi:
         
     | 
| 
      
 2533 
     | 
    
         
            +
            111pxi:	51pxi:aclinki:
         
     | 
| 
      
 2534 
     | 
    
         
            +
            565emi:odysseii:
         
     | 
| 
      
 2535 
     | 
    
         
            +
            :urlpageheader2jpgi:dae8bdi:hodgkinsoni:
         
     | 
| 
      
 2536 
     | 
    
         
            +
            350pxi:fontsize10emi:backgroundimageurlzclgifi:urlparticipationgifi:marginbottom5pxi:margin5pxi:602800i:	moeni;�i:
         
     | 
| 
      
 2537 
     | 
    
         
            +
            411pxi:urlzengardenmediah4gifi:	"]";i:	tidii:antonioi:9685bai:
         
     | 
| 
      
 2538 
     | 
    
         
            +
            199pxi:urlparticipation_bggifi:
         
     | 
| 
      
 2539 
     | 
    
         
            +
            680pxi:	adobi:
         
     | 
| 
      
 2540 
     | 
    
         
            +
            474pxi:romantimesserifi:urlpreambtitlejpgi;�$i;�i:urlstone_24gifi;L"i:aalinkavisitedaacti:!ahovertextdecorationunderlini:marginright235pxi;�im:urlbglistgifi;�i::+i:
         
     | 
| 
      
 2541 
     | 
    
         
            +
            247pxi:paddingtop35pxi:textindent1000pxi:liststyletypenoni:letterspacing005emi:1330pxi:textdecorationnoniP:075e7bi:retrospecti:
         
     | 
| 
      
 2542 
     | 
    
         
            +
            204pxi:urlimagesintro_bgjpgi:555i:urlheaderjpgi:font16px22pxi:
         
     | 
| 
      
 2543 
     | 
    
         
            +
            faulti:	02emi	:
         
     | 
| 
      
 2544 
     | 
    
         
            +
            256pxi;:i:textindent9999pxi:sunseti:
         
     | 
| 
      
 2545 
     | 
    
         
            +
            166pxi:bronweni:fontsize8emi:marginleft24pxi:4c4e39i:urlhtmlbgjpgi:*************************/i:	19pxi;i:stephani:
         
     | 
| 
      
 2546 
     | 
    
         
            +
            025emi:
         
     | 
| 
      
 2547 
     | 
    
         
            +
            367pxi:	"[";i:	neati:vertigoi:
         
     | 
| 
      
 2548 
     | 
    
         
            +
            640pxi:width226pxi:height467pxi:urlimagesbg_footergifi:morreli:urlbeautyjpgi:requirementshovi:
         
     | 
| 
      
 2549 
     | 
    
         
            +
            photoi;�i:margin1pxi:padding63pxi:fontsize1pxi:
         
     | 
| 
      
 2550 
     | 
    
         
            +
            207pxi:left0pxi:urlbg_h3_resourcesgifi:00cccci:333333i:ivii;li:336633i:colorc29e47i;�Ci:$backgroundurlresources_btm_2gifi:61a681i:brazili:
         
     | 
| 
      
 2551 
     | 
    
         
            +
            :padding60pxi:width430pxi:1a4861i:joachimi:
         
     | 
| 
      
 2552 
     | 
    
         
            +
            529pxi;�
         
     | 
| 
      
 2553 
     | 
    
         
            +
            invasi:
         
     | 
| 
      
 2554 
     | 
    
         
            +
            127pxi	;'8i:516i;qi�:attitudi:fontweightboldi-:urlsidetitle_03gifi:urlreadgifi:	11emi
         
     | 
| 
      
 2555 
     | 
    
         
            +
            :urlselectlistgifi; i6;$i	:left467pxi:
         
     | 
| 
      
 2556 
     | 
    
         
            +
            375pxi
         
     | 
| 
      
 2557 
     | 
    
         
            +
            solidi:urlh3sowhatgifi:74529ai:background4a6774i:drageni;'i:zindex3i:paddingleft18pxi:668fd1i:	25emi:marginrighti4:urlljpgi;�i:aaai:
         
     | 
| 
      
 2558 
     | 
    
         
            +
            327pxi:urlimagesbluearrowgifi:font11px32pxi:afontweightboldcolori:+httpcreativecommonsorglicensesbyncsa10ig;�i:margintop14emi:httpwwwshawnchinneti:
         
     | 
| 
      
 2559 
     | 
    
         
            +
            289pxi:left324pxi:width247pxi	:7d775ci:
         
     | 
| 
      
 2560 
     | 
    
         
            +
            7e8b4i:ahoversupportingtexti:texttransformcapiti	:c13003i:371212i:ahoverccolor949494i:urlqsp2gifi:	13pxi":janeiroi:urlbottom_linklistgifi:barricki:9pt16pti:height47pxi:left270pxi:9px14pxi:liststyleoutsidi;z,i:fff4eei:333331i:left421pxi:
         
     | 
| 
      
 2561 
     | 
    
         
            +
            125pxi;�!i	:urlimgpreamblebggifi:
         
     | 
| 
      
 2562 
     | 
    
         
            +
            :3pxiR:supriyonoi:
         
     | 
| 
      
 2563 
     | 
    
         
            +
            middli;Ci:702i:width345pxi:urlbullgifi:urlsidebar_part_3gifi:urlgrapesgifi:
         
     | 
| 
      
 2564 
     | 
    
         
            +
            282pxi:urlimagesarchives_titgifi:top64pxi:
         
     | 
| 
      
 2565 
     | 
    
         
            +
            233pxi:!urlpicscontent_backgroundjpgi:urlimagesbg_h3bengifi:beccahi:urluncultivatedgifi:participationhovi;[i:
         
     | 
| 
      
 2566 
     | 
    
         
            +
            216pxi	:cliparti:padding12pxi:urlbg_participationgifi:borderlefti:urlh3theroadgifi:919191i:colorf4d3b3i:httpwwwmanisheriarcomi:padding15pxi:backgroundurlcheckgifi:bdcca3i:2262a4i:konquerori:httpeyelovelinerui:96cb18i;�i:urlblatt02aajpgi;(i-:urlimagest_resourcesjpgi;Ni:minwidth750pxi;\i;�ih:
         
     | 
| 
      
 2567 
     | 
    
         
            +
            navigi;i:textindent9000pxi:	chini:top28pxi:backgroundpositioncenti:
         
     | 
| 
      
 2568 
     | 
    
         
            +
            244pxi:left600pxi:urlbg_h3_selectgifi:
         
     | 
| 
      
 2569 
     | 
    
         
            +
            658pxi:8f9947i:	11pxiC:	sitei:fontsize120i	:urlbackground_footergifi:marginleft5pxi:2f3027i:urlqsp1gifi:1f1f1fi:rioi:131i:containersupportingtexti:	16thi;P$i
         
     | 
| 
      
 2570 
     | 
    
         
            +
            :width615pxi:
         
     | 
| 
      
 2571 
     | 
    
         
            +
            615pxi:urlheadlines_02gifi;�&i:liststyleimagenoni:
         
     | 
| 
      
 2572 
     | 
    
         
            +
            screwi:
         
     | 
| 
      
 2573 
     | 
    
         
            +
            625pxi:
         
     | 
| 
      
 2574 
     | 
    
         
            +
            189pxi	:urlsidetitle_02gifi;i:bordertopcolori:divextradiv6i:	34pxi
         
     | 
| 
      
 2575 
     | 
    
         
            +
            :margin3pxi:699fc8i:divlselecti :background2baffai:urlimagesbg_h3pargifi:urlh3_dgifi:urlflowersjpgi:explanationhovi:egoi:httpwwwpiercegleesoncomi;?(i	;�i;�Bi:backgroundurlblendgifi:urlpinkjpgi:urlbg_explanationgifi;C	i�:urlh3favoritesgifi:4thi:width181pxi:sheriari:fontsize13pxi:marginbottom37pxi:urlpreamblejpgi:solarii:urlrequirements_bgjpgi:shabuniewiczi:
         
     | 
| 
      
 2576 
     | 
    
         
            +
            390pxi:urlimagest_archivesjpgi:134i:httpwwwmoncsi:httpwwwcarlosvarelaneti;�ih:httpwwwcaptainseriouscouki:!backgroundurlrequirementsjpgi;�i:visibilityvisi;mi:
         
     | 
| 
      
 2577 
     | 
    
         
            +
            shawni:backgroundrepeatrepeatii	:
         
     | 
| 
      
 2578 
     | 
    
         
            +
            158pxi:left100pxi:height118pxi:height120pxbackgroundi:999999i:0f330di;�"i	:alinklisti:fontfamilygeorgiatimi:color5d5d5di:143a1fi:
         
     | 
| 
      
 2579 
     | 
    
         
            +
            silvai:intropreambli;g$i:backgroundurlfooterjpgi;�i:urlfooter1gifi:d4cddci:
         
     | 
| 
      
 2580 
     | 
    
         
            +
            343pxi:
         
     | 
| 
      
 2581 
     | 
    
         
            +
            sillii:backgroundurlarchivespngi;�,i:
         
     | 
| 
      
 2582 
     | 
    
         
            +
            145pxi:urlsidebar_part_2gifi;'i:navbari:
         
     | 
| 
      
 2583 
     | 
    
         
            +
            490pxi:bordertopstyli:
         
     | 
| 
      
 2584 
     | 
    
         
            +
            418pxi:divextradiv5i: backgroundurlfooter_backgifi:
         
     | 
| 
      
 2585 
     | 
    
         
            +
            154pxi:urlexplanation_bgjpgi;i:	71pxi:urlimagesbg_h3expgifi:urlfoot2jpgi:preamblehovi:urlh3_cgifi:
         
     | 
| 
      
 2586 
     | 
    
         
            +
            leggoi:
         
     | 
| 
      
 2587 
     | 
    
         
            +
            ;�i:height100i:urllinesgifi: urlheaderspreamble_titlejpgi;i:urlh3archivesgifi;z
         
     | 
| 
      
 2588 
     | 
    
         
            +
            i�:colore6b788i;
         
     | 
| 
      
 2589 
     | 
    
         
            +
            i:width350pxi;~i:margin16pxi:background98ae6di:01228di	;�i:collapsi;.Ei: urlimagest_selectadesignjpgi:8297a7i:
         
     | 
| 
      
 2590 
     | 
    
         
            +
            hellsi
         
     | 
| 
      
 2591 
     | 
    
         
            +
            :varelai:	aradi:backgroundurlbenefitsjpgi;i:whitespacenowrapi:creativih:
         
     | 
| 
      
 2592 
     | 
    
         
            +
            272pxi:&backgroundimageurlzbackground2gifi:
         
     | 
| 
      
 2593 
     | 
    
         
            +
            765pxi;�i:urltopjpgi
         
     | 
| 
      
 2594 
     | 
    
         
            +
            :height25pxi:
         
     | 
| 
      
 2595 
     | 
    
         
            +
            messii:urlimgleft_lresourcesgifi:
         
     | 
| 
      
 2596 
     | 
    
         
            +
            140pxi:font12px22pxi;� i:salvagi:
         
     | 
| 
      
 2597 
     | 
    
         
            +
            :f93i:
         
     | 
| 
      
 2598 
     | 
    
         
            +
            776pxi	:
         
     | 
| 
      
 2599 
     | 
    
         
            +
            dazzli;�i:!backgroundimageurlrequiregifi:1115pxi:margin12pxi:urlbullet_03jpgi:
         
     | 
| 
      
 2600 
     | 
    
         
            +
            463pxi:
         
     | 
| 
      
 2601 
     | 
    
         
            +
            grapei:
         
     | 
| 
      
 2602 
     | 
    
         
            +
            262pxi
         
     | 
| 
      
 2603 
     | 
    
         
            +
            :urlrequibggifi:bordertopwidthi:divextradiv4i:paddingbottom20pxi:
         
     | 
| 
      
 2604 
     | 
    
         
            +
            445pxi:backgroundrepeatie:urlselect_designgifi:httpwwwtimovirtanencomi:textreplaci;5!i:urlh3_bgifi:
         
     | 
| 
      
 2605 
     | 
    
         
            +
            pierci:
         
     | 
| 
      
 2606 
     | 
    
         
            +
            diarii; i:
         
     | 
| 
      
 2607 
     | 
    
         
            +
            594pxi:urlimageslinklist_beveljpgi:555040i;?Ai;�i:
         
     | 
| 
      
 2608 
     | 
    
         
            +
            zohari:"backgroundurlparticipationjpgi;6i:urlstylebutton_htmlgifi;9ii:margintop100pxi:559999i:pp5i:left296pxi:urlbg_h3_benefitsgifi:009999i:urlh3_sowhatgifi:780101i;4)i:spansupportingtexti:
         
     | 
| 
      
 2609 
     | 
    
         
            +
            667pxi:urlh_requirementsgifi:541d1di:b1b1b1i:	29thi: httpilhasolcombastidoresaspi:#backgroundimageurlresourcesgifi;	i:
         
     | 
| 
      
 2610 
     | 
    
         
            +
            565pxi;�,i:	24pxi(;�i:margin05emi:	22ndi:urlimgleft_lfavoritesgifi:
         
     | 
| 
      
 2611 
     | 
    
         
            +
            134pxi	:
         
     | 
| 
      
 2612 
     | 
    
         
            +
            184pxi:254632i:00cc00i:@total_wordsi4�
         
     |