Evolutionary Computation ( 진 화 연 산 )

  • Upload
    claude

  • View
    45

  • Download
    0

Embed Size (px)

DESCRIPTION

Evolutionary Computation ( 진 화 연 산 ). 장 병 탁 서울대 컴퓨터공학부 E-mail: [email protected] http://scai.snu.ac.kr./~btzhang/ Byoung-Tak Zhang School of Computer Science and Engineering Seoul National University This material is also available online at http://scai.snu.ac.kr/. Outline. - PowerPoint PPT Presentation

Citation preview

  • Evolutionary Computation( ) E-mail: [email protected]://scai.snu.ac.kr./~btzhang/

    Byoung-Tak ZhangSchool of Computer Science and EngineeringSeoul National University

    This material is also available online at http://scai.snu.ac.kr/

  • *Outline

    Basic ConceptsTheoretical BackgroundsApplicationsCurrent IssuesReferences and URLs

  • *1. Basic Concepts

  • *Charles Darwin (1859)

    Owing to this struggle for life, any variation, however slight and from whatever cause proceeding, if it be in any degree profitable to an individual of any species, in its infinitely complex relations to other organic beings and to external nature, will tend to the preservation of that individual, and will generally be inherited by its offspring.

  • *Evolutionary AlgorithmsA Computational Model Inspired by Natural Evolution and GeneticsProved Useful for Search, Machine Learning and OptimizationPopulation-Based Search (vs. Point-Based Search)Probabilistic Search (vs. Deterministic Search)Collective Learning (vs. Individual Learning)Balance of Exploration (Global Search) and Exploitation (Local Search)

  • *Biological TerminologyGeneFunctional entity that codes for a specific feature e.g. eye colorSet of possible allelesAlleleValue of a gene e.g. blue, green, brownCodes for a specific variation of the gene/featureLocusPosition of a gene on the chromosomeGenomeSet of all genes that define a speciesThe genome of a specific individual is called genotypeThe genome of a living organism is composed of several Chromosomes PopulationSet of competing genomes/individuals

  • *Analogy to Evolutionary BiologyIndividual (Chromosome) = Possible SolutionPopulation = A Collection of Possible SolutionsFitness = Goodness of SolutionsSelection (Reproduction) = Survival of the FittestCrossover = Recombination of Partial SolutionsMutation = Alteration of an Existing Solution

  • *The Evolution Loopevaluateinitialize population

  • *Basic Evolutionary AlgorithmGeneration of initial solutions (A priori knowledge, results of earlier run, random)EvaluationSelectionSolutionSufficientlygood?ENDGeneration of variants by mutationand crossoverYESNO

  • *Procedurebegint
  • *General Structure of EAssolutions1100101010101110111000110110011100110001110010111010111011101100101010crossovermutation001101011101010100110011010010evaluation110010111010111010100011001001solutionsfitnesscomputationroulettewheelselectionnew populationencodingchromosomes

  • *Population and Fitness

  • *Selection, Crossover, and MutationReproductionDistinctionMutationCrossover246486610886

  • *Simulated Evolution

  • *Selection StrategiesProportionate SelectionReproduce offspring in proportion to fitness fi.

    Ranking SelectionSelect individuals according to rank(fi).

    Tournament SelectionChoose q individuals at random, the best of which survives.

    Other Ways

  • *Roulette Wheel Selection intermediate parent population:01011110101000110001 Probability of reproduction pi = fi / Sk fk Selection is a stochastic process

  • *Genetic Operators for BitstringsReproduction: make copies of chromosome (the fitter the chromosome, the more copies) 1 0 0 0 0 1 0 0 Crossover: exchange subparts of two chromosomes Mutation: randomly flip some bits 1 0 0 | 0 0 1 0 0 1 1 1 | 1 1 1 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 01 0 0 0 0 1 0 01 0 0 1 1 1 1 1 1 1 1 0 0 1 0 00 0 0 0 0 0 0 0

  • *MutationFor a binary string, just randomly flip a bit For a more complex structure, randomly select a site, delete the structure associated with this site, and randomly create a new sub-structure Some EAs just use mutation (no crossover) Normally, however, mutation is used to search in the local search space, by allowing small changes in the genotype (and therefore hopefully in the phenotype)

  • *Recombination (Crossover)Crossover is used to swap (fit) parts of individuals, in a similar way to sexual reproduction Parents are selected based on fitness Crossover sites selected (randomly, although other mechanisms exist), with some prob. Parts of the parents are exchanged to produce children

  • *Crossover One-point crossoverparent Aparent B1 1 0 1 01 0 0 0 1offspring Aoffspring B1 1 0 111 0 0 00 Two-point crossoverparent Aparent B1 1 0 1 01 0 0 0 1offspring Aoffspring B1 10 01 00 101

  • *2. Theoretical Backgrounds

  • *Major Evolutionary AlgorithmsGenetic ProgrammingEvolution StrategiesGenetic AlgorithmsEvolutionaryProgrammingClassifier Systems Genetic representation of candidate solutions Genetic operators Selection scheme Problem domainHybrids: BGA

  • *Variants of Evolutionary AlgorithmsGenetic Algorithm (Holland et al., 1960s)Bitstrings, mainly crossover, proportionate selectionEvolution Strategy (Rechenberg et al., 1960s)Real values, mainly mutation, truncation selectionEvolutionary Programming (Fogel et al., 1960s)FSMs, mutation only, tournament selectionGenetic Programming (Koza, 1990)Trees, mainly crossover, proportionate selectionHybrids: BGA (Muehlenbein et al., 1993) BGP (Zhang et al., 1995) and others.

  • *Evolution Strategy (ES)Problem of real-valued optimizationFind extremum (minimum) of function F(X): Rn ->ROperate directly on real-valued vector XGenerate new solutions through Gaussian mutation of all componentsSelection mechanism for determining new parents

  • *ES: Representation One individual:The three parts of an individual:: Object variables: Standard deviations: Rotation anglesFitnessVariancesCovariances

  • * , where rx, r , r {-, d, D, i, I, g, G}, e.g. rdIIES: Operator - Recombination

  • *

    m{,,} : I I is an asexual operator.n = n, n = n(n-1)/2

    1 < n < n, n = 0

    n = 1, n = 0

    ES: Operator - Mutation

  • *ES: Illustration of Mutation HyperellipsoidsLine of equal probability density to place an offspring

  • *ES: Evolution Strategy vs. Genetic AlgorithmCreate random initial populationEvaluate populationSelect individuals for variationVaryInsert intopopulationCreate random initial populationEvaluate populationVarySelectionInsert intopopulation

  • *Evolutionary Programming (EP) Original form (L. J. Fogel)Uniform random mutationsDiscrete alphabets selectionExtended Evolutionary Programming (D. B. Fogel)Continuous parameter optimizationSimilarities with ESNormally distributed mutationSelf-adaptation of mutation parameters

  • *EP: RepresentationConstraints for domain and variances Initialization only-operators does not surveySearch space is principally unconstrained.Individual

  • *EP: Operator - RecombinationNo recombinationGaussian mutation does better (Fogel and Atmar).Not all situationsEvolutionary biologyThe role of crossover is often overemphasized.Mutation-enhancing evolutionary optimizationCrossover-segregating defectsThe main point of view from researchers in the field of Genetic Algorithms

  • *EP: Operator - MutationGeneral form (std. EP)

    Exogenous parameters must be tuned for a particular taskUsuallyProblemIf global minimums fitness value is not zero, exact approachment is not possibleIf fitness values are very large, the search is almost random walkIf user does not know about approximate position of global minimum, parameter tuning is not possible

  • *EP: Differences from ESProcedures for self-adaptationDeterministic vs. Probabilistic selection -ES vs. -EPLevel of abstraction: Individual vs. Species

  • *Genetic ProgrammingApplies principles of natural selection to computer search and optimization problems - has advantages over other procedures for badly behaved solution spaces [Koza, 1992]Genetic programming uses variable-size tree-representations rather than fixed-length strings of binary values.Program tree = S-expression = LISP parse treeTree = Functions (Nonterminals) + Terminals

  • *GP: RepresentationS-expression: (+ 1 2 (IF (> TIME 10) 3 4))Terminals = {1, 2, 3, 4, 10, TIME}Functions = {+, >, IF}+24>31IFTIME10

  • *GP: Operator - Crossover+b+aab+abab+b+ab

  • *GP: Operator - Mutationab+b/a+b+b/a-ba

  • *Breeder GP (BGP) [Zhang and Muehlenbein, 1993, 1995]ES (real-vector)GA (bitstring)Breeder GA (BGA)(real-vector + bitstring)GP (tree)Breeder GP (BGP)(tree + real-vector + bitstring)Muehlenbein et al. (1993)Zhang et al. (1993)

  • *GAs: Theory of Simple GAAssumptionsBitstrings of fixed sizeProportionate selectionDefinitionsSchema H: A set of substrings (e.g., H = 1**0)Order o: number of fixed positions (FP) (e.g., o(H) = 2)Defining length d: distance between leftmost FP and rightmost FP (e.g., d(H) = 3)

  • *GAs: Schema Theorem (Holland et al. 1975) , Number of members of HProbability of crossover and mutation, respectivelyInterpretation: Fit, short, low-order schemata (or building blocks) exponentially grow.

  • *Convergence velocity of (+, )-ESES: Theory

  • *EP: Theory (1)Analysis of std. EP(Fogel)Aims at giving a proof of convergence for resulting algorithm Mutation:Analysis of a special case EP(1,0,q,1)Identical to a (1+1)-ES havingObjective functionSimplified sphere model

  • *EP: Theory (2)Combination with the optimal SD

    When dimension is increased, the performance is worse than an algorithm that is able to retain the opt. SD

    The convergence rate of a (1+1)-EP by

  • *Breeder GP: Motivation for GP TheoryIn GP, parse trees of Lisp-like programs are used as chromosomes.Performance of programs are evaluated by training error and the program size tends to grow as training error decreases.Eventual goal of learning is to get small generalization error and the generalization error tends to increase as program size grows.How to control the program growth?

  • *Breeder GP: MDL-Based Fitness FunctionTraining error of neural trees A for data set DStructural complexity of neural trees ARelative importance of each term

  • *Breeder GP: Adaptive Occam Method (Zhang et al., 1995)Desired performance level in errorTraining error of best progr. at gen t-1Complexity of best progr. at gen. t

  • *Bayesian Evolutionary Computation (1/2)The best individual is defined as the most probable model of data D given the priori knowledge

    The objective of evolutionary computation is defined to find the model A* that maximizes the posterior probability

    Bayesian theorem is used to estimate P(A|D) from a population A(g) of individuals at each generation.

  • *Bayesian process: The BEAs attempt to explicitly estimate the posterior distribution of the individuals from their prior probability and likelihood, and then sample offspring from the distribution.Bayesian Evolutionary Computation (2/2)[Zhang, 99]

  • *Canonical BEA(Initialize) Generate from the prior distribution P0(A). Set generation count t 0.(P-step) Estimate posterior distribution Pt(A|D) of the individuals in At.(V-step) Generate L variations by sampling from Pt(A|D).(S-step) Select M individuals from A into based on Pt(Ai |D). Set the best individual .(Loop) If the termination condition is met, then stop. Otherwise, set t t+1 and go to (P-step).

  • *Basic Idea behind BEA

  • *Evolving Neural Trees with BEAPosterior probability of a neural tree A

  • *Features of EAsEvolutionary techniques are good for problems that are ill-defined or difficult Many different forms of representation Many different types of EA Leads to many different types of crossover, mutation, etc. Some problems with convergence, efficiency However, they are able to solve a diverse range of problems

  • *Advantages of EAsEfficient investigation of large search spaces Quickly investigate a problem with a large number of possible solutions Problem independence Can be applied to many different problems Best suited to difficult combinatorial problems

  • *Disadvantages of EAsNo guarantee for finding optimal solutions with a finite amount of time: True for all global optimization methods.No complete theoretical basis (yes). But much process is being made.Parameter tuning is largely based on trial and error (genetic algorithms); solution: Self-adaptation (evolution strategies). Often computationally expensive: Parallelism.

  • *3. Applications

  • *Application Fields (1)Experimental optimization & optimization with subjective evaluationCoffee recipes; general food recipesBiochemical fermentation processesWind tunnel experimentsTwo-phase nozzle optimization experimentsTechnical optimizationDesign & ProductionLogisticsControl of dynamic processes

  • *Application Fields (2)Structure optimizationStructure & parameters of plantsConnection structure & weights of neural netsNumber of thicknesses of layers in multilayer structuresData MiningClustering (number & centers of clusters)Fitting models to dataTime series prediction

  • *Application Fields (3)Path PlanningTraveling Salesman ProblemRobot ControlEvolutionary RoboticsEvolvable Hardware

  • *Hot Water Flashing Nozzle (1)StartHot water enteringSteam and droplet at exitAt throat: Mach 1 and onset of flashingApplication Example 1Hans-Paul Schwefel performed the original experiments

  • *Hot Water Flashing Nozzle (2)Application Example 1

  • *Minimal Weight Trust Layout LoadStart

    922 kp

    (LP minimum)Optimum

    738 kpApplication Example 2

  • *Concrete Shell Roofunder own and outer load (snow and wind)Height 1.34mSpherical shapeOptimal shapeHalf span 5.00mSavings : 36% shell thickness 27% armationmax minOrthogonal bending strengthApplication Example 3

  • *Dipole Magnet Structure (1)Application Example 4

  • *Dipole Magnet Structure (2)Analysis of the magnetic field by Finite Element Analysis (FEM)Minimize sum of squared deviations from the idealIndividuals: Vectors of positions (y1, , yn)Middle: 9.8% better than upper graphic; bottom: 2.7% betterApplication Example 4

  • *Optical Multilayers (1) Goal: Find a filter structure such that the real reflection behavior matches the desired one as close as possible. Filter layers; - Thicknesses - Materials..Substrate (Glass)ReflectionWavelengthDesiredCurrentApplication Example 5

  • *Optical Multilayers (2)Problem parameters;Thickness of layersLayer materials (integer values)Number of layers n. Mixed-integer, variable-dimensional problem.Application Example 5

  • *Optical Multilayers (3)Objective function:

    : Reflection of the actual filter for wavelength Calculation according to matrix method. : Desired reflection value

    Application Example 5

  • *Optical Multilayers (4)Example topology: Only layer thicknesses vary; n=2Application Example 5

  • *Optical Multilayers (5)Example structure:Application Example 5

  • *Optical Multilayers (6)Parallel evolutionary algorithmPer node: EA for mixed-integer representationIsolation and migration of best individualsMutation of discrete variables: Fixed pm per population

    Application Example 5

  • *Circuit Design (1)Difficulty of automated circuit design:A vary hard problemExponential in the number of componentsMore than 10300 circuits with a mere 20 componentsAn important problemToo few analog designersThere is an Egg-shell of analog circuitry around almost all digital circuitsAnalog circuits must be redesigned with each new generation of process technologyNo existing automated techniquesIn contrast with digitalExisting analog techniques do only sizing of components, but do not create the topologyApplication Example 6

  • *Circuit Design (2)Application Example 6OutInDeveloping CircuitDevelopment of a circuit with Genetic Programming

  • *Circuit Design (3)Each function in the circuit-constructing tree acts on a part of the circuit and changes it in some way (e.g. creates a capacitor, creates a parallel structure, adds a connection to ground, etc)A writing head points from each function to the part of the circuit that the function will act on.Each function inherits writing heads from its parent in the treeApplication Example 6

  • *Circuit Design (4)Example of circuit constructing program tree

    (LIST (C (-0.963 (- (- -0.875 0.113) 0.880)) (series (flip end) (series (flip end) (L 0.277 end) end) (L (- -0.640 0.749) (L 0.123 end)))) (flip (nop (L 0.657 end)))))Application Example 6

  • *Neural Network Design (1)Introduction: EC for NNsPreprocessing of Training DataFeature selectionTraining set optimizationTraining of Network WeightsNon-gradient searchOptimization of Network ArchitectureTopology adaptationPruning unnecessary connections/unitsApplication Example 7

  • *Neural Network Design (2)Encoding Schemes for NNs

    Bit-stringsProperties of network structure are encoded as bit-strings.RulesNetwork configuration is specified by a graph-generation grammar.TreesNetwork is represented as neural trees.Application Example 7

  • *Neural Network Design (3)Neural Tree ModelsNeural treesTree-structured neural networksNonterminal nodes: Neural unitsTerminal nodes: InputsLinks: connection weights wij from j to iLayer of node i: path length of the longest path to a terminal node of the substrees of i.Type of UnitsSigma unit: the sum of weighted inputsPi unit: the product of weighted inputsOutput of a neuron: sigmoid transfer functionApplication Example 7

  • *Neural Network Design (4)Application Example 7Tree-Structured Model

  • *Neural Network Design (5)Generate M TreesEvaluate Fitness of TreesCreate L New TreesSelect Fitter TreesTermination Condition?STOPPosterior DistributionModel SelectionModel Variation(Variation Operators)YesNoPrior DistributionApplication Example 7Evolving Neural Networks by BEAs

  • *Neural Network Design (6)Structural Adaptation by Subtree CrossoverNeuron type, topology, size and shape of networks are adapted by crossover.

    Neuron types and receptive fields are adapted by mutation.Connection weights are adapted by an EC-based stochastic hill-climbing.Application Example 7

  • *Fuzzy System Design (1)Fuzzy system comprises Fuzzy membership functions (MF) Rules Task is to tailor the MF and rules to get best performance Every change to MF affects the rules Every change to the rules affects the MF

    Application Example 8

  • *Fuzzy System Design (2)Solution is to design MF and rules simultaneously Encode in chromosomes Aarameters of the MF Associations and Certainty Factors in rules Fitness is measured by performance of the Fuzzy SystemApplication Example 8

  • *Fuzzy System Design (3)Evolutionary Computation and Fuzzy Systems

    Fuzzy Sets (Zadeh): Points have Memberships

    Evolutionary Computation can be Used to Optimize Fuzzy Control SystemsEvolve Membership Functions/RulesFUZZY MEMBERSHIP FOR COOLMembership0.01.00o2.5oTemperature (C)Application Example 8

  • *Fuzzy System Design (4)NM=Negative Medium, NS=Negative Small, ZE=Zero, PS=Positive Small, PM=Positive Medium, _=No EntryDefuzzification is Just Weighed CentroidMutation Up/Down by One. Two-Point Xover on String Representing the 5x5 MetrixCart Centering and Fuzzy PartitionsFuzzy Control Strategy after 100 Gen.Fmx(v=x)NMNSZEPSPMApplication Example 8GA for Fuzzy Control of Cart

  • *Data Mining (1)Data Mining TaskTypes of problem to be solved:ClassificationClusteringDependence Modelingetc., etc.Application Example 9

  • *Data Mining (2)Basic Ideas of GAs in Data MiningCandidate rules are represented as individuals of a populationRule quality is computed by a fitness functionUsing task-specific knowledgeApplication Example 9

  • * Data Mining (3)Classification with Genetic AlgorithmsEach individual represents a rule set i.e. an independent candidate solutionEach individual represents a single ruleA set of individuals (or entire population) represents a candidate solution (rule set)

    Application Example 9

  • *Data Mining (4)Individual Representation In GABIL, an individual is a rule set, encoded as a bit string [DeJong et al. 93]It uses k bits for the k values of a categorical attributeIf all k bits of an attribute are set to 1 the attribute is not used by the ruleGoal attribute: Buy furnitureMarital_status: Single/Married/DivorcedHouse:Own/Rented/University Marital_status House Buy? The string 011 100 1Represents the rule IF(Marital_status=M or D) and (House = 0) THEN (Buy furniture=y)Application Example 9

  • *Data Mining (5)An individual is a variable-length string representing a set of fixed-length rules

    rule 1 rule 2 011 100 1 101 110 0

    Mutation: traditional bit inversionCrossover: corresponding crossover points in the two parents must semantically matchApplication Example 9

  • *Information Retrieval (1)Classification SystemInformation Filtering Systemquestionuser profilefeedbackanswerDB Template Filling& InformationExtraction SystemInformation FilteringInformation Extractionfiltered dataText ClassificationPreprocessing and IndexingApplication Example 10

  • *Information Retrieval (2)[Kim & Zhang, 2000]chromosomes RetrievalFitnessApplication Example 10Evolutionary Learning: Applications in IR - Web-Document Retrieval

  • *Information Retrieval (3)Crossover

    Truncation selectionMutationchromosome Xchromosome Ychromosome Z (offspring)zi = (xi + yi ) / 2 w.p. Pcchromosome Xchromosome Xchange value w.p. PmApplication Example 10Evolutionary Learning: Applications in IR Tag Weighting

  • *Information Retrieval (4)DatasetsTREC-8 Web Track Data2GB, 247491 web documents (WT2g)No. of training topics: 10, No. of test topics: 10ResultsApplication Example 10Evolutionary Learning : Applications in IR - Experimental Results

  • *Time Series Prediction (1)Application Example 11RawTime SeriesPrepro-cessingEvolutionaryNeural Trees(ENTs)CombiningNeural TreesAutonomousModel DiscoveryCombine Neural TreesOutputsPrediction[Zhang & Joung, 2000]

  • *Time Series Prediction (2)Experimental Setup for the far-infrared NH3 LaserApplication Example 11

    Sheet1

    Design ParamentersValues Used

    population size200

    max generation50

    crossover rate0.95

    mutation rate0.1

    no. of iterations100

    training set size1000

    test set size1000

    size of committee pool10

    no. of committee members3

    Sheet2

    Sheet3

  • *Time Series Prediction (3)Experimental ResultComputed ApproximationTarget FunctionApplication Example 11

    Chart1

    0.332016

    0.549407

    0.367589

    0.15415

    0.0790514

    0.0750988

    0.118577

    0.27668

    0.537549

    0.43083

    0.181818

    0.083004

    0.0671937

    0.0988142

    0.225296

    0.501976

    0.501976

    0.221344

    0.0988142

    0.0671937

    0.0869565

    0.173913

    0.434783

    0.561265

    0.280632

    0.110672

    0.0711462

    0.0671937

    0.13834

    0.355731

    0.592885

    0.359684

    0.134387

    0.0711462

    0.0632411

    0.106719

    0.272727

    0.56917

    0.454545

    0.173913

    0.083004

    0.0632411

    0.0790514

    0.197628

    0.498024

    0.55336

    0.237154

    0.0948617

    0.0592885

    0.0671937

    0.13834

    0.387352

    0.616601

    0.332016

    0.118577

    0.0592885

    0.0592885

    0.0988142

    0.27668

    0.600791

    0.458498

    0.162055

    0.0711462

    0.0513834

    0.0750988

    0.177866

    0.498024

    0.58498

    0.241107

    0.0869565

    0.055336

    0.0592885

    0.12253

    0.355731

    0.648221

    0.367589

    0.12253

    0.055336

    0.0474308

    0.0790514

    0.221344

    0.581028

    0.533597

    0.189723

    0.0711462

    0.0513834

    0.055336

    0.130435

    0.411067

    0.660079

    0.316206

    0.102767

    0.0513834

    0.0474308

    0.083004

    0.249012

    0.624506

    0.517787

    0.16996

    0.0632411

    0.0474308

    0.055336

    0.134387

    0.43083

    0.687747

    0.3083

    0.0948617

    0.0474308

    0.0434783

    0.0711462

    0.229249

    0.636364

    0.545455

    0.16996

    0.0632411

    0.0395257

    0.0474308

    0.110672

    0.379447

    0.72332

    0.359684

    0.102767

    0.0474308

    0.0395257

    0.0592885

    0.173913

    0.565217

    0.652174

    0.221344

    0.0671937

    0.0355731

    0.0395257

    0.0750988

    0.26087

    0.715415

    0.513834

    0.142292

    0.0513834

    0.0355731

    0.0434783

    0.0948617

    0.359684

    0.790514

    0.387352

    0.0988142

    0.0395257

    0.0316206

    0.0434783

    0.110672

    0.442688

    0.806324

    0.316206

    0.0750988

    0.0355731

    0.027668

    0.0316206

    0.110672

    0.466403

    0.841897

    0.296443

    0.0711462

    0.0316206

    0.0237154

    0.027668

    0.0750988

    0.367589

    0.916996

    0.383399

    0.0790514

    0.027668

    0.0237154

    0.0197628

    0.027668

    0.130435

    0.687747

    0.841897

    0.173913

    0.0355731

    0.0197628

    0.0118577

    0.00790514

    0.00395257

    0.00790514

    0.0671937

    0.407115

    0.486166

    0.209486

    0.110672

    0.102767

    0.15415

    0.272727

    0.379447

    0.304348

    0.185771

    0.126482

    0.12253

    0.177866

    0.288538

    0.367589

    0.29249

    0.181818

    0.126482

    0.130435

    0.185771

    0.300395

    0.371542

    0.288538

    0.177866

    0.126482

    0.126482

    0.185771

    0.312253

    0.383399

    0.29249

    0.173913

    0.118577

    0.12253

    0.185771

    0.320158

    0.391304

    0.284585

    0.166008

    0.118577

    0.12253

    0.189723

    0.328063

    0.399209

    0.280632

    0.162055

    0.110672

    0.114625

    0.185771

    0.328063

    0.411067

    0.284585

    0.162055

    0.114625

    0.114625

    0.185771

    0.335968

    0.422925

    0.29249

    0.15415

    0.106719

    0.110672

    0.177866

    0.335968

    0.426877

    0.29249

    0.15415

    0.102767

    0.110672

    0.177866

    0.339921

    0.442688

    0.304348

    0.15415

    0.102767

    0.102767

    0.16996

    0.332016

    0.454545

    0.316206

    0.158103

    0.0948617

    0.0948617

    0.162055

    0.324111

    0.462451

    0.328063

    0.158103

    0.0948617

    0.0909091

    0.146245

    0.3083

    0.470356

    0.347826

    0.162055

    0.0948617

    0.0869565

    0.134387

    0.29249

    0.478261

    0.371542

    0.173913

    0.0948617

    0.083004

    0.130435

    0.27668

    0.478261

    0.395257

    0.189723

    0.0988142

    0.0790514

    0.114625

    0.245059

    0.470356

    0.426877

    0.201581

    0.0988142

    0.0750988

    0.102767

    0.217391

    0.454545

    0.466403

    0.225296

    0.102767

    0.0711462

    0.0909091

    0.185771

    0.422925

    0.498024

    0.26087

    0.114625

    0.0711462

    0.083004

    0.162055

    0.379447

    0.525692

    0.296443

    0.126482

    0.0790514

    0.0790514

    0.134387

    0.332016

    0.541502

    0.351779

    0.142292

    0.0750988

    0.0671937

    0.110672

    0.280632

    0.533597

    0.41502

    0.166008

    0.083004

    0.0671937

    0.0948617

    0.225296

    0.501976

    0.486166

    0.209486

    0.0869565

    0.0632411

    0.0790514

    0.177866

    0.442688

    0.545455

    0.26087

    0.102767

    0.0632411

    0.0671937

    0.134387

    0.359684

    0.58498

    0.339921

    0.126482

    0.0671937

    0.0632411

    0.102767

    0.27668

    0.573123

    0.434783

    0.162055

    0.0711462

    0.055336

    0.083004

    0.201581

    0.509881

    0.533597

    0.221344

    0.0869565

    0.055336

    0.0671937

    0.142292

    0.403162

    0.608696

    0.3083

    0.110672

    0.0592885

    0.055336

    0.102767

    0.288538

    0.608696

    0.434783

    0.150198

    0.0632411

    0.0513834

    0.0750988

    0.193676

    0.513834

    0.565217

    0.225296

    0.0790514

    0.0513834

    0.0592885

    0.118577

    0.371542

    0.640316

    0.343874

    0.110672

    0.055336

    0.0474308

    0.0869565

    0.237154

    0.596838

    0.505929

    0.173913

    0.0671937

    0.0434783

    0.0592885

    0.13834

    0.438735

    0.644269

    0.288538

    0.0909091

    0.0474308

    0.0434783

    0.0869565

    0.26087

    0.640316

    0.478261

    0.150198

    0.0592885

    0.0434783

    0.055336

    0.142292

    0.458498

    0.664032

    0.272727

    0.0869565

    0.0434783

    0.0395257

    0.0790514

    0.249012

    0.652174

    0.501976

    0.150198

    0.055336

    0.0395257

    0.0474308

    0.12253

    0.41502

    0.711462

    0.312253

    0.0869565

    0.0395257

    0.0355731

    0.0592885

    0.193676

    0.608696

    0.604743

    0.185771

    0.0592885

    0.0355731

    0.0355731

    0.083004

    0.296443

    0.73913

    0.44664

    0.118577

    0.0434783

    0.027668

    0.0395257

    0.110672

    0.41502

    0.770751

    0.316206

    0.083004

    0.0316206

    0.027668

    0.0395257

    0.134387

    0.521739

    0.750988

    0.245059

    0.0632411

    0.0316206

    0.0237154

    0.0434783

    0.13834

    0.577075

    0.762846

    0.221344

    0.055336

    0.027668

    0.0237154

    0.0316206

    0.106719

    0.513834

    0.86166

    0.256917

    0.0513834

    0.0237154

    0.0158103

    0.0197628

    0.0474308

    0.252964

    0.928854

    0.533597

    0.0909091

    0.027668

    0.0158103

    0.0118577

    0.00790514

    0.0118577

    0.0909091

    0.644269

    0.913043

    0.193676

    0.0395257

    0.0197628

    0.0197628

    0.0197628

    0.0632411

    0.3083

    0.786561

    0.422925

    0.106719

    0.0395257

    0.0316206

    0.0474308

    0.142292

    0.498024

    0.660079

    0.241107

    0.0711462

    0.0355731

    0.0355731

    0.083004

    0.284585

    0.675889

    0.442688

    0.126482

    0.0474308

    0.0355731

    0.0474308

    0.13834

    0.474308

    0.671937

    0.256917

    0.0750988

    0.0355731

    0.0355731

    0.0711462

    0.245059

    0.660079

    0.509881

    0.146245

    0.0434783

    0.027668

    0.0395257

    0.102767

    0.387352

    0.735178

    0.339921

    0.0909091

    0.0355731

    0.0316206

    0.0474308

    0.15415

    0.549407

    0.687747

    0.217391

    0.0592885

    0.0316206

    0.0316206

    0.055336

    0.213439

    0.683794

    0.581028

    0.15415

    0.0474308

    0.0237154

    0.027668

    0.0632411

    0.256917

    0.766798

    0.505929

    0.118577

    0.0355731

    0.0237154

    0.0197628

    0.0592885

    0.252964

    0.810277

    0.509881

    0.110672

    0.0316206

    0.0197628

    0.0158103

    0.0395257

    0.181818

    0.754941

    0.671937

    0.146245

    0.0355731

    0.0197628

    0.0158103

    0.0158103

    0.055336

    0.332016

    1

    0.41502

    0.0671937

    0.0237154

    0.0118577

    0.00790514

    0.00395257

    0

    0

    0.0197628

    0.083004

    0.0237154

    0.0158103

    0.0237154

    0.055336

    0.12253

    0.217391

    0.249012

    0.213439

    0.173913

    0.173913

    0.205534

    0.245059

    0.252964

    0.225296

    0.185771

    0.173913

    0.181818

    0.221344

    0.256917

    0.256917

    0.229249

    0.189723

    0.177866

    0.193676

    0.229249

    0.264822

    0.26087

    0.221344

    0.189723

    0.173913

    0.197628

    0.233202

    0.272727

    0.26087

    0.221344

    0.181818

    0.173913

    0.201581

    0.245059

    0.27668

    0.26087

    0.213439

    0.177866

    0.16996

    0.201581

    0.249012

    0.280632

    0.256917

    0.205534

    0.173913

    0.173913

    0.209486

    0.256917

    0.284585

    0.252964

    0.205534

    0.166008

    0.173913

    0.209486

    0.268775

    0.29249

    0.252964

    0.193676

    0.16996

    0.173913

    0.221344

    0.280632

    0.296443

    0.249012

    0.197628

    0.166008

    0.173913

    0.225296

    0.288538

    0.300395

    0.245059

    0.185771

    0.162055

    0.177866

    0.233202

    0.300395

    0.304348

    0.241107

    0.177866

    0.162055

    0.177866

    0.241107

    0.3083

    0.304348

    0.233202

    0.173913

    0.158103

    0.181818

    0.252964

    0.324111

    0.3083

    0.229249

    0.173913

    0.158103

    0.189723

    0.26087

    0.332016

    0.3083

    0.225296

    0.162055

    0.15415

    0.189723

    0.272727

    0.339921

    0.304348

    0.213439

    0.15415

    0.15415

    0.193676

    0.280632

    0.351779

    0.300395

    0.209486

    0.15415

    0.150198

    0.197628

    0.288538

    0.363636

    0.300395

    0.205534

    0.146245

    0.150198

    0.197628

    0.304348

    0.367589

    0.29249

    0.189723

    0.13834

    0.142292

    0.197628

    0.3083

    0.375494

    0.29249

    0.189723

    0.134387

    0.13834

    0.205534

    0.320158

    0.379447

    0.284585

    0.177866

    0.126482

    0.13834

    0.201581

    0.328063

    0.387352

    0.284585

    0.16996

    0.126482

    0.130435

    0.205534

    0.335968

    0.399209

    0.27668

    0.162055

    0.12253

    0.130435

    0.201581

    0.339921

    0.399209

    0.280632

    0.162055

    0.118577

    0.12253

    0.201581

    0.351779

    0.407115

    0.27668

    0.15415

    0.114625

    0.12253

    0.205534

    0.351779

    0.418972

    0.27668

    0.15415

    0.110672

    0.118577

    0.193676

    0.359684

    0.43083

    0.284585

    0.15415

    0.106719

    0.114625

    0.193676

    0.359684

    0.438735

    0.288538

    0.150198

    0.106719

    0.110672

    0.185771

    0.355731

    0.458498

    0.300395

    0.15415

    0.102767

    0.106719

    0.173913

    0.347826

    0.466403

    0.316206

    0.158103

    0.106719

    0.102767

    0.16996

    0.339921

    0.482213

    0.332016

    0.162055

    0.0988142

    0.0988142

    0.15415

    0.320158

    0.490119

    0.351779

    0.16996

    0.0988142

    0.0948617

    0.142292

    0.300395

    0.494071

    0.383399

    0.177866

    0.0988142

    0.0869565

    0.130435

    0.27668

    0.490119

    0.411067

    0.197628

    0.102767

    0.083004

    0.118577

    0.249012

    0.478261

    0.450593

    0.213439

    0.106719

    0.0790514

    0.102767

    0.213439

    0.454545

    0.490119

    0.245059

    0.110672

    0.0790514

    0.0988142

    0.185771

    0.41502

    0.517787

    0.284585

    0.118577

    0.0750988

    0.083004

    0.15415

    0.367589

    0.545455

    0.324111

    0.134387

    0.0750988

    0.0750988

    0.130435

    0.3083

    0.549407

    0.383399

    0.158103

    0.0790514

    0.0711462

    0.106719

    0.256917

    0.525692

    0.454545

    0.185771

    0.0869565

    0.0632411

    0.0909091

    0.197628

    0.474308

    0.521739

    0.237154

    0.0948617

    0.0632411

    0.0711462

    0.15415

    0.403162

    0.577075

    0.304348

    0.118577

    0.0632411

    0.0671937

    0.118577

    0.316206

    0.588933

    0.387352

    0.146245

    0.0671937

    0.0592885

    0.0909091

    0.237154

    0.545455

    0.498024

    0.197628

    0.0790514

    0.0592885

    0.0750988

    0.166008

    0.450593

    0.58498

    0.272727

    0.0988142

    0.0632411

    0.0632411

    0.118577

    0.339921

    0.620553

    0.379447

    0.134387

    0.0671937

    0.055336

    0.0909091

    0.233202

    0.56917

    0.513834

    0.197628

    0.0750988

    0.0592885

    0.0671937

    0.15415

    0.438735

    0.628458

    0.29249

    0.102767

    0.055336

    0.055336

    0.102767

    0.296443

    0.636364

    0.442688

    0.146245

    0.0671937

    0.0513834

    0.0711462

    0.177866

    0.513834

    0.608696

    0.237154

    0.0869565

    0.0513834

    0.055336

    0.110672

    0.332016

    0.675889

    0.395257

    0.126482

    0.055336

    0.0434783

    0.0671937

    0.189723

    0.549407

    0.600791

    0.217391

    0.0750988

    0.0434783

    0.0474308

    0.0988142

    0.335968

    0.699605

    0.399209

    0.12253

    0.0513834

    0.0395257

    0.0632411

    0.16996

    0.529644

    0.648221

    0.233202

    0.0711462

    0.0395257

    0.0434783

    0.083004

    0.27668

    0.695652

    0.474308

    0.134387

    0.0474308

    0.0355731

    0.0474308

    0.118577

    0.426877

    0.735178

    0.3083

    0.083004

    0.0395257

    0.0316206

    0.0513834

    0.16996

    0.588933

    0.660079

    0.201581

    0.0632411

    0.0395257

    0.027668

    0.0592885

    0.229249

    0.711462

    0.557312

    0.142292

    0.0434783

    0.027668

    0.027668

    0.0671937

    0.272727

    0.786561

    0.490119

    0.110672

    0.0395257

    0.027668

    0.0237154

    0.0632411

    0.268775

    0.826087

    0.509881

    0.110672

    0.0355731

    0.0237154

    0.0237154

    0.0434783

    0.177866

    0.750988

    0.699605

    0.150198

    0.0434783

    0.027668

    0.0197628

    0.0197628

    0.0474308

    0.272727

    1

    0.509881

    0.0869565

    0.027668

    0.0197628

    0.0197628

    0.0118577

    0.00790514

    0.00395257

    0.0237154

    0.0711462

    0.0434783

    0.0316206

    0.0434783

    0.0711462

    0.114625

    0.158103

    0.217391

    0.26087

    0.268775

    0.225296

    0.181818

    0.173913

    0.193676

    0.233202

    0.268775

    0.256917

    0.217391

    0.181818

    0.177866

    0.201581

    0.249012

    0.27668

    0.256917

    0.217391

    0.177866

    0.177866

    0.205534

    0.256917

    0.280632

    0.252964

    0.205534

    0.181818

    0.177866

    0.209486

    0.26087

    0.284585

    0.249012

    0.205534

    0.173913

    0.181818

    0.217391

    0.268775

    0.288538

    0.249012

    0.197628

    0.16996

    0.177866

    0.221344

    0.27668

    0.284585

    0.245059

    0.189723

    0.166008

    0.177866

    0.229249

    0.284585

    0.29249

    0.241107

    0.181818

    0.166008

    0.181818

    0.233202

    0.296443

    0.296443

    0.233202

    0.181818

    0.162055

    0.181818

    0.245059

    0.304348

    0.296443

    0.229249

    0.177866

    0.158103

    0.185771

    0.256917

    0.316206

    0.296443

    0.221344

    0.16996

    0.158103

    0.193676

    0.264822

    0.324111

    0.296443

    0.213439

    0.162055

    0.158103

    0.197628

    0.27668

    0.332016

    0.296443

    0.213439

    0.158103

    0.158103

    0.205534

    0.284585

    0.339921

    0.29249

    0.205534

    0.15415

    0.158103

    0.209486

    0.300395

    0.347826

    0.288538

    0.197628

    0.15415

    0.15415

    0.213439

    0.312253

    0.355731

    0.284585

    0.193676

    0.146245

    0.158103

    0.217391

    0.320158

    0.363636

    0.27668

    0.185771

    0.142292

    0.158103

    0.221344

    0.332016

    0.367589

    0.268775

    0.177866

    0.134387

    0.150198

    0.225296

    0.343874

    0.375494

    0.268775

    0.166008

    0.134387

    0.150198

    0.225296

    0.347826

    0.375494

    0.26087

    0.162055

    0.130435

    0.142292

    0.225296

    0.355731

    0.383399

    0.26087

    0.158103

    0.12253

    0.142292

    0.225296

    0.367589

    0.387352

    0.256917

    0.15415

    0.114625

    0.134387

    0.225296

    0.375494

    0.391304

    0.249012

    0.146245

    0.114625

    0.134387

    0.221344

    0.379447

    0.399209

    0.249012

    0.142292

    0.106719

    0.130435

    0.225296

    0.387352

    0.411067

    0.249012

    0.134387

    0.106719

    0.12253

    0.217391

    0.387352

    0.422925

    0.252964

    0.134387

    0.102767

    0.118577

    0.213439

    0.387352

    0.434783

    0.26087

    0.13834

    0.0988142

    0.110672

    0.205534

    0.387352

    0.450593

    0.272727

    0.13834

    0.0988142

    0.110672

    0.193676

    0.379447

    0.466403

    0.284585

    0.13834

    0.0948617

    0.102767

    0.181818

    0.367589

    0.482213

    0.304348

    0.146245

    0.0988142

    0.0988142

    0.166008

    0.351779

    0.498024

    0.328063

    0.15415

    0.0948617

    0.0948617

    0.15415

    0.328063

    0.505929

    0.351779

    0.166008

    0.0948617

    0.0909091

    0.13834

    0.296443

    0.509881

    0.391304

    0.177866

    0.0988142

    0.0869565

    0.126482

    0.26087

    0.501976

    0.434783

    0.201581

    0.102767

    0.083004

    0.110672

    0.233202

    0.478261

    0.478261

    0.229249

    0.110672

    0.0790514

    0.0948617

    0.197628

    0.438735

    0.517787

    0.26087

    0.114625

    0.0750988

    0.0869565

    0.166008

    0.391304

    0.545455

    0.312253

    0.126482

    0.0750988

    0.0750988

    0.134387

    0.332016

    0.561265

    0.367589

    0.146245

    0.0790514

    0.0671937

    0.110672

    0.272727

    0.545455

    0.442688

    0.181818

    0.083004

    0.0671937

    0.0909091

    0.209486

    0.494071

    0.517787

    0.229249

    0.0948617

    0.0632411

    0.0750988

    0.158103

    0.41502

    0.573123

    0.29249

    0.114625

    0.0632411

    0.0671937

    0.118577

    0.324111

    0.592885

    0.383399

    0.146245

    0.0671937

    0.0592885

    0.0948617

    0.237154

    0.557312

    0.494071

    0.193676

    0.083004

    0.0592885

    0.0750988

    0.166008

    0.458498

    0.592885

    0.272727

    0.0988142

    0.055336

    0.0632411

    0.12253

    0.339921

    0.624506

    0.383399

    0.13834

    0.0671937

    0.0592885

    0.0869565

    0.233202

    0.56917

    0.525692

    0.197628

    0.083004

    0.0513834

    0.0671937

    0.150198

    0.43083

    0.632411

    0.296443

    0.106719

    0.0592885

    0.055336

    0.0988142

    0.288538

    0.636364

    0.458498

    0.158103

    0.0711462

    0.055336

    0.0711462

    0.173913

    0.505929

    0.624506

    0.249012

    0.0869565

    0.0513834

    0.055336

    0.106719

    0.320158

    0.671937

    0.418972

    0.134387

    0.0632411

    0.0474308

    0.0711462

    0.177866

    0.529644

    0.628458

    0.237154

    0.083004

    0.0513834

    0.0474308

    0.0988142

    0.312253

    0.695652

    0.434783

    0.134387

    0.0592885

    0.0434783

    0.055336

    0.150198

    0.498024

    0.675889

    0.256917

    0.0790514

    0.0434783

    0.0395257

    0.0750988

    0.245059

    0.675889

    0.521739

    0.146245

    0.0513834

    0.0355731

    0.0434783

    0.106719

    0.379447

    0.750988

    0.355731

    0.0988142

    0.0395257

    0.0355731

    0.0513834

    0.146245

    0.533597

    0.719368

    0.241107

    0.0711462

    0.0355731

    0.0316206

    0.0513834

    0.189723

    0.652174

    0.636364

    0.173913

    0.055336

    0.027668

    0.027668

    0.055336

    0.213439

    0.731225

    0.592885

    0.146245

    0.0434783

    0.0237154

    0.027668

    0.0513834

    0.197628

    0.73913

    0.644269

    0.150198

    0.0474308

    0.0237154

    0.0237154

    0.0355731

    0.114625

    0.565217

    0.881423

    0.233202

    0.0513834

    0.027668

    0.0197628

    0.0197628

    0.0237154

    0.114625

    0.687747

    0.905138

    0.181818

    0.0395257

    0.0237154

    0.0158103

    0.0118577

    0.00790514

    0.0158103

    0.0948617

    0.458498

    0.509881

    0.256917

    0.130435

    0.102767

    0.142292

    0.237154

    0.371542

    0.359684

    0.225296

    0.13834

    0.114625

    0.15415

    0.249012

    0.379447

    0.355731

    0.221344

    0.134387

    0.114625

    0.15415

    0.252964

    0.383399

    0.355731

    0.213439

    0.130435

    0.118577

    0.150198

    0.26087

    0.395257

    0.359684

    0.217391

    0.130435

    0.110672

    0.146245

    0.256917

    0.403162

    0.363636

    0.209486

    0.12253

    0.106719

    0.142292

    0.256917

    0.407115

    0.367589

    0.209486

    0.118577

    0.102767

    0.13834

    0.252964

    0.418972

    0.375494

    0.209486

    0.118577

    0.0988142

    0.134387

    0.249012

    0.418972

    0.387352

    0.209486

    0.114625

    0.0948617

    0.12253

    0.245059

    0.422925

    0.399209

    0.213439

    0.114625

    0.0869565

    0.114625

    0.229249

    0.418972

    0.418972

    0.225296

    0.114625

    0.0869565

    0.110672

    0.217391

    0.418972

    0.438735

    0.237154

    0.114625

    0.0790514

    0.102767

    0.205534

    0.407115

    0.462451

    0.249012

    0.12253

    0.083004

    0.0988142

    0.185771

    0.387352

    0.482213

    0.272727

    0.130435

    0.083004

    0.0909091

    0.166008

    0.367589

    0.501976

    0.3083

    0.134387

    0.0869565

    0.0869565

    0.150198

    0.339921

    0.517787

    0.343874

    0.146245

    0.083004

    0.0790514

    0.130435

    0.300395

    0.517787

    0.383399

    0.166008

    0.0869565

    0.0790514

    0.110672

    0.26087

    0.505929

    0.434783

    0.189723

    0.0869565

    0.0750988

    0.0948617

    0.221344

    0.478261

    0.486166

    0.225296

    0.0988142

    0.0671937

    0.083004

    0.177866

    0.426877

    0.533597

    0.264822

    0.110672

    0.0671937

    0.0750988

    0.146245

    0.363636

    0.565217

    0.324111

    0.126482

    0.0671937

    0.0632411

    0.118577

    0.29249

    0.561265

    0.407115

    0.15415

    0.0750988

    0.0592885

    0.0909091

    0.225296

    0.517787

    0.486166

    0.197628

    0.083004

    0.055336

    0.0711462

    0.166008

    0.44664

    0.561265

    0.256917

    0.0948617

    0.055336

    0.0632411

    0.126482

    0.347826

    0.600791

    0.351779

    0.12253

    0.0592885

    0.0513834

    0.0948617

    0.252964

    0.56917

    0.466403

    0.16996

    0.0671937

    0.0474308

    0.0671937

    0.16996

    0.474308

    0.56917

    0.245059

    0.0869565

    0.0513834

    0.055336

    0.114625

    0.343874

    0.624506

    0.355731

    0.118577

    0.055336

    0.0474308

    0.083004

    0.233202

    0.573123

    0.501976

    0.177866

    0.0711462

    0.0474308

    0.0592885

    0.146245

    0.438735

    0.632411

    0.284585

    0.0988142

    0.0474308

    0.0513834

    0.0948617

    0.284585

    0.640316

    0.44664

    0.146245

    0.0632411

    0.0474308

    0.0671937

    0.166008

    0.498024

    0.616601

    0.245059

    0.083004

    0.0474308

    0.0513834

    0.0988142

    0.312253

    0.667984

    0.422925

    0.134387

    0.055336

    0.0434783

    0.0632411

    0.166008

    0.517787

    0.640316

    0.241107

    0.0790514

    0.0434783

    0.0434783

    0.0869565

    0.288538

    0.683794

    0.458498

    0.130435

    0.0513834

    0.0355731

    0.0513834

    0.134387

    0.470356

    0.699605

    0.27668

    0.083004

    0.0395257

    0.0355731

    0.0632411

    0.217391

    0.648221

    0.565217

    0.166008

    0.0513834

    0.0316206

    0.0395257

    0.0869565

    0.332016

    0.758893

    0.407115

    0.102767

    0.0434783

    0.0316206

    0.0395257

    0.118577

    0.454545

    0.762846

    0.29249

    0.0750988

    0.0355731

    0.027668

    0.0434783

    0.13834

    0.55336

    0.735178

    0.225296

    0.0592885

    0.027668

    0.0197628

    0.0395257

    0.142292

    0.600791

    0.743083

    0.201581

    0.0474308

    0.0237154

    0.0197628

    0.0316206

    0.106719

    0.525692

    0.853755

    0.245059

    0.055336

    0.0237154

    0.0158103

    0.0197628

    0.0474308

    0.249012

    0.928854

    0.541502

    0.0909091

    0.0237154

    0.0158103

    0.00790514

    0.00790514

    0.0118577

    0.0671937

    0.490119

    0.988142

    0.268775

    0.055336

    0.027668

    0.0197628

    0.0316206

    0.106719

    0.442688

    0.747036

    0.300395

    0.083004

    0.0434783

    0.0395257

    0.0711462

    0.221344

    0.608696

    0.537549

    0.173913

    0.0592885

    0.0395257

    0.055336

    0.134387

    0.426877

    0.675889

    0.300395

    0.0909091

    0.0434783

    0.0434783

    0.0790514

    0.237154

    0.628458

    0.517787

    0.166008

    0.055336

    0.0395257

    0.0513834

    0.12253

    0.41502

    0.695652

    0.312253

    0.0909091

    0.0434783

    0.0355731

    0.0632411

    0.209486

    0.612648

    0.573123

    0.177866

    0.055336

    0.0355731

    0.0395257

    0.0948617

    0.343874

    0.731225

    0.391304

    0.102767

    0.0434783

    0.027668

    0.0474308

    0.13834

    0.501976

    0.703557

    0.249012

    0.0711462

    0.0355731

    0.0316206

    0.055336

    0.201581

    0.652174

    0.604743

    0.162055

    0.0474308

    0.027668

    0.027668

    0.0671937

    0.26087

    0.754941

    0.498024

    0.118577

    0.0434783

    0.0237154

    0.027668

    0.0711462

    0.296443

    0.814229

    0.450593

    0.102767

    0.0316206

    0.0237154

    0.0237154

    0.055336

    0.26087

    0.837945

    0.505929

    0.102767

    0.027668

    0.0158103

    0.0158103

    0.027668

    0.13834

    0.687747

    0.778656

    0.16996

    0.0355731

    0.0197628

    0.0118577

    0.00790514

    0.0197628

    0.12253

    0.735178

    0.865613

    0.158103

    0.027668

    0.0158103

    0.0118577

    0.00395257

    0.00395257

    0.0158103

    0.146245

    0.565217

    0.501976

    0.205534

    0.0988142

    0.083004

    0.118577

    0.245059

    0.41502

    0.375494

    0.201581

    0.110672

    0.0948617

    0.134387

    0.252964

    0.41502

    0.371542

    0.201581

    0.114625

    0.0948617

    0.130435

    0.252964

    0.418972

    0.379447

    0.205534

    0.110672

    0.0909091

    0.12253

    0.245059

    0.426877

    0.391304

    0.205534

    0.110672

    0.0869565

    0.118577

    0.237154

    0.422925

    0.403162

    0.217391

    0.110672

    0.0869565

    0.110672

    0.225296

    0.418972

    0.422925

    0.225296

    0.225296

    t

    x(t)

    laserts

    00.332016

    10.549407

    20.367589

    30.15415

    40.0790514

    50.0750988

    60.118577

    70.27668

    80.537549

    90.43083

    100.181818

    110.083004

    120.0671937

    130.0988142

    140.225296

    150.501976

    160.501976

    170.221344

    180.0988142

    190.0671937

    200.0869565

    210.173913

    220.434783

    230.561265

    240.280632

    250.110672

    260.0711462

    270.0671937

    280.13834

    290.355731

    300.592885

    310.359684

    320.134387

    330.0711462

    340.0632411

    350.106719

    360.272727

    370.56917

    380.454545

    390.173913

    400.083004

    410.0632411

    420.0790514

    430.197628

    440.498024

    450.55336

    460.237154

    470.0948617

    480.0592885

    490.0671937

    500.13834

    510.387352

    520.616601

    530.332016

    540.118577

    550.0592885

    560.0592885

    570.0988142

    580.27668

    590.600791

    600.458498

    610.162055

    620.0711462

    630.0513834

    640.0750988

    650.177866

    660.498024

    670.58498

    680.241107

    690.0869565

    700.055336

    710.0592885

    720.12253

    730.355731

    740.648221

    750.367589

    760.12253

    770.055336

    780.0474308

    790.0790514

    800.221344

    810.581028

    820.533597

    830.189723

    840.0711462

    850.0513834

    860.055336

    870.130435

    880.411067

    890.660079

    900.316206

    910.102767

    920.0513834

    930.0474308

    940.083004

    950.249012

    960.624506

    970.517787

    980.16996

    990.0632411

    1000.0474308

    1010.055336

    1020.134387

    1030.43083

    1040.687747

    1050.3083

    1060.0948617

    1070.0474308

    1080.0434783

    1090.0711462

    1100.229249

    1110.636364

    1120.545455

    1130.16996

    1140.0632411

    1150.0395257

    1160.0474308

    1170.110672

    1180.379447

    1190.72332

    1200.359684

    1210.102767

    1220.0474308

    1230.0395257

    1240.0592885

    1250.173913

    1260.565217

    1270.652174

    1280.221344

    1290.0671937

    1300.0355731

    1310.0395257

    1320.0750988

    1330.26087

    1340.715415

    1350.513834

    1360.142292

    1370.0513834

    1380.0355731

    1390.0434783

    1400.0948617

    1410.359684

    1420.790514

    1430.387352

    1440.0988142

    1450.0395257

    1460.0316206

    1470.0434783

    1480.110672

    1490.442688

    1500.806324

    1510.316206

    1520.0750988

    1530.0355731

    1540.027668

    1550.0316206

    1560.110672

    1570.466403

    1580.841897

    1590.296443

    1600.0711462

    1610.0316206

    1620.0237154

    1630.027668

    1640.0750988

    1650.367589

    1660.916996

    1670.383399

    1680.0790514

    1690.027668

    1700.0237154

    1710.0197628

    1720.027668

    1730.130435

    1740.687747

    1750.841897

    1760.173913

    1770.0355731

    1780.0197628

    1790.0118577

    1800.00790514

    1810.00395257

    1820.00790514

    1830.0671937

    1840.407115

    1850.486166

    1860.209486

    1870.110672

    1880.102767

    1890.15415

    1900.272727

    1910.379447

    1920.304348

    1930.185771

    1940.126482

    1950.12253

    1960.177866

    1970.288538

    1980.367589

    1990.29249

    2000.181818

    2010.126482

    2020.130435

    2030.185771

    2040.300395

    2050.371542

    2060.288538

    2070.177866

    2080.126482

    2090.126482

    2100.185771

    2110.312253

    2120.383399

    2130.29249

    2140.173913

    2150.118577

    2160.12253

    2170.185771

    2180.320158

    2190.391304

    2200.284585

    2210.166008

    2220.118577

    2230.12253

    2240.189723

    2250.328063

    2260.399209

    2270.280632

    2280.162055

    2290.110672

    2300.114625

    2310.185771

    2320.328063

    2330.411067

    2340.284585

    2350.162055

    2360.114625

    2370.114625

    2380.185771

    2390.335968

    2400.422925

    2410.29249

    2420.15415

    2430.106719

    2440.110672

    2450.177866

    2460.335968

    2470.426877

    2480.29249

    2490.15415

    2500.102767

    2510.110672

    2520.177866

    2530.339921

    2540.442688

    2550.304348

    2560.15415

    2570.102767

    2580.102767

    2590.16996

    2600.332016

    2610.454545

    2620.316206

    2630.158103

    2640.0948617

    2650.0948617

    2660.162055

    2670.324111

    2680.462451

    2690.328063

    2700.158103

    2710.0948617

    2720.0909091

    2730.146245

    2740.3083

    2750.470356

    2760.347826

    2770.162055

    2780.0948617

    2790.0869565

    2800.134387

    2810.29249

    2820.478261

    2830.371542

    2840.173913

    2850.0948617

    2860.083004

    2870.130435

    2880.27668

    2890.478261

    2900.395257

    2910.189723

    2920.0988142

    2930.0790514

    2940.114625

    2950.245059

    2960.470356

    2970.426877

    2980.201581

    2990.0988142

    3000.0750988

    3010.102767

    3020.217391

    3030.454545

    3040.466403

    3050.225296

    3060.102767

    3070.0711462

    3080.0909091

    3090.185771

    3100.422925

    3110.498024

    3120.26087

    3130.114625

    3140.0711462

    3150.083004

    3160.162055

    3170.379447

    3180.525692

    3190.296443

    3200.126482

    3210.0790514

    3220.0790514

    3230.134387

    3240.332016

    3250.541502

    3260.351779

    3270.142292

    3280.0750988

    3290.0671937

    3300.110672

    3310.280632

    3320.533597

    3330.41502

    3340.166008

    3350.083004

    3360.0671937

    3370.0948617

    3380.225296

    3390.501976

    3400.486166

    3410.209486

    3420.0869565

    3430.0632411

    3440.0790514

    3450.177866

    3460.442688

    3470.545455

    3480.26087

    3490.102767

    3500.0632411

    3510.0671937

    3520.134387

    3530.359684

    3540.58498

    3550.339921

    3560.126482

    3570.0671937

    3580.0632411

    3590.102767

    3600.27668

    3610.573123

    3620.434783

    3630.162055

    3640.0711462

    3650.055336

    3660.083004

    3670.201581

    3680.509881

    3690.533597

    3700.221344

    3710.0869565

    3720.055336

    3730.0671937

    3740.142292

    3750.403162

    3760.608696

    3770.3083

    3780.110672

    3790.0592885

    3800.055336

    3810.102767

    3820.288538

    3830.608696

    3840.434783

    3850.150198

    3860.0632411

    3870.0513834

    3880.0750988

    3890.193676

    3900.513834

    3910.565217

    3920.225296

    3930.0790514

    3940.0513834

    3950.0592885

    3960.118577

    3970.371542

    3980.640316

    3990.343874

    4000.110672

    4010.055336

    4020.0474308

    4030.0869565

    4040.237154

    4050.596838

    4060.505929

    4070.173913

    4080.0671937

    4090.0434783

    4100.0592885

    4110.13834

    4120.438735

    4130.644269

    4140.288538

    4150.0909091

    4160.0474308

    4170.0434783

    4180.0869565

    4190.26087

    4200.640316

    4210.478261

    4220.150198

    4230.0592885

    4240.0434783

    4250.055336

    4260.142292

    4270.458498

    4280.664032

    4290.272727

    4300.0869565

    4310.0434783

    4320.0395257

    4330.0790514

    4340.249012

    4350.652174

    4360.501976

    4370.150198

    4380.055336

    4390.0395257

    4400.0474308

    4410.12253

    4420.41502

    4430.711462

    4440.312253

    4450.0869565

    4460.0395257

    4470.0355731

    4480.0592885

    4490.193676

    4500.608696

    4510.604743

    4520.185771

    4530.0592885

    4540.0355731

    4550.0355731

    4560.083004

    4570.296443

    4580.73913

    4590.44664

    4600.118577

    4610.0434783

    4620.027668

    4630.0395257

    4640.110672

    4650.41502

    4660.770751

    4670.316206

    4680.083004

    4690.0316206

    4700.027668

    4710.0395257

    4720.134387

    4730.521739

    4740.750988

    4750.245059

    4760.0632411

    4770.0316206

    4780.0237154

    4790.0434783

    4800.13834

    4810.577075

    4820.762846

    4830.221344

    4840.055336

    4850.027668

    4860.0237154

    4870.0316206

    4880.106719

    4890.513834

    4900.86166

    4910.256917

    4920.0513834

    4930.0237154

    4940.0158103

    4950.0197628

    4960.0474308

    4970.252964

    4980.928854

    4990.533597

    5000.0909091

    5010.027668

    5020.0158103

    5030.0118577

    5040.00790514

    5050.0118577

    5060.0909091

    5070.644269

    5080.913043

    5090.193676

    5100.0395257

    5110.0197628

    5120.0197628

    5130.0197628

    5140.0632411

    5150.3083

    5160.786561

    5170.422925

    5180.106719

    5190.0395257

    5200.0316206

    5210.0474308

    5220.142292

    5230.498024

    5240.660079

    5250.241107

    5260.0711462

    5270.0355731

    5280.0355731

    5290.083004

    5300.284585

    5310.675889

    5320.442688

    5330.126482

    5340.0474308

    5350.0355731

    5360.0474308

    5370.13834

    5380.474308

    5390.671937

    5400.256917

    5410.0750988

    5420.0355731

    5430.0355731

    5440.0711462

    5450.245059

    5460.660079

    5470.509881

    5480.146245

    5490.0434783

    5500.027668

    5510.0395257

    5520.102767

    5530.387352

    5540.735178

    5550.339921

    5560.0909091

    5570.0355731

    5580.0316206

    5590.0474308

    5600.15415

    5610.549407

    5620.687747

    5630.217391

    5640.0592885

    5650.0316206

    5660.0316206

    5670.055336

    5680.213439

    5690.683794

    5700.581028

    5710.15415

    5720.0474308

    5730.0237154

    5740.027668

    5750.0632411

    5760.256917

    5770.766798

    5780.505929

    5790.118577

    5800.0355731

    5810.0237154

    5820.0197628

    5830.0592885

    5840.252964

    5850.810277

    5860.509881

    5870.110672

    5880.0316206

    5890.0197628

    5900.0158103

    5910.0395257

    5920.181818

    5930.754941

    5940.671937

    5950.146245

    5960.0355731

    5970.0197628

    5980.0158103

    5990.0158103

    6000.055336

    6010.332016

    6021

    6030.41502

    6040.0671937

    6050.0237154

    6060.0118577

    6070.00790514

    6080.00395257

    6090

    6100

    6110.0197628

    6120.083004

    6130.0237154

    6140.0158103

    6150.0237154

    6160.055336

    6170.12253

    6180.217391

    6190.249012

    6200.213439

    6210.173913

    6220.173913

    6230.205534

    6240.245059

    6250.252964

    6260.225296

    6270.185771

    6280.173913

    6290.181818

    6300.221344

    6310.256917

    6320.256917

    6330.229249

    6340.189723

    6350.177866

    6360.193676

    6370.229249

    6380.264822

    6390.26087

    6400.221344

    6410.189723

    6420.173913

    6430.197628

    6440.233202

    6450.272727

    6460.26087

    6470.221344

    6480.181818

    6490.173913

    6500.201581

    6510.245059

    6520.27668

    6530.26087

    6540.213439

    6550.177866

    6560.16996

    6570.201581

    6580.249012

    6590.280632

    6600.256917

    6610.205534

    6620.173913

    6630.173913

    6640.209486

    6650.256917

    6660.284585

    6670.252964

    6680.205534

    6690.166008

    6700.173913

    6710.209486

    6720.268775

    6730.29249

    6740.252964

    6750.193676

    6760.16996

    6770.173913

    6780.221344

    6790.280632

    6800.296443

    6810.249012

    6820.197628

    6830.166008

    6840.173913

    6850.225296

    6860.288538

    6870.300395

    6880.245059

    6890.185771

    6900.162055

    6910.177866

    6920.233202

    6930.300395

    6940.304348

    6950.241107

    6960.177866

    6970.162055

    6980.177866

    6990.241107

    7000.3083

    7010.304348

    7020.233202

    7030.173913

    7040.158103

    7050.181818

    7060.252964

    7070.324111

    7080.3083

    7090.229249

    7100.173913

    7110.158103

    7120.189723

    7130.26087

    7140.332016

    7150.3083

    7160.225296

    7170.162055

    7180.15415

    7190.189723

    7200.272727

    7210.339921

    7220.304348

    7230.213439

    7240.15415

    7250.15415

    7260.193676

    7270.280632

    7280.351779

    7290.300395

    7300.209486

    7310.15415

    7320.150198

    7330.197628

    7340.288538

    7350.363636

    7360.300395

    7370.205534

    7380.146245

    7390.150198

    7400.197628

    7410.304348

    7420.367589

    7430.29249

    7440.189723

    7450.13834

    7460.142292

    7470.197628

    7480.3083

    7490.375494

    7500.29249

    7510.189723

    7520.134387

    7530.13834

    7540.205534

    7550.320158

    7560.379447

    7570.284585

    7580.177866

    7590.126482

    7600.13834

    7610.201581

    7620.328063

    7630.387352

    7640.284585

    7650.16996

    7660.126482

    7670.130435

    7680.205534

    7690.335968

    7700.399209

    7710.27668

    7720.162055

    7730.12253

    7740.130435

    7750.201581

    7760.339921

    7770.399209

    7780.280632

    7790.162055

    7800.118577

    7810.12253

    7820.201581

    7830.351779

    7840.407115

    7850.27668

    7860.15415

    7870.114625

    7880.12253

    7890.205534

    7900.351779

    7910.418972

    7920.27668

    7930.15415

    7940.110672

    7950.118577

    7960.193676

    7970.359684

    7980.43083

    7990.284585

    8000.15415

    8010.106719

    8020.114625

    8030.193676

    8040.359684

    8050.438735

    8060.288538

    8070.150198

    8080.106719

    8090.110672

    8100.185771

    8110.355731

    8120.458498

    8130.300395

    8140.15415

    8150.102767

    8160.106719

    8170.173913

    8180.347826

    8190.466403

    8200.316206

    8210.158103

    8220.106719

    8230.102767

    8240.16996

    8250.339921

    8260.482213

    8270.332016

    8280.162055

    8290.0988142

    8300.0988142

    8310.15415

    8320.320158

    8330.490119

    8340.351779

    8350.16996

    8360.0988142

    8370.0948617

    8380.142292

    8390.300395

    8400.494071

    8410.383399

    8420.177866

    8430.0988142

    8440.0869565

    8450.130435

    8460.27668

    8470.490119

    8480.411067

    8490.197628

    8500.102767

    8510.083004

    8520.118577

    8530.249012

    8540.478261

    8550.450593

    8560.213439

    8570.106719

    8580.0790514

    8590.102767

    8600.213439

    8610.454545

    8620.490119

    8630.245059

    8640.110672

    8650.0790514

    8660.0988142

    8670.185771

    8680.41502

    8690.517787

    8700.284585

    8710.118577

    8720.0750988

    8730.083004

    8740.15415

    8750.367589

    8760.545455

    8770.324111

    8780.134387

    8790.0750988

    8800.0750988

    8810.130435

    8820.3083

    8830.549407

    8840.383399

    8850.158103

    8860.0790514

    8870.0711462

    8880.106719

    8890.256917

    8900.525692

    8910.454545

    8920.185771

    8930.0869565

    8940.0632411

    8950.0909091

    8960.197628

    8970.474308

    8980.521739

    8990.237154

    9000.0948617

    9010.0632411

    9020.0711462

    9030.15415

    9040.403162

    9050.577075

    9060.304348

    9070.118577

    9080.0632411

    9090.0671937

    9100.118577

    9110.316206

    9120.588933

    9130.387352

    9140.146245

    9150.0671937

    9160.0592885

    9170.0909091

    9180.237154

    9190.545455

    9200.498024

    9210.197628

    9220.0790514

    9230.0592885

    9240.0750988

    9250.166008

    9260.450593

    9270.58498

    9280.272727

    9290.0988142

    9300.0632411

    9310.0632411

    9320.118577

    9330.339921

    9340.620553

    9350.379447

    9360.134387

    9370.0671937

    9380.055336

    9390.0909091

    9400.233202

    9410.56917

    9420.513834

    9430.197628

    9440.0750988

    9450.0592885

    9460.0671937

    9470.15415

    9480.438735

    9490.628458

    9500.29249

    9510.102767

    9520.055336

    9530.055336

    9540.102767

    9550.296443

    9560.636364

    9570.442688

    9580.146245

    9590.0671937

    9600.0513834

    9610.0711462

    9620.177866

    9630.513834

    9640.608696

    9650.237154

    9660.0869565

    9670.0513834

    9680.055336

    9690.110672

    9700.332016

    9710.675889

    9720.395257

    9730.126482

    9740.055336

    9750.0434783

    9760.0671937

    9770.189723

    9780.549407

    9790.600791

    9800.217391

    9810.0750988

    9820.0434783

    9830.0474308

    9840.0988142

    9850.335968

    9860.699605

    9870.399209

    9880.12253

    9890.0513834

    9900.0395257

    9910.0632411

    9920.16996

    9930.529644

    9940.648221

    9950.233202

    9960.0711462

    9970.0395257

    9980.0434783

    9990.083004

    10000.27668

    10010.695652

    10020.474308

    10030.134387

    10040.0474308

    10050.0355731

    10060.0474308

    10070.118577

    10080.426877

    10090.735178

    10100.3083

    10110.083004

    10120.0395257

    10130.0316206

    10140.0513834

    10150.16996

    10160.588933

    10170.660079

    10180.201581

    10190.0632411

    10200.0395257

    10210.027668

    10220.0592885

    10230.229249

    10240.711462

    10250.557312

    10260.142292

    10270.0434783

    10280.027668

    10290.027668

    10300.0671937

    10310.272727

    10320.786561

    10330.490119

    10340.110672

    10350.0395257

    10360.027668

    10370.0237154

    10380.0632411

    10390.268775

    10400.826087

    10410.509881

    10420.110672

    10430.0355731

    10440.0237154

    10450.0237154

    10460.0434783

    10470.177866

    10480.750988

    10490.699605

    10500.150198

    10510.0434783

    10520.027668

    10530.0197628

    10540.0197628

    10550.0474308

    10560.272727

    10571

    10580.509881

    10590.0869565

    10600.027668

    10610.0197628

    10620.0197628

    10630.0118577

    10640.00790514

    10650.00395257

    10660.0237154

    10670.0711462

    10680.0434783

    10690.0316206

    10700.0434783

    10710.0711462

    10720.114625

    10730.158103

    10740.217391

    10750.26087

    10760.268775

    10770.225296

    10780.181818

    10790.173913

    10800.193676

    10810.233202

    10820.268775

    10830.256917

    10840.217391

    10850.181818

    10860.177866

    10870.201581

    10880.249012

    10890.27668

    10900.256917

    10910.217391

    10920.177866

    10930.177866

    10940.205534

    10950.256917

    10960.280632

    10970.252964

    10980.205534

    10990.181818

    11000.177866

    11010.209486

    11020.26087

    11030.284585

    11040.249012

    11050.205534

    11060.173913

    11070.181818

    11080.217391

    11090.268775

    11100.288538

    11110.249012

    11120.197628

    11130.16996

    11140.177866

    11150.221344

    11160.27668

    11170.284585

    11180.245059

    11190.189723

    11200.166008

    11210.177866

    11220.229249

    11230.284585

    11240.29249

    11250.241107

    11260.181818

    11270.166008

    11280.181818

    11290.233202

    11300.296443

    11310.296443

    11320.233202

    11330.181818

    11340.162055

    11350.181818

    11360.245059

    11370.304348

    11380.296443

    11390.229249

    11400.177866

    11410.158103

    11420.185771

    11430.256917

    11440.316206

    11450.296443

    11460.221344

    11470.16996

    11480.158103

    11490.193676

    11500.264822

    11510.324111

    11520.296443

    11530.213439

    11540.162055

    11550.158103

    11560.197628

    11570.27668

    11580.332016

    11590.296443

    11600.213439

    11610.158103

    11620.158103

    11630.205534

    11640.284585

    11650.339921

    11660.29249

    11670.205534

    11680.15415

    11690.158103

    11700.209486

    11710.300395

    11720.347826

    11730.288538

    11740.197628

    11750.15415

    11760.15415

    11770.213439

    11780.312253

    11790.355731

    11800.284585

    11810.193676

    11820.146245

    11830.158103

    11840.217391

    11850.320158

    11860.363636

    11870.27668

    11880.185771

    11890.142292

    11900.158103

    11910.221344

    11920.332016

    11930.367589

    11940.268775

    11950.177866

    11960.134387

    11970.150198

    11980.225296

    11990.343874

    12000.375494

    12010.268775

    12020.166008

    12030.134387

    12040.150198

    12050.225296

    12060.347826

    12070.375494

    12080.26087

    12090.162055

    12100.130435

    12110.142292

    12120.225296

    12130.355731

    12140.383399

    12150.26087

    12160.158103

    12170.12253

    12180.142292

    12190.225296

    12200.367589

    12210.387352

    12220.256917

    12230.15415

    12240.114625

    12250.134387

    12260.225296

    12270.375494

    12280.391304

    12290.249012

    12300.146245

    12310.114625

    12320.134387

    12330.221344

    12340.379447

    12350.399209

    12360.249012

    12370.142292

    12380.106719

    12390.130435

    12400.225296

    12410.387352

    12420.411067

    12430.249012

    12440.134387

    12450.106719

    12460.12253

    12470.217391

    12480.387352

    12490.422925

    12500.252964

    12510.134387

    12520.102767

    12530.118577

    12540.213439

    12550.387352

    12560.434783

    12570.26087

    12580.13834

    12590.0988142

    12600.110672

    12610.205534

    12620.387352

    12630.450593

    12640.272727

    12650.13834

    12660.0988142

    12670.110672

    12680.193676

    12690.379447

    12700.466403

    12710.284585

    12720.13834

    12730.0948617

    12740.102767

    12750.181818

    12760.367589

    12770.482213

    12780.304348

    12790.146245

    12800.0988142

    12810.0988142

    12820.166008

    12830.351779

    12840.498024

    12850.328063

    12860.15415

    12870.0948617

    12880.0948617

    12890.15415

    12900.328063

    12910.505929

    12920.351779

    12930.166008

    12940.0948617

    12950.0909091

    12960.13834

    12970.296443

    12980.509881

    12990.391304

    13000.177866

    13010.0988142

    13020.0869565

    13030.126482

    13040.26087

    13050.501976

    13060.434783

    13070.201581

    13080.102767

    13090.083004

    13100.110672

    13110.233202

    13120.478261

    13130.478261

    13140.229249

    13150.110672

    13160.0790514

    13170.0948617

    13180.197628

    13190.438735

    13200.517787

    13210.26087

    13220.114625

    13230.0750988

    13240.0869565

    13250.166008

    13260.391304

    13270.545455

    13280.312253

    13290.126482

    13300.0750988

    13310.0750988

    13320.134387

    13330.332016

    13340.561265

    13350.367589

    13360.146245

    13370.0790514

    13380.0671937

    13390.110672

    13400.272727

    13410.545455

    13420.442688

    13430.181818

    13440.083004

    13450.0671937

    13460.0909091

    13470.209486

    13480.494071

    13490.517787

    13500.229249

    13510.0948617

    13520.0632411

    13530.0750988

    13540.158103

    13550.41502

    13560.573123

    13570.29249

    13580.114625

    13590.0632411

    13600.0671937

    13610.118577

    13620.324111

    13630.592885

    13640.383399

    13650.146245

    13660.0671937

    13670.0592885

    13680.0948617

    13690.237154

    13700.557312

    13710.494071

    13720.193676

    13730.083004

    13740.0592885

    13750.0750988

    13760.166008

    13770.458498

    13780.592885

    13790.272727

    13800.0988142

    13810.055336

    13820.0632411

    13830.12253

    13840.339921

    13850.624506

    13860.383399

    13870.13834

    13880.0671937

    13890.0592885

    13900.0869565

    13910.233202

    13920.56917

    13930.525692

    13940.197628

    13950.083004

    13960.0513834

    13970.0671937

    13980.150198

    13990.43083

    14000.632411

    14010.296443

    14020.106719

    14030.0592885

    14040.055336

    14050.0988142

    14060.288538

    14070.636364

    14080.458498

    14090.158103

    14100.0711462

    14110.055336

    14120.0711462

    14130.173913

    14140.505929

    14150.624506

    14160.249012

    14170.0869565

    14180.0513834

    14190.055336

    14200.106719

    14210.320158

    14220.671937

    14230.418972

    14240.134387

    14250.0632411

    14260.0474308

    14270.0711462

    14280.177866

    14290.529644

    14300.628458

    14310.237154

    14320.083004

    14330.0513834

    14340.0474308

    14350.0988142

    14360.312253

    14370.695652

    14380.434783

    14390.134387

    14400.0592885

    14410.0434783

    14420.055336

    14430.150198

    14440.498024

    14450.675889

    14460.256917

    14470.0790514

    14480.0434783

    14490.0395257

    14500.0750988

    14510.245059

    14520.675889

    14530.521739

    14540.146245

    14550.0513834

    14560.0355731

    14570.0434783

    14580.106719

    14590.379447

    14600.750988

    14610.355731

    14620.0988142

    14630.0395257

    14640.0355731

    14650.0513834

    14660.146245

    14670.533597

    14680.719368

    14690.241107

    14700.0711462

    14710.0355731

    14720.0316206

    14730.0513834

    14740.189723

    14750.652174

    14760.636364

    14770.173913

    14780.055336

    14790.027668

    14800.027668

    14810.055336

    14820.213439

    14830.731225

    14840.592885

    14850.146245

    14860.0434783

    14870.0237154

    14880.027668

    14890.0513834

    14900.197628

    14910.73913

    14920.644269

    14930.150198

    14940.0474308

    14950.0237154

    14960.0237154

    14970.0355731

    14980.114625

    14990.565217

    15000.881423

    15010.233202

    15020.0513834

    15030.027668

    15040.0197628

    15050.0197628

    15060.0237154

    15070.114625

    15080.687747

    15090.905138

    15100.181818

    15110.0395257

    15120.0237154

    15130.0158103

    15140.0118577

    15150.00790514

    15160.0158103

    15170.0948617

    15180.458498

    15190.509881

    15200.256917

    15210.130435

    15220.102767

    15230.142292

    15240.237154

    15250.371542

    15260.359684

    15270.225296

    15280.13834

    15290.114625

    15300.15415

    15310.249012

    15320.379447

    15330.355731

    15340.221344

    15350.134387

    15360.114625

    15370.15415

    15380.252964

    15390.383399

    15400.355731

    15410.213439

    15420.130435

    15430.118577

    15440.150198

    15450.26087

    15460.395257

    15470.359684

    15480.217391

    15490.130435

    15500.110672

    15510.146245

    15520.256917

    15530.403162

    15540.363636

    15550.209486

    15560.12253

    15570.106719

    15580.142292

    15590.256917

    15600.407115

    15610.367589

    15620.209486

    15630.118577

    15640.102767

    15650.13834

    15660.252964

    15670.418972

    15680.375494

    15690.209486

    15700.118577

    15710.0988142

    15720.134387

    15730.249012

    15740.418972

    15750.387352

    15760.209486

    15770.114625

    15780.0948617

    15790.12253

    15800.245059

    15810.422925

    15820.399209

    15830.213439

    15840.114625

    15850.0869565

    15860.114625

    15870.229249

    15880.418972

    15890.418972

    15900.225296

    15910.114625

    15920.0869565

    15930.110672

    15940.217391

    15950.418972

    15960.438735

    15970.237154

    15980.114625

    15990.0790514

    16000.102767

    16010.205534

    16020.407115

    16030.462451

    16040.249012

    16050.12253

    16060.083004

    16070.0988142

    16080.185771

    16090.387352

    16100.482213

    16110.272727

    16120.130435

    16130.083004

    16140.0909091

    16150.166008

    16160.367589

    16170.501976

    16180.3083

    16190.134387

    16200.0869565

    16210.0869565

    16220.150198

    16230.339921

    16240.517787

    16250.343874

    16260.146245

    16270.083004

    16280.0790514

    16290.130435

    16300.300395

    16310.517787

    16320.383399

    16330.166008

    16340.0869565

    16350.0790514

    16360.110672

    16370.26087

    16380.505929

    16390.434783

    16400.189723

    16410.0869565

    16420.0750988

    16430.0948617

    16440.221344

    16450.478261

    16460.486166

    16470.225296

    16480.0988142

    16490.0671937

    16500.083004

    16510.177866

    16520.426877

    16530.533597

    16540.264822

    16550.110672

    16560.0671937

    16570.0750988

    16580.146245

    16590.363636

    16600.565217

    16610.324111

    16620.126482

    16630.0671937

    16640.0632411

    16650.118577

    16660.29249

    16670.561265

    16680.407115

    16690.15415

    16700.0750988

    16710.0592885

    16720.0909091

    16730.225296

    16740.517787

    16750.486166

    16760.197628

    16770.083004

    16780.055336

    16790.0711462

    16800.166008

    16810.44664

    16820.561265

    16830.256917

    16840.0948617

    16850.055336

    16860.0632411

    16870.126482

    16880.347826

    16890.600791

    16900.351779

    16910.12253

    16920.0592885

    16930.0513834

    16940.0948617

    16950.252964

    16960.56917

    16970.466403

    16980.16996

    16990.0671937

    17000.0474308

    17010.0671937

    17020.16996

    17030.474308

    17040.56917

    17050.245059

    17060.0869565

    17070.0513834

    17080.055336

    17090.114625

    17100.343874

    17110.624506

    17120.355731

    17130.118577

    17140.055336

    17150.0474308

    17160.083004

    17170.233202

    17180.573123

    17190.501976

    17200.177866

    17210.0711462

    17220.0474308

    17230.0592885

    17240.146245

    17250.438735

    17260.632411

    17270.284585

    17280.0988142

    17290.0474308

    17300.0513834

    17310.0948617

    17320.284585

    17330.640316

    17340.44664

    17350.146245

    17360.0632411

    17370.0474308

    17380.0671937

    17390.166008

    17400.498024

    17410.616601

    17420.245059

    17430.083004

    17440.0474308

    17450.0513834

    17460.0988142

    17470.312253

    17480.667984

    17490.422925

    17500.134387

    17510.055336

    17520.0434783

    17530.0632411

    17540.166008

    17550.517787

    17560.640316

    17570.241107

    17580.0790514

    17590.0434783

    17600.0434783

    17610.0869565

    17620.288538

    17630.683794

    17640.458498

    17650.130435

    17660.0513834

    17670.0355731

    17680.0513834

    17690.134387

    17700.470356

    17710.699605

    17720.27668

    17730.083004

    17740.0395257

    17750.0355731

    17760.0632411

    17770.217391

    17780.648221

    17790.565217

    17800.166008

    17810.0513834

    17820.0316206

    17830.0395257

    17840.0869565

    17850.332016

    17860.758893

    17870.407115

    17880.102767

    17890.0434783

    17900.0316206

    17910.0395257

    17920.118577

    17930.454545

    17940.762846

    17950.29249

    17960.0750988

    17970.0355731

    17980.027668

    17990.0434783

    18000.13834

    18010.55336

    18020.735178

    18030.225296

    18040.0592885

    18050.027668

    18060.0197628

    18070.0395257

    18080.142292

    18090.600791

    18100.743083

    18110.201581

    18120.0474308

    18130.0237154

    18140.0197628

    18150.0316206

    18160.106719

    18170.525692

    18180.853755

    18190.245059

    18200.055336

    18210.0237154

    18220.0158103

    18230.0197628

    18240.0474308

    18250.249012

    18260.928854

    18270.541502

    18280.0909091

    18290.0237154

    18300.0158103

    18310.00790514

    18320.00790514

    18330.0118577

    18340.0671937

    18350.490119

    18360.988142

    18370.268775

    18380.055336

    18390.027668

    18400.0197628

    18410.0316206

    18420.106719

    18430.442688

    18440.747036

    18450.300395

    18460.083004

    18470.0434783

    18480.0395257

    18490.0711462

    18500.221344

    18510.608696

    18520.537549

    18530.173913

    18540.0592885

    18550.0395257

    18560.055336

    18570.134387

    18580.426877

    18590.675889

    18600.300395

    18610.0909091

    18620.0434783

    18630.0434783

    18640.0790514

    18650.237154

    18660.628458

    18670.517787

    18680.166008

    18690.055336

    18700.0395257

    18710.0513834

    18720.12253

    18730.41502

    18740.695652

    18750.312253

    18760.0909091

    18770.0434783

    18780.0355731

    18790.0632411

    18800.209486

    18810.612648

    18820.573123

    18830.177866

    18840.055336

    18850.0355731

    18860.0395257

    18870.0948617

    18880.343874

    18890.731225

    18900.391304

    18910.102767

    18920.0434783

    18930.027668

    18940.0474308

    18950.13834

    18960.501976

    18970.703557

    18980.249012

    18990.0711462

    19000.0355731

    19010.0316206

    19020.055336

    19030.201581

    19040.652174

    19050.604743

    19060.162055

    19070.0474308

    19080.027668

    19090.027668

    19100.0671937

    19110.26087

    19120.754941

    19130.498024

    19140.118577

    19150.0434783

    19160.0237154

    19170.027668

    19180.0711462

    19190.296443

    19200.814229

    19210.450593

    19220.102767

    19230.0316206

    19240.0237154

    19250.0237154

    19260.055336

    19270.26087

    19280.837945

    19290.505929

    19300.102767

    19310.027668

    19320.0158103

    19330.0158103

    19340.027668

    193