diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..92216caa --- /dev/null +++ b/LICENSE @@ -0,0 +1,30 @@ +BSD 3-Clause License + +Copyright (c) 2018, Lawrence Livermore National Security, LLC +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + diff --git a/NOTICE b/NOTICE new file mode 100644 index 00000000..3737d5a8 --- /dev/null +++ b/NOTICE @@ -0,0 +1,21 @@ +This work was produced under the auspices of the U.S. Department of +Energy by Lawrence Livermore National Laboratory under Contract +DE-AC52-07NA27344. + +This work was prepared as an account of work sponsored by an agency of +the United States Government. Neither the United States Government nor +Lawrence Livermore National Security, LLC, nor any of their employees +makes any warranty, expressed or implied, or assumes any legal liability +or responsibility for the accuracy, completeness, or usefulness of any +information, apparatus, product, or process disclosed, or represents that +its use would not infringe privately owned rights. + +Reference herein to any specific commercial product, process, or service +by trade name, trademark, manufacturer, or otherwise does not necessarily +constitute or imply its endorsement, recommendation, or favoring by the +United States Government or Lawrence Livermore National Security, LLC. + +The views and opinions of authors expressed herein do not necessarily +state or reflect those of the United States Government or Lawrence +Livermore National Security, LLC, and shall not be used for advertising +or product endorsement purposes. diff --git a/demo-web/README.md b/demo-web/README.md deleted file mode 100644 index 405cc334..00000000 --- a/demo-web/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# Web Demo - -- Run `python view.py` -- Find web page: http://127.0.0.1:5000/ diff --git a/demo-web/data/benchmark_dsr.csv b/demo-web/data/benchmark_dsr.csv deleted file mode 100644 index 774d35ec..00000000 --- a/demo-web/data/benchmark_dsr.csv +++ /dev/null @@ -1,2 +0,0 @@ -name,nmse,base_r,r,base_r_test,r_test,base_r_noiseless,r_noiseless,base_r_test_noiseless,r_test_noiseless,expression,traversal,t,seed -Nguyen-5,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,sin(x1**2)*cos(x1) - 1,"sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1",427.22272515296936,0 diff --git a/demo-web/data/demo.json b/demo-web/data/demo.json deleted file mode 100644 index f8bf2894..00000000 --- a/demo-web/data/demo.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "dataset": { - "file": "benchmarks.csv", - "name": "Nguyen-5", - "extra_input_var": 0, - "noise": null, - "extra_data_dir": null, - "function_lib": null - }, - "training": { - "logdir": "./log/demo_2020-02-26-150219", - "n_epochs": null, - "n_samples": 1000000, - "batch_size": 500, - "reward": "inv_nrmse", - "reward_params": [], - "complexity": "length", - "complexity_weight": 0.0, - "const_optimizer": "scipy", - "const_params": {}, - "alpha": 0.5, - "epsilon": 0.1, - "verbose": false, - "baseline": "R_e", - "b_jumpstart": false, - "num_cores": 1, - "save_summary": false, - "debug": 0, - "output_file": null, - "save_all_r": true, - "early_stopping": false, - "threshold": 1e-12 - }, - "controller": { - "cell": "lstm", - "num_layers": 1, - "num_units": 32, - "initializer": "zeros", - "embedding": false, - "embedding_size": 8, - "optimizer": "adam", - "learning_rate": 0.001, - "observe_action": false, - "observe_parent": true, - "observe_sibling": true, - "constrain_const": true, - "constrain_trig": true, - "constrain_inv": true, - "constrain_min_len": true, - "constrain_max_len": true, - "constrain_num_const": false, - "min_length": 4, - "max_length": 30, - "max_const": 3, - "entropy_weight": 0.1, - "ppo": false, - "ppo_clip_ratio": 0.2, - "ppo_n_iters": 10, - "ppo_n_mb": 4, - "pqt": false, - "pqt_k": 10, - "pqt_batch_size": 1, - "pqt_weight": 200.0, - "pqt_use_pg": false - }, - "gp": { - "population_size": 1000, - "generations": null, - "n_samples": 2000000, - "tournament_size": 2, - "metric": "nmse", - "const_range": [ - -1.0, - 1.0 - ], - "p_crossover": 0.95, - "p_mutate": 0.03, - "max_depth": null, - "max_len": 30, - "max_const": 3, - "seed": 0, - "early_stopping": true, - "threshold": 1e-12, - "verbose": false - } -} diff --git a/demo-web/data/demo_utils.py b/demo-web/data/demo_utils.py deleted file mode 100644 index 3f002ddf..00000000 --- a/demo-web/data/demo_utils.py +++ /dev/null @@ -1,73 +0,0 @@ -import json - -from dsr.run import get_dataset -from dsr.program import Program, from_tokens - -# Configure the program class from config file -def configure_program(config_filename): - with open(config_filename, "r") as f: - config = json.load(f) - - # Set the dataset - config_dataset = config["dataset"] - name = config_dataset["name"] - dataset = get_dataset(name, config_dataset) - Program.set_training_data(dataset) - - # Set the function set - Program.set_library(dataset.function_set, dataset.n_input_var) - - # Clear the cache - Program.clear_cache() - - # Compatible - Program.set_dsp = False - Program.set_execute() - - # Set the reward function - reward = config["training"]["reward"] - reward_params = config["training"]["reward_params"] - reward_params = reward_params if reward_params is not None else [] - Program.set_reward_function(reward, *reward_params) - - # Set the complexity penalty - complexity = config["training"]["complexity"] - complexity_weight = config["training"]["complexity_weight"] - Program.set_complexity_penalty(complexity, complexity_weight) - - # Set the constant optimizer - const_optimizer = config["training"]["const_optimizer"] - const_params = config["training"]["const_params"] - const_params = const_params if const_params is not None else {} - Program.set_const_optimizer(const_optimizer, **const_params) - - -# Return a Program object corresponding to the ith iteration -def make_program(traversal_text, i): - traversal = traversal_text[i].strip() - traversal = traversal.split(",") - traversal = Program.convert(traversal) - p = from_tokens(traversal, optimize=False) - return p - -# ##### USAGE ##### - -# # Get training data -# X = Program.X_train -# y = Program.y_train - -# # Configure the Program class -# configure_program("./data/demo.json") - -# # Get the best traversals at each iteration -# with open("./data/traversals.txt", "r") as f: -# traversal_text = f.readlines() - -# # Get information from each iteration's best Program -# for i in range(len(traversal_text)): -# p = make_program(traversal_text, i) -# r = p.r # Reward -# text = p.sympy_expr -# y_hat = p.execute(Program.X_train) # Predicted values on training data -# print("Best expression:", text) -# print("Best reward:", r) diff --git a/demo-web/data/dsr_Nguyen-5_0.csv b/demo-web/data/dsr_Nguyen-5_0.csv deleted file mode 100644 index e40c1020..00000000 --- a/demo-web/data/dsr_Nguyen-5_0.csv +++ /dev/null @@ -1,2001 +0,0 @@ -nmse_best,nmse_min,nmse_avg_full,nmse_avg_sub,base_r_best,base_r_max,base_r_avg_full,base_r_avg_sub,r_best,r_max,r_avg_full,r_avg_sub,l_avg_full,l_avg_sub,ewma -5.437965869903564453e+00,5.437965869903564453e+00,inf,6.502135620117187500e+02,2.774673998355865479e-01,2.774673998355865479e-01,9.885132312774658203e-02,1.906890720129013062e-01,2.774673998355865479e-01,2.774673998355865479e-01,9.885132312774658203e-02,1.906890720129013062e-01,2.828599929809570312e+01,2.854000091552734375e+01,-1.000000000000000000e+00 -4.968752861022949219e+00,4.968752861022949219e+00,inf,1.951384162902832031e+01,3.039329349994659424e-01,3.039329349994659424e-01,9.669717401266098022e-02,1.915621459484100342e-01,3.039329349994659424e-01,3.039329349994659424e-01,9.669717401266098022e-02,1.915621459484100342e-01,2.882399940490722656e+01,2.904000091552734375e+01,-1.000000000000000000e+00 -3.383744001388549805e+00,3.383744001388549805e+00,inf,1.756405830383300781e+01,3.039329349994659424e-01,3.006175756454467773e-01,9.357978403568267822e-02,1.920836716890335083e-01,3.039329349994659424e-01,3.006175756454467773e-01,9.357978403568267822e-02,1.920836716890335083e-01,2.845999908447265625e+01,2.815999984741210938e+01,-1.000000000000000000e+00 -2.475691795349121094e+00,2.475691795349121094e+00,inf,1.967945098876953125e+01,3.865642249584197998e-01,3.865642249584197998e-01,9.274975955486297607e-02,1.919116228818893433e-01,3.865642249584197998e-01,3.865642249584197998e-01,9.274975955486297607e-02,1.919116228818893433e-01,2.849399948120117188e+01,2.805999946594238281e+01,-1.000000000000000000e+00 -1.780885577201843262e+00,1.780885577201843262e+00,inf,1.955362129211425781e+01,4.801749289035797119e-01,4.801749289035797119e-01,9.460755437612533569e-02,2.018840909004211426e-01,4.801749289035797119e-01,4.801749289035797119e-01,9.460755437612533569e-02,2.018840909004211426e-01,2.820000076293945312e+01,2.818000030517578125e+01,-1.000000000000000000e+00 -1.780885577201843262e+00,3.107456207275390625e+00,inf,1.871602249145507812e+01,4.801749289035797119e-01,3.756233155727386475e-01,9.287393093109130859e-02,1.935510784387588501e-01,4.801749289035797119e-01,3.756233155727386475e-01,9.287393093109130859e-02,1.935510784387588501e-01,2.825600051879882812e+01,2.845999908447265625e+01,-1.000000000000000000e+00 -1.780885577201843262e+00,3.987545728683471680e+00,inf,1.865236091613769531e+01,4.801749289035797119e-01,3.088758289813995361e-01,9.589036554098129272e-02,1.951922625303268433e-01,4.801749289035797119e-01,3.088758289813995361e-01,9.589036554098129272e-02,1.951922625303268433e-01,2.870400047302246094e+01,2.920000076293945312e+01,-1.000000000000000000e+00 -1.780885577201843262e+00,3.392392396926879883e+00,inf,2.134400177001953125e+01,4.801749289035797119e-01,3.329488933086395264e-01,9.511557221412658691e-02,1.901899725198745728e-01,4.801749289035797119e-01,3.329488933086395264e-01,9.511557221412658691e-02,1.901899725198745728e-01,2.781999969482421875e+01,2.504000091552734375e+01,-1.000000000000000000e+00 -1.167842984199523926e+00,1.167842984199523926e+00,inf,1.855420494079589844e+01,4.801749289035797119e-01,4.692868888378143311e-01,9.660778939723968506e-02,2.026047259569168091e-01,4.801749289035797119e-01,4.692868888378143311e-01,9.660778939723968506e-02,2.026047259569168091e-01,2.804800033569335938e+01,2.542000007629394531e+01,-1.000000000000000000e+00 -1.167842984199523926e+00,1.321600556373596191e+00,inf,1.781581687927246094e+01,4.853486418724060059e-01,4.853486418724060059e-01,9.505741298198699951e-02,2.231905460357666016e-01,4.853486418724060059e-01,4.853486418724060059e-01,9.505741298198699951e-02,2.231905460357666016e-01,2.884600067138671875e+01,2.910000038146972656e+01,-1.000000000000000000e+00 -1.167842984199523926e+00,1.713890552520751953e+00,inf,1.928320312500000000e+01,4.853486418724060059e-01,4.253358840942382812e-01,9.761737287044525146e-02,1.911612451076507568e-01,4.853486418724060059e-01,4.253358840942382812e-01,9.761737287044525146e-02,1.911612451076507568e-01,2.858799934387207031e+01,2.878000068664550781e+01,-1.000000000000000000e+00 -1.167842984199523926e+00,7.818367004394531250e+00,inf,2.226748466491699219e+01,4.853486418724060059e-01,2.714705765247344971e-01,9.615722298622131348e-02,1.868029236793518066e-01,4.853486418724060059e-01,2.714705765247344971e-01,9.615722298622131348e-02,1.868029236793518066e-01,2.831599998474121094e+01,2.615999984741210938e+01,-1.000000000000000000e+00 -1.167842984199523926e+00,1.713890552520751953e+00,inf,2.048884963989257812e+01,4.853486418724060059e-01,4.253358840942382812e-01,9.296546131372451782e-02,2.017187625169754028e-01,4.853486418724060059e-01,4.253358840942382812e-01,9.296546131372451782e-02,2.017187625169754028e-01,2.825600051879882812e+01,2.712000083923339844e+01,-1.000000000000000000e+00 -1.167842984199523926e+00,2.745139598846435547e+00,inf,2.537047576904296875e+01,4.853486418724060059e-01,4.052761793136596680e-01,9.484747797250747681e-02,2.009321600198745728e-01,4.853486418724060059e-01,4.052761793136596680e-01,9.484747797250747681e-02,2.009321600198745728e-01,2.873399925231933594e+01,2.855999946594238281e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,4.533407092094421387e-01,inf,1.983871078491210938e+01,4.853486418724060059e-01,4.747943878173828125e-01,9.792142361402511597e-02,2.050479203462600708e-01,4.853486418724060059e-01,4.747943878173828125e-01,9.792142361402511597e-02,2.050479203462600708e-01,2.862599945068359375e+01,2.852000045776367188e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,3.188917875289916992e+00,inf,1.832250213623046875e+01,4.853486418724060059e-01,4.297178685665130615e-01,9.615657478570938110e-02,1.993311643600463867e-01,4.853486418724060059e-01,4.297178685665130615e-01,9.615657478570938110e-02,1.993311643600463867e-01,2.798399925231933594e+01,2.555999946594238281e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,7.113215446472167969e+00,inf,2.524577713012695312e+01,4.853486418724060059e-01,2.688450813293457031e-01,9.145408868789672852e-02,1.842797100543975830e-01,4.853486418724060059e-01,2.688450813293457031e-01,9.145408868789672852e-02,1.842797100543975830e-01,2.833200073242187500e+01,2.720000076293945312e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.598353505134582520e+00,inf,1.983255577087402344e+01,4.853486418724060059e-01,4.289895594120025635e-01,9.721945226192474365e-02,1.952627152204513550e-01,4.853486418724060059e-01,4.289895594120025635e-01,9.721945226192474365e-02,1.952627152204513550e-01,2.810400009155273438e+01,2.681999969482421875e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.944644212722778320e+00,inf,1.867173004150390625e+01,4.853486418724060059e-01,3.105726540088653564e-01,9.268850088119506836e-02,1.902700364589691162e-01,4.853486418724060059e-01,3.105726540088653564e-01,9.268850088119506836e-02,1.902700364589691162e-01,2.811000061035156250e+01,2.745999908447265625e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.507501363754272461e+00,inf,2.597214698791503906e+01,4.853486418724060059e-01,3.827203214168548584e-01,9.563987702131271362e-02,1.851692199707031250e-01,4.853486418724060059e-01,3.827203214168548584e-01,9.563987702131271362e-02,1.851692199707031250e-01,2.822200012207031250e+01,2.710000038146972656e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.057320499420166016e+01,inf,1.974662780761718750e+01,4.853486418724060059e-01,2.615292966365814209e-01,9.914658963680267334e-02,1.936646848917007446e-01,4.853486418724060059e-01,2.615292966365814209e-01,9.914658963680267334e-02,1.936646848917007446e-01,2.794400024414062500e+01,2.655999946594238281e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.746285200119018555e+00,inf,2.076119232177734375e+01,4.853486418724060059e-01,4.242511093616485596e-01,1.005000248551368713e-01,1.947163045406341553e-01,4.853486418724060059e-01,4.242511093616485596e-01,1.005000248551368713e-01,1.947163045406341553e-01,2.844199943542480469e+01,2.713999938964843750e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.359131574630737305e+00,inf,2.069308853149414062e+01,4.853486418724060059e-01,4.398701786994934082e-01,9.539014846086502075e-02,1.941707730293273926e-01,4.853486418724060059e-01,4.398701786994934082e-01,9.539014846086502075e-02,1.941707730293273926e-01,2.825799942016601562e+01,2.947999954223632812e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.211550354957580566e+00,inf,1.835649681091308594e+01,4.853486418724060059e-01,4.796487092971801758e-01,9.976559877395629883e-02,2.065721452236175537e-01,4.853486418724060059e-01,4.796487092971801758e-01,9.976559877395629883e-02,2.065721452236175537e-01,2.837000083923339844e+01,2.747999954223632812e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.746285200119018555e+00,inf,1.785291481018066406e+01,4.853486418724060059e-01,4.242511093616485596e-01,9.745649993419647217e-02,2.040684670209884644e-01,4.853486418724060059e-01,4.242511093616485596e-01,9.745649993419647217e-02,2.040684670209884644e-01,2.812400054931640625e+01,2.762000083923339844e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.181497573852539062e+00,inf,2.212072944641113281e+01,4.853486418724060059e-01,3.739700019359588623e-01,9.176825731992721558e-02,1.855707913637161255e-01,4.853486418724060059e-01,3.739700019359588623e-01,9.176825731992721558e-02,1.855707913637161255e-01,2.879400062561035156e+01,2.823999977111816406e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.810313701629638672e+00,inf,1.900067138671875000e+01,4.853486418724060059e-01,3.549642264842987061e-01,9.360457211732864380e-02,1.951802819967269897e-01,4.853486418724060059e-01,3.549642264842987061e-01,9.360457211732864380e-02,1.951802819967269897e-01,2.817600059509277344e+01,2.854000091552734375e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.494425773620605469e+00,inf,2.227151489257812500e+01,4.853486418724060059e-01,3.746419250965118408e-01,9.504041820764541626e-02,1.944978237152099609e-01,4.853486418724060059e-01,3.746419250965118408e-01,9.504041820764541626e-02,1.944978237152099609e-01,2.834399986267089844e+01,2.715999984741210938e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,3.392392396926879883e+00,inf,2.960436399964160000e+15,4.853486418724060059e-01,2.849002778530120850e-01,9.540016204118728638e-02,1.858158856630325317e-01,4.853486418724060059e-01,2.849002778530120850e-01,9.540016204118728638e-02,1.858158856630325317e-01,2.812000083923339844e+01,2.779999923706054688e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,8.010884284973144531e+00,inf,4.111093139648437500e+01,4.853486418724060059e-01,2.388171851634979248e-01,9.560253471136093140e-02,1.874924749135971069e-01,4.853486418724060059e-01,2.388171851634979248e-01,9.560253471136093140e-02,1.874924749135971069e-01,2.799200057983398438e+01,2.655999946594238281e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.713890552520751953e+00,inf,2.060247802734375000e+01,4.853486418724060059e-01,4.253358840942382812e-01,9.793627262115478516e-02,1.979049742221832275e-01,4.853486418724060059e-01,4.253358840942382812e-01,9.793627262115478516e-02,1.979049742221832275e-01,2.824600028991699219e+01,2.681999969482421875e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,8.651038169860839844e+00,inf,2.051455116271972656e+01,4.853486418724060059e-01,3.400546312332153320e-01,9.973916411399841309e-02,1.899433135986328125e-01,4.853486418724060059e-01,3.400546312332153320e-01,9.973916411399841309e-02,1.899433135986328125e-01,2.814999961853027344e+01,2.850000000000000000e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,3.553879499435424805e+00,inf,1.981827735900878906e+01,4.853486418724060059e-01,3.351409435272216797e-01,9.544667601585388184e-02,1.955743730068206787e-01,4.853486418724060059e-01,3.351409435272216797e-01,9.544667601585388184e-02,1.955743730068206787e-01,2.801799964904785156e+01,2.852000045776367188e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,5.221785545349121094e+00,inf,1.792427062988281250e+01,4.853486418724060059e-01,3.279189169406890869e-01,1.000210866332054138e-01,1.928811371326446533e-01,4.853486418724060059e-01,3.279189169406890869e-01,1.000210866332054138e-01,1.928811371326446533e-01,2.788999938964843750e+01,2.876000022888183594e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,3.403873205184936523e+00,inf,1.781039810180664062e+01,4.853486418724060059e-01,3.480424582958221436e-01,9.689956158399581909e-02,2.037958353757858276e-01,4.853486418724060059e-01,3.480424582958221436e-01,9.689956158399581909e-02,2.037958353757858276e-01,2.822800064086914062e+01,2.665999984741210938e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.746285200119018555e+00,inf,3.267377853393554688e+01,4.853486418724060059e-01,4.242511093616485596e-01,9.977712482213973999e-02,1.998557150363922119e-01,4.853486418724060059e-01,4.242511093616485596e-01,9.977712482213973999e-02,1.998557150363922119e-01,2.775399971008300781e+01,2.745999908447265625e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.625741243362426758e+00,inf,2.197446632385253906e+01,4.853486418724060059e-01,2.614228129386901855e-01,9.677023440599441528e-02,1.901984065771102905e-01,4.853486418724060059e-01,2.614228129386901855e-01,9.677023440599441528e-02,1.901984065771102905e-01,2.783799934387207031e+01,2.771999931335449219e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.077004432678222656e+00,inf,1.988732910156250000e+01,4.853486418724060059e-01,3.290318548679351807e-01,9.604538232088088989e-02,1.910978406667709351e-01,4.853486418724060059e-01,3.290318548679351807e-01,9.604538232088088989e-02,1.910978406667709351e-01,2.760799980163574219e+01,2.660000038146972656e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,3.363325297832489014e-01,inf,1.897052574157714844e+01,6.198371052742004395e-01,6.198371052742004395e-01,1.025697141885757446e-01,2.036658376455307007e-01,6.198371052742004395e-01,6.198371052742004395e-01,1.025697141885757446e-01,2.036658376455307007e-01,2.806599998474121094e+01,2.678000068664550781e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,1.713890552520751953e+00,inf,1.825157737731933594e+01,6.198371052742004395e-01,4.253358840942382812e-01,9.988773614168167114e-02,2.026730477809906006e-01,6.198371052742004395e-01,4.253358840942382812e-01,9.988773614168167114e-02,2.026730477809906006e-01,2.761599922180175781e+01,2.912000083923339844e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,8.430734276771545410e-01,inf,1.765147399902343750e+01,6.198371052742004395e-01,5.058616995811462402e-01,9.773265570402145386e-02,1.996772438287734985e-01,6.198371052742004395e-01,5.058616995811462402e-01,9.773265570402145386e-02,1.996772438287734985e-01,2.776799964904785156e+01,2.668000030517578125e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,2.406821489334106445e+00,inf,1.765997886657714844e+01,6.198371052742004395e-01,3.747829198837280273e-01,1.025339290499687195e-01,2.002486586570739746e-01,6.198371052742004395e-01,3.747829198837280273e-01,1.025339290499687195e-01,2.002486586570739746e-01,2.809000015258789062e+01,2.573999977111816406e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,8.739634156227111816e-01,inf,1.630972099304199219e+01,6.198371052742004395e-01,5.238019227981567383e-01,1.018727049231529236e-01,2.125722914934158325e-01,6.198371052742004395e-01,5.238019227981567383e-01,1.018727049231529236e-01,2.125722914934158325e-01,2.765999984741210938e+01,2.578000068664550781e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,5.095052242279052734e+00,inf,1.814076042175292969e+01,6.198371052742004395e-01,2.719019055366516113e-01,1.023445948958396912e-01,1.956531256437301636e-01,6.198371052742004395e-01,2.719019055366516113e-01,1.023445948958396912e-01,1.956531256437301636e-01,2.750799942016601562e+01,2.589999961853027344e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,7.596288204193115234e+00,inf,2.109077262878417969e+01,6.198371052742004395e-01,2.525178194046020508e-01,9.617511928081512451e-02,1.844105571508407593e-01,6.198371052742004395e-01,2.525178194046020508e-01,9.617511928081512451e-02,1.844105571508407593e-01,2.790800094604492188e+01,2.562000083923339844e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,1.734174847602844238e+00,inf,1.758298492431640625e+01,6.198371052742004395e-01,4.891902506351470947e-01,9.942612051963806152e-02,2.093921601772308350e-01,6.198371052742004395e-01,4.891902506351470947e-01,9.942612051963806152e-02,2.093921601772308350e-01,2.749600028991699219e+01,2.728000068664550781e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,4.625640392303466797e+00,inf,1.689844131469726562e+01,6.198371052742004395e-01,3.215894401073455811e-01,1.008301004767417908e-01,1.995029300451278687e-01,6.198371052742004395e-01,3.215894401073455811e-01,1.008301004767417908e-01,1.995029300451278687e-01,2.769599914550781250e+01,2.497999954223632812e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,2.679848194122314453e+00,inf,1.886118888854980469e+01,6.198371052742004395e-01,3.573918938636779785e-01,1.034455522894859314e-01,2.016143500804901123e-01,6.198371052742004395e-01,3.573918938636779785e-01,1.034455522894859314e-01,2.016143500804901123e-01,2.770800018310546875e+01,2.737999916076660156e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,1.882789850234985352e+00,inf,1.888211822509765625e+01,6.198371052742004395e-01,4.022723734378814697e-01,1.018368005752563477e-01,1.989491283893585205e-01,6.198371052742004395e-01,4.022723734378814697e-01,1.018368005752563477e-01,1.989491283893585205e-01,2.795599937438964844e+01,2.820000076293945312e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,1.983366608619689941e+00,inf,1.880984115600585938e+01,6.198371052742004395e-01,4.069225788116455078e-01,9.630201756954193115e-02,2.015722990036010742e-01,6.198371052742004395e-01,4.069225788116455078e-01,9.630201756954193115e-02,2.015722990036010742e-01,2.784600067138671875e+01,2.670000076293945312e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,4.401477575302124023e-01,inf,4.648515701293945312e+01,6.198371052742004395e-01,6.056842803955078125e-01,1.044986173510551453e-01,2.080968916416168213e-01,6.198371052742004395e-01,6.056842803955078125e-01,1.044986173510551453e-01,2.080968916416168213e-01,2.768799972534179688e+01,2.763999938964843750e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,8.430734276771545410e-01,inf,1.811052513122558594e+01,6.198371052742004395e-01,5.058616995811462402e-01,1.011413857340812683e-01,2.000074982643127441e-01,6.198371052742004395e-01,5.058616995811462402e-01,1.011413857340812683e-01,2.000074982643127441e-01,2.767600059509277344e+01,2.671999931335449219e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,2.330770969390869141e+00,inf,1.880671882629394531e+01,6.198371052742004395e-01,3.727165460586547852e-01,1.092154830694198608e-01,2.092859894037246704e-01,6.198371052742004395e-01,3.727165460586547852e-01,1.092154830694198608e-01,2.092859894037246704e-01,2.764200019836425781e+01,2.634000015258789062e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,4.910224914550781250e+00,inf,1.824818420410156250e+01,6.198371052742004395e-01,4.337353706359863281e-01,9.909923374652862549e-02,1.996700316667556763e-01,6.198371052742004395e-01,4.337353706359863281e-01,9.909923374652862549e-02,1.996700316667556763e-01,2.760799980163574219e+01,2.754000091552734375e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,2.082217693328857422e+00,inf,1.713555717468261719e+01,6.198371052742004395e-01,3.887439966201782227e-01,1.003862321376800537e-01,2.045878022909164429e-01,6.198371052742004395e-01,3.887439966201782227e-01,1.003862321376800537e-01,2.045878022909164429e-01,2.790999984741210938e+01,2.695999908447265625e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,2.070164203643798828e+00,inf,1.702656173706054688e+01,6.198371052742004395e-01,3.933732211589813232e-01,1.019850224256515503e-01,1.979293376207351685e-01,6.198371052742004395e-01,3.933732211589813232e-01,1.019850224256515503e-01,1.979293376207351685e-01,2.780400085449218750e+01,2.665999984741210938e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,1.279228210449218750e+00,inf,1.694745635986328125e+01,6.198371052742004395e-01,4.501110613346099854e-01,9.869788587093353271e-02,2.004274278879165649e-01,6.198371052742004395e-01,4.501110613346099854e-01,9.869788587093353271e-02,2.004274278879165649e-01,2.734600067138671875e+01,2.710000038146972656e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,5.713457107543945312e+00,inf,1.762658691406250000e+01,6.198371052742004395e-01,2.968746721744537354e-01,1.013293564319610596e-01,1.977076679468154907e-01,6.198371052742004395e-01,2.968746721744537354e-01,1.013293564319610596e-01,1.977076679468154907e-01,2.775399971008300781e+01,2.750000000000000000e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,2.109863013029098511e-01,inf,3.260732500000000000e+06,6.632862091064453125e-01,6.632862091064453125e-01,1.002604290843009949e-01,2.028544098138809204e-01,6.632862091064453125e-01,6.632862091064453125e-01,1.002604290843009949e-01,2.028544098138809204e-01,2.739599990844726562e+01,2.765999984741210938e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,6.572123527526855469e+00,inf,1.831256866455078125e+01,6.632862091064453125e-01,2.926878035068511963e-01,1.026336774230003357e-01,1.956080198287963867e-01,6.632862091064453125e-01,2.926878035068511963e-01,1.026336774230003357e-01,1.956080198287963867e-01,2.782200050354003906e+01,2.681999969482421875e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.193913698196411133e+00,inf,1.743574142456054688e+01,6.632862091064453125e-01,4.705976843833923340e-01,1.019158661365509033e-01,2.114520519971847534e-01,6.632862091064453125e-01,4.705976843833923340e-01,1.019158661365509033e-01,2.114520519971847534e-01,2.775799942016601562e+01,2.565999984741210938e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.461396455764770508e+00,inf,1.935078620910644531e+01,6.632862091064453125e-01,4.502761065959930420e-01,1.007078662514686584e-01,2.029098272323608398e-01,6.632862091064453125e-01,4.502761065959930420e-01,1.007078662514686584e-01,2.029098272323608398e-01,2.767399978637695312e+01,2.765999984741210938e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.861267924308776855e+00,inf,2.027614021301269531e+01,6.632862091064453125e-01,3.369401991367340088e-01,1.047141849994659424e-01,2.023514807224273682e-01,6.632862091064453125e-01,3.369401991367340088e-01,1.047141849994659424e-01,2.023514807224273682e-01,2.745599937438964844e+01,2.745999908447265625e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.746285200119018555e+00,inf,1.756708717346191406e+01,6.632862091064453125e-01,4.242511093616485596e-01,1.048329249024391174e-01,2.011554688215255737e-01,6.632862091064453125e-01,4.242511093616485596e-01,1.048329249024391174e-01,2.011554688215255737e-01,2.813599967956542969e+01,2.663999938964843750e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.746285200119018555e+00,inf,1.792835235595703125e+01,6.632862091064453125e-01,4.242511093616485596e-01,1.077287718653678894e-01,2.067084312438964844e-01,6.632862091064453125e-01,4.242511093616485596e-01,1.077287718653678894e-01,2.067084312438964844e-01,2.709399986267089844e+01,2.771999931335449219e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.744814157485961914e+00,inf,1.699356079101562500e+01,6.632862091064453125e-01,4.100625514984130859e-01,1.068609207868576050e-01,2.024245709180831909e-01,6.632862091064453125e-01,4.100625514984130859e-01,1.068609207868576050e-01,2.024245709180831909e-01,2.703199958801269531e+01,2.650000000000000000e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.542712807655334473e+00,inf,1.633948326110839844e+01,6.632862091064453125e-01,4.406892955303192139e-01,1.052601635456085205e-01,2.122879475355148315e-01,6.632862091064453125e-01,4.406892955303192139e-01,1.052601635456085205e-01,2.122879475355148315e-01,2.747599983215332031e+01,2.604000091552734375e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,2.196818351745605469e+00,inf,1.896723175048828125e+01,6.632862091064453125e-01,3.972429037094116211e-01,1.040296405553817749e-01,1.991242021322250366e-01,6.632862091064453125e-01,3.972429037094116211e-01,1.040296405553817749e-01,1.991242021322250366e-01,2.795199966430664062e+01,2.602000045776367188e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,3.554102420806884766e+00,inf,1.805445480346679688e+01,6.632862091064453125e-01,3.313176631927490234e-01,1.023025512695312500e-01,1.963012367486953735e-01,6.632862091064453125e-01,3.313176631927490234e-01,1.023025512695312500e-01,1.963012367486953735e-01,2.748999977111816406e+01,2.752000045776367188e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.382202386856079102e+00,inf,1.656822013854980469e+01,6.632862091064453125e-01,4.387197196483612061e-01,9.962188452482223511e-02,2.087762802839279175e-01,6.632862091064453125e-01,4.387197196483612061e-01,9.962188452482223511e-02,2.087762802839279175e-01,2.760000038146972656e+01,2.623999977111816406e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.713890552520751953e+00,inf,1.788484001159667969e+01,6.632862091064453125e-01,4.253358840942382812e-01,1.063779219985008240e-01,2.047175765037536621e-01,6.632862091064453125e-01,4.253358840942382812e-01,1.063779219985008240e-01,2.047175765037536621e-01,2.714599990844726562e+01,2.470000076293945312e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.210130095481872559e+00,inf,1.775731468200683594e+01,6.632862091064453125e-01,4.736998379230499268e-01,1.041538491845130920e-01,2.000714093446731567e-01,6.632862091064453125e-01,4.736998379230499268e-01,1.041538491845130920e-01,2.000714093446731567e-01,2.748200035095214844e+01,2.713999938964843750e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.968085527420043945e+00,inf,1.848305130004882812e+01,6.632862091064453125e-01,3.960843086242675781e-01,1.069116890430450439e-01,2.044126838445663452e-01,6.632862091064453125e-01,3.960843086242675781e-01,1.069116890430450439e-01,2.044126838445663452e-01,2.736199951171875000e+01,2.604000091552734375e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.449292540550231934e+00,inf,1.589038562774658203e+01,6.632862091064453125e-01,4.731266796588897705e-01,1.082250550389289856e-01,2.191535532474517822e-01,6.632862091064453125e-01,4.731266796588897705e-01,1.082250550389289856e-01,2.191535532474517822e-01,2.727799987792968750e+01,2.713999938964843750e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,9.519621133804321289e-01,inf,1.743103790283203125e+01,6.632862091064453125e-01,5.065553188323974609e-01,1.074075847864151001e-01,2.045461088418960571e-01,6.632862091064453125e-01,5.065553188323974609e-01,1.074075847864151001e-01,2.045461088418960571e-01,2.745199966430664062e+01,2.507999992370605469e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,3.312055587768554688e+00,inf,1.763658905029296875e+01,6.632862091064453125e-01,3.160212934017181396e-01,1.035864502191543579e-01,2.004782706499099731e-01,6.632862091064453125e-01,3.160212934017181396e-01,1.035864502191543579e-01,2.004782706499099731e-01,2.755800056457519531e+01,2.871999931335449219e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,2.952182054519653320e+00,inf,1.931125259399414062e+01,6.632862091064453125e-01,3.489108085632324219e-01,1.030859351158142090e-01,1.907964348793029785e-01,6.632862091064453125e-01,3.489108085632324219e-01,1.030859351158142090e-01,1.907964348793029785e-01,2.744199943542480469e+01,2.637999916076660156e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.239915847778320312e+00,inf,1.815251731872558594e+01,6.632862091064453125e-01,4.658646583557128906e-01,1.086248233914375305e-01,2.009639292955398560e-01,6.632862091064453125e-01,4.658646583557128906e-01,1.086248233914375305e-01,2.009639292955398560e-01,2.740600013732910156e+01,2.715999984741210938e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.193913698196411133e+00,inf,1.788297462463378906e+01,6.632862091064453125e-01,4.705976843833923340e-01,1.035495549440383911e-01,2.024751603603363037e-01,6.632862091064453125e-01,4.705976843833923340e-01,1.035495549440383911e-01,2.024751603603363037e-01,2.724799919128417969e+01,2.505999946594238281e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.631400465965270996e+00,inf,1.898848533630371094e+01,6.632862091064453125e-01,3.290193676948547363e-01,1.078273504972457886e-01,2.068178802728652954e-01,6.632862091064453125e-01,3.290193676948547363e-01,1.078273504972457886e-01,2.068178802728652954e-01,2.734000015258789062e+01,2.847999954223632812e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,3.119668483734130859e+00,1.639874439952545758e+29,1.561530780792236328e+01,6.632862091064453125e-01,3.652937710285186768e-01,1.103859245777130127e-01,2.150141447782516479e-01,6.632862091064453125e-01,3.652937710285186768e-01,1.103859245777130127e-01,2.150141447782516479e-01,2.698999977111816406e+01,2.845999908447265625e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.590517401695251465e+00,inf,1.622126197814941406e+01,6.632862091064453125e-01,4.308969974517822266e-01,1.073950380086898804e-01,2.156661301851272583e-01,6.632862091064453125e-01,4.308969974517822266e-01,1.073950380086898804e-01,2.156661301851272583e-01,2.737400054931640625e+01,2.584000015258789062e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,2.507501363754272461e+00,7.673741951871743951e+21,1.832744216918945312e+01,6.632862091064453125e-01,3.827203214168548584e-01,1.066658645868301392e-01,2.035553455352783203e-01,6.632862091064453125e-01,3.827203214168548584e-01,1.066658645868301392e-01,2.035553455352783203e-01,2.746400070190429688e+01,2.752000045776367188e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,8.149464428424835205e-02,inf,1.561093902587890625e+01,7.896904349327087402e-01,7.896904349327087402e-01,1.128754168748855591e-01,2.294350713491439819e-01,7.896904349327087402e-01,7.896904349327087402e-01,1.128754168748855591e-01,2.294350713491439819e-01,2.652799987792968750e+01,2.473999977111816406e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,3.555905342102050781e+00,inf,1.841978263854980469e+01,7.896904349327087402e-01,2.385618537664413452e-01,1.017892509698867798e-01,1.905187666416168213e-01,7.896904349327087402e-01,2.385618537664413452e-01,1.017892509698867798e-01,1.905187666416168213e-01,2.724399948120117188e+01,2.660000038146972656e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,8.772780895233154297e-01,inf,1.542930316925048828e+01,7.896904349327087402e-01,5.135922431945800781e-01,1.044250652194023132e-01,2.170113027095794678e-01,7.896904349327087402e-01,5.135922431945800781e-01,1.044250652194023132e-01,2.170113027095794678e-01,2.658200073242187500e+01,2.768000030517578125e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.507501363754272461e+00,inf,1.963087463378906250e+01,7.896904349327087402e-01,3.827203214168548584e-01,1.046664193272590637e-01,1.906784921884536743e-01,7.896904349327087402e-01,3.827203214168548584e-01,1.046664193272590637e-01,1.906784921884536743e-01,2.671999931335449219e+01,2.547999954223632812e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,3.392392396926879883e+00,inf,1.814756202697753906e+01,7.896904349327087402e-01,3.076807558536529541e-01,1.083174422383308411e-01,2.015912979841232300e-01,7.896904349327087402e-01,3.076807558536529541e-01,1.083174422383308411e-01,2.015912979841232300e-01,2.637999916076660156e+01,2.692000007629394531e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.158752322196960449e+00,inf,1.566391372680664062e+01,7.896904349327087402e-01,4.581319689750671387e-01,1.064032763242721558e-01,2.201907932758331299e-01,7.896904349327087402e-01,4.581319689750671387e-01,1.064032763242721558e-01,2.201907932758331299e-01,2.672200012207031250e+01,2.378000068664550781e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.722189426422119141e+00,inf,1.680057907104492188e+01,7.896904349327087402e-01,4.260789752006530762e-01,1.096820458769798279e-01,2.116016298532485962e-01,7.896904349327087402e-01,4.260789752006530762e-01,1.096820458769798279e-01,2.116016298532485962e-01,2.692600059509277344e+01,2.879999923706054688e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.746285200119018555e+00,2.802475733316816861e+29,1.662817001342773438e+01,7.896904349327087402e-01,4.501909017562866211e-01,1.066443622112274170e-01,2.112774550914764404e-01,7.896904349327087402e-01,4.501909017562866211e-01,1.066443622112274170e-01,2.112774550914764404e-01,2.666799926757812500e+01,2.326000022888183594e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.542712807655334473e+00,inf,1.859524154663085938e+01,7.896904349327087402e-01,4.406892955303192139e-01,1.127729490399360657e-01,2.173641324043273926e-01,7.896904349327087402e-01,4.406892955303192139e-01,1.127729490399360657e-01,2.173641324043273926e-01,2.668199920654296875e+01,2.636000061035156250e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.396639466285705566e+00,inf,1.398942756652832031e+01,7.896904349327087402e-01,4.662283360958099365e-01,1.108584403991699219e-01,2.204810380935668945e-01,7.896904349327087402e-01,4.662283360958099365e-01,1.108584403991699219e-01,2.204810380935668945e-01,2.572400093078613281e+01,2.463999938964843750e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,3.392392396926879883e+00,inf,1.425398826599121094e+01,7.896904349327087402e-01,3.550140857696533203e-01,1.101069301366806030e-01,2.107539474964141846e-01,7.896904349327087402e-01,3.550140857696533203e-01,1.101069301366806030e-01,2.107539474964141846e-01,2.612199974060058594e+01,2.510000038146972656e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.557891607284545898e+00,inf,1.490138053894042969e+01,7.896904349327087402e-01,3.608709573745727539e-01,1.104003265500068665e-01,2.084258049726486206e-01,7.896904349327087402e-01,3.608709573745727539e-01,1.104003265500068665e-01,2.084258049726486206e-01,2.641799926757812500e+01,2.663999938964843750e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.210130095481872559e+00,inf,1.382235908508300781e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.095651015639305115e-01,2.166977822780609131e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.095651015639305115e-01,2.166977822780609131e-01,2.724399948120117188e+01,2.502000045776367188e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.675975203514099121e+00,inf,1.781563186645507812e+01,7.896904349327087402e-01,4.253358840942382812e-01,1.106309741735458374e-01,2.090134024620056152e-01,7.896904349327087402e-01,4.253358840942382812e-01,1.106309741735458374e-01,2.090134024620056152e-01,2.599200057983398438e+01,2.479999923706054688e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.329229593276977539e+00,inf,1.339687061309814453e+01,7.896904349327087402e-01,4.876703917980194092e-01,1.085989847779273987e-01,2.264161109924316406e-01,7.896904349327087402e-01,4.876703917980194092e-01,1.085989847779273987e-01,2.264161109924316406e-01,2.634000015258789062e+01,2.428000068664550781e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.193913698196411133e+00,inf,1.508052635192871094e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.077247858047485352e-01,2.289826869964599609e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.077247858047485352e-01,2.289826869964599609e-01,2.625399971008300781e+01,2.536000061035156250e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.261111617088317871e+00,inf,1.478937149047851562e+01,7.896904349327087402e-01,4.680208861827850342e-01,1.096853390336036682e-01,2.176827043294906616e-01,7.896904349327087402e-01,4.680208861827850342e-01,1.096853390336036682e-01,2.176827043294906616e-01,2.631800079345703125e+01,2.668000030517578125e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.938591003417968750e+00,inf,1.760140991210937500e+01,7.896904349327087402e-01,3.704019486904144287e-01,1.099109798669815063e-01,2.268493175506591797e-01,7.896904349327087402e-01,3.704019486904144287e-01,1.099109798669815063e-01,2.268493175506591797e-01,2.673200035095214844e+01,2.679999923706054688e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.885816574096679688e+00,2.880089081215985910e+20,1.667135429382324219e+01,7.896904349327087402e-01,3.608709573745727539e-01,1.119481101632118225e-01,2.046437859535217285e-01,7.896904349327087402e-01,3.608709573745727539e-01,1.119481101632118225e-01,2.046437859535217285e-01,2.628800010681152344e+01,2.704000091552734375e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.293147087097167969e+00,3.588256169984000000e+12,1.619449996948242188e+01,7.896904349327087402e-01,4.373026192188262939e-01,1.111294031143188477e-01,2.137230336666107178e-01,7.896904349327087402e-01,4.373026192188262939e-01,1.111294031143188477e-01,2.137230336666107178e-01,2.619799995422363281e+01,2.404000091552734375e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.261111617088317871e+00,2.369442139064101908e+31,1.493012905120849609e+01,7.896904349327087402e-01,4.680208861827850342e-01,1.105564236640930176e-01,2.230401039123535156e-01,7.896904349327087402e-01,4.680208861827850342e-01,1.105564236640930176e-01,2.230401039123535156e-01,2.618400001525878906e+01,2.604000091552734375e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.196233987808227539e+00,8.679230495117244527e+35,1.629719352722167969e+01,7.896904349327087402e-01,3.986912071704864502e-01,1.140122637152671814e-01,2.073679268360137939e-01,7.896904349327087402e-01,3.986912071704864502e-01,1.140122637152671814e-01,2.073679268360137939e-01,2.681999969482421875e+01,2.652000045776367188e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.670494556427001953e+00,inf,1.437956809997558594e+01,7.896904349327087402e-01,4.320366978645324707e-01,1.138963848352432251e-01,2.341192960739135742e-01,7.896904349327087402e-01,4.320366978645324707e-01,1.138963848352432251e-01,2.341192960739135742e-01,2.647800064086914062e+01,2.515999984741210938e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.746285200119018555e+00,1.288244198218182254e+30,1.689324951171875000e+01,7.896904349327087402e-01,4.242511093616485596e-01,1.088772639632225037e-01,2.047743499279022217e-01,7.896904349327087402e-01,4.242511093616485596e-01,1.088772639632225037e-01,2.047743499279022217e-01,2.638400077819824219e+01,2.610000038146972656e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.713890552520751953e+00,3.037304913920000000e+11,1.586416816711425781e+01,7.896904349327087402e-01,4.253358840942382812e-01,1.106119975447654724e-01,2.151022702455520630e-01,7.896904349327087402e-01,4.253358840942382812e-01,1.106119975447654724e-01,2.151022702455520630e-01,2.635600090026855469e+01,2.576000022888183594e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,9.404219985008239746e-01,inf,1.584920310974121094e+01,7.896904349327087402e-01,5.149179697036743164e-01,1.110704541206359863e-01,2.247329056262969971e-01,7.896904349327087402e-01,5.149179697036743164e-01,1.110704541206359863e-01,2.247329056262969971e-01,2.596400070190429688e+01,2.470000076293945312e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.899254560470581055e+00,inf,1.527793407440185547e+01,7.896904349327087402e-01,4.329067766666412354e-01,1.132562682032585144e-01,2.203341275453567505e-01,7.896904349327087402e-01,4.329067766666412354e-01,1.132562682032585144e-01,2.203341275453567505e-01,2.598999977111816406e+01,2.523999977111816406e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.210130095481872559e+00,1.340577274686684347e+29,1.462746906280517578e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.135565936565399170e-01,2.250386178493499756e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.135565936565399170e-01,2.250386178493499756e-01,2.657200050354003906e+01,2.587999916076660156e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,3.405068218708038330e-01,inf,1.669806289672851562e+01,7.896904349327087402e-01,6.168722510337829590e-01,1.087614297866821289e-01,2.175270766019821167e-01,7.896904349327087402e-01,6.168722510337829590e-01,1.087614297866821289e-01,2.175270766019821167e-01,2.538400077819824219e+01,2.368000030517578125e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.210130095481872559e+00,inf,1.630471611022949219e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.118479073047637939e-01,2.171647101640701294e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.118479073047637939e-01,2.171647101640701294e-01,2.599600028991699219e+01,2.589999961853027344e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.120040655136108398e+00,8.819897720816445430e+36,1.524654006958007812e+01,7.896904349327087402e-01,4.834851026535034180e-01,1.100661084055900574e-01,2.279609590768814087e-01,7.896904349327087402e-01,4.834851026535034180e-01,1.100661084055900574e-01,2.279609590768814087e-01,2.451399993896484375e+01,2.476000022888183594e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.055908441543579102e+00,inf,1.571108055114746094e+01,7.896904349327087402e-01,4.261181354522705078e-01,1.160486042499542236e-01,2.214538753032684326e-01,7.896904349327087402e-01,4.261181354522705078e-01,1.160486042499542236e-01,2.214538753032684326e-01,2.498200035095214844e+01,2.310000038146972656e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.713890552520751953e+00,1.622968708839702911e+26,1.580605316162109375e+01,7.896904349327087402e-01,4.253358840942382812e-01,1.123268678784370422e-01,2.133216559886932373e-01,7.896904349327087402e-01,4.253358840942382812e-01,1.123268678784370422e-01,2.133216559886932373e-01,2.487999916076660156e+01,2.662000083923339844e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.746285200119018555e+00,4.831372654716086617e+33,1.367841339111328125e+01,7.896904349327087402e-01,4.242511093616485596e-01,1.187194883823394775e-01,2.386173158884048462e-01,7.896904349327087402e-01,4.242511093616485596e-01,1.187194883823394775e-01,2.386173158884048462e-01,2.494799995422363281e+01,2.415999984741210938e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,6.760794520378112793e-01,inf,1.609800720214843750e+01,7.896904349327087402e-01,5.370388031005859375e-01,1.140615642070770264e-01,2.178508639335632324e-01,7.896904349327087402e-01,5.370388031005859375e-01,1.140615642070770264e-01,2.178508639335632324e-01,2.515999984741210938e+01,2.581999969482421875e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.568438053131103516e+00,1.855054500824602378e+21,1.626729965209960938e+01,7.896904349327087402e-01,4.492482244968414307e-01,1.128771305084228516e-01,2.097183912992477417e-01,7.896904349327087402e-01,4.492482244968414307e-01,1.128771305084228516e-01,2.097183912992477417e-01,2.420000076293945312e+01,2.376000022888183594e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,3.480333983898162842e-01,inf,1.322438049316406250e+01,7.896904349327087402e-01,5.854755640029907227e-01,1.188483163714408875e-01,2.398385554552078247e-01,7.896904349327087402e-01,5.854755640029907227e-01,1.188483163714408875e-01,2.398385554552078247e-01,2.441600036621093750e+01,2.613999938964843750e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,9.325629472732543945e-01,2.832084268476276886e+31,1.460283184051513672e+01,7.896904349327087402e-01,5.290623307228088379e-01,1.165445595979690552e-01,2.356424927711486816e-01,7.896904349327087402e-01,5.290623307228088379e-01,1.165445595979690552e-01,2.356424927711486816e-01,2.489599990844726562e+01,2.437999916076660156e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.713890552520751953e+00,inf,1.291216850280761719e+01,7.896904349327087402e-01,4.253358840942382812e-01,1.173998191952705383e-01,2.168198972940444946e-01,7.896904349327087402e-01,4.253358840942382812e-01,1.173998191952705383e-01,2.168198972940444946e-01,2.402799987792968750e+01,2.265999984741210938e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.243361949920654297e+00,inf,1.415308380126953125e+01,7.896904349327087402e-01,4.412270784378051758e-01,1.201953589916229248e-01,2.292044460773468018e-01,7.896904349327087402e-01,4.412270784378051758e-01,1.201953589916229248e-01,2.292044460773468018e-01,2.308399963378906250e+01,2.128000068664550781e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,8.005070686340332031e-01,3.514515783680000000e+11,1.378940391540527344e+01,7.896904349327087402e-01,5.148575901985168457e-01,1.221734657883644104e-01,2.309122234582901001e-01,7.896904349327087402e-01,5.148575901985168457e-01,1.221734657883644104e-01,2.309122234582901001e-01,2.367000007629394531e+01,2.337999916076660156e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.109863013029098511e-01,1.044408890066470961e+21,1.319374942779541016e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.256943345069885254e-01,2.548844516277313232e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.256943345069885254e-01,2.548844516277313232e-01,2.364599990844726562e+01,2.252000045776367188e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.109863013029098511e-01,1.733603030481042093e+22,1.457139968872070312e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.165197715163230896e-01,2.260941565036773682e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.165197715163230896e-01,2.260941565036773682e-01,2.335199928283691406e+01,2.400000000000000000e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.261126697063446045e-01,1.891269345280000000e+11,1.361414718627929688e+01,7.896904349327087402e-01,7.354717850685119629e-01,1.210843473672866821e-01,2.368717789649963379e-01,7.896904349327087402e-01,7.354717850685119629e-01,1.210843473672866821e-01,2.368717789649963379e-01,2.263199996948242188e+01,2.102000045776367188e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.193913698196411133e+00,1.140356043712437872e+25,1.222672271728515625e+01,7.896904349327087402e-01,4.705976843833923340e-01,1.223896071314811707e-01,2.429018169641494751e-01,7.896904349327087402e-01,4.705976843833923340e-01,1.223896071314811707e-01,2.429018169641494751e-01,2.332999992370605469e+01,2.163999938964843750e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.132376909255981445e+00,6.306591733186560000e+14,1.529527187347412109e+01,7.896904349327087402e-01,4.753471910953521729e-01,1.168825775384902954e-01,2.130514383316040039e-01,7.896904349327087402e-01,4.753471910953521729e-01,1.168825775384902954e-01,2.130514383316040039e-01,2.435799980163574219e+01,2.444000053405761719e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.193913698196411133e+00,2.313812353934307413e+22,1.407354164123535156e+01,7.896904349327087402e-01,4.705976843833923340e-01,1.206520348787307739e-01,2.303407192230224609e-01,7.896904349327087402e-01,4.705976843833923340e-01,1.206520348787307739e-01,2.303407192230224609e-01,2.430999946594238281e+01,2.513999938964843750e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.507501363754272461e+00,5.857913220594394048e+27,1.528908443450927734e+01,7.896904349327087402e-01,4.481537342071533203e-01,1.176782846450805664e-01,2.198299318552017212e-01,7.896904349327087402e-01,4.481537342071533203e-01,1.176782846450805664e-01,2.198299318552017212e-01,2.558399963378906250e+01,2.771999931335449219e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.713890552520751953e+00,inf,1.479658603668212891e+01,7.896904349327087402e-01,4.253358840942382812e-01,1.177210360765457153e-01,2.197324633598327637e-01,7.896904349327087402e-01,4.253358840942382812e-01,1.177210360765457153e-01,2.197324633598327637e-01,2.513800048828125000e+01,2.542000007629394531e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.193913698196411133e+00,inf,1.737659072875976562e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.145640984177589417e-01,2.231391221284866333e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.145640984177589417e-01,2.231391221284866333e-01,2.509600067138671875e+01,2.547999954223632812e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.542712807655334473e+00,inf,1.572077083587646484e+01,7.896904349327087402e-01,4.406892955303192139e-01,1.179460734128952026e-01,2.176445573568344116e-01,7.896904349327087402e-01,4.406892955303192139e-01,1.179460734128952026e-01,2.176445573568344116e-01,2.461800003051757812e+01,2.604000091552734375e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.177418947219848633e+00,inf,1.687455368041992188e+01,7.896904349327087402e-01,4.068573117256164551e-01,1.182919144630432129e-01,2.113601863384246826e-01,7.896904349327087402e-01,4.068573117256164551e-01,1.182919144630432129e-01,2.113601863384246826e-01,2.539200019836425781e+01,2.621999931335449219e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.109863013029098511e-01,inf,1.355571365356445312e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.264398992061614990e-01,2.568646371364593506e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.264398992061614990e-01,2.568646371364593506e-01,2.582799911499023438e+01,2.604000091552734375e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.542712807655334473e+00,inf,1.546739196777343750e+01,7.896904349327087402e-01,4.406892955303192139e-01,1.174538582563400269e-01,2.181653380393981934e-01,7.896904349327087402e-01,4.406892955303192139e-01,1.174538582563400269e-01,2.181653380393981934e-01,2.600200080871582031e+01,2.768000030517578125e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.596017718315124512e-01,2.081639257812500000e+04,1.422673797607421875e+01,7.896904349327087402e-01,6.624149680137634277e-01,1.203133463859558105e-01,2.396043986082077026e-01,7.896904349327087402e-01,6.624149680137634277e-01,1.203133463859558105e-01,2.396043986082077026e-01,2.552799987792968750e+01,2.505999946594238281e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.150487899780273438e+00,7.181973600000000000e+07,1.276636981964111328e+01,7.896904349327087402e-01,4.705976843833923340e-01,1.194237694144248962e-01,2.306844145059585571e-01,7.896904349327087402e-01,4.705976843833923340e-01,1.194237694144248962e-01,2.306844145059585571e-01,2.560000038146972656e+01,2.526000022888183594e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.109863013029098511e-01,5.640289550781250000e+03,1.346369647979736328e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.194322332739830017e-01,2.368047237396240234e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.194322332739830017e-01,2.368047237396240234e-01,2.599799919128417969e+01,2.542000007629394531e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,9.273648858070373535e-01,inf,1.254184532165527344e+01,7.896904349327087402e-01,5.301218628883361816e-01,1.245066821575164795e-01,2.310510724782943726e-01,7.896904349327087402e-01,5.301218628883361816e-01,1.245066821575164795e-01,2.310510724782943726e-01,2.557799911499023438e+01,2.623999977111816406e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.210130095481872559e+00,4.342446489600000000e+10,2.322822761535644531e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.219498440623283386e-01,2.336174696683883667e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.219498440623283386e-01,2.336174696683883667e-01,2.584000015258789062e+01,2.468000030517578125e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,8.054464459419250488e-01,2.121706209280000000e+11,1.258006191253662109e+01,7.896904349327087402e-01,5.132497549057006836e-01,1.243779584765434265e-01,2.388972193002700806e-01,7.896904349327087402e-01,5.132497549057006836e-01,1.243779584765434265e-01,2.388972193002700806e-01,2.485000038146972656e+01,2.370000076293945312e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.210130095481872559e+00,2.622119896678400000e+13,1.336580085754394531e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.227933764457702637e-01,2.480091750621795654e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.227933764457702637e-01,2.480091750621795654e-01,2.472599983215332031e+01,2.520000076293945312e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,9.020162820816040039e-01,5.016269500000000000e+06,1.272214317321777344e+01,7.896904349327087402e-01,4.912619888782501221e-01,1.220276281237602234e-01,2.287895977497100830e-01,7.896904349327087402e-01,4.912619888782501221e-01,1.220276281237602234e-01,2.287895977497100830e-01,2.417000007629394531e+01,2.337999916076660156e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.109863013029098511e-01,inf,1.559026813507080078e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.221070140600204468e-01,2.386708706617355347e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.221070140600204468e-01,2.386708706617355347e-01,2.423600006103515625e+01,2.520000076293945312e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.109863013029098511e-01,1.681094400000000000e+08,1.407889556884765625e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.243428066372871399e-01,2.338096052408218384e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.243428066372871399e-01,2.338096052408218384e-01,2.306399917602539062e+01,2.571999931335449219e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.085000395774841309e+00,2.547119718400000000e+11,1.408240985870361328e+01,7.896904349327087402e-01,4.721575975418090820e-01,1.229631081223487854e-01,2.448822259902954102e-01,7.896904349327087402e-01,4.721575975418090820e-01,1.229631081223487854e-01,2.448822259902954102e-01,2.271599960327148438e+01,2.231999969482421875e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,3.544330894947052002e-01,inf,1.202114868164062500e+01,7.896904349327087402e-01,6.287566423416137695e-01,1.291682571172714233e-01,2.618445456027984619e-01,7.896904349327087402e-01,6.287566423416137695e-01,1.291682571172714233e-01,2.618445456027984619e-01,2.182200050354003906e+01,2.239999961853027344e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,5.105985403060913086e-01,4.674603064440358175e+20,1.433705329895019531e+01,7.896904349327087402e-01,5.902229547500610352e-01,1.241389438509941101e-01,2.312474995851516724e-01,7.896904349327087402e-01,5.902229547500610352e-01,1.241389438509941101e-01,2.312474995851516724e-01,2.196400070190429688e+01,2.092000007629394531e+01,-1.000000000000000000e+00 -7.800080627202987671e-02,7.800080627202987671e-02,7.717579520000000000e+08,1.234045028686523438e+01,7.896904349327087402e-01,7.715847492218017578e-01,1.256560981273651123e-01,2.555406093597412109e-01,7.896904349327087402e-01,7.715847492218017578e-01,1.256560981273651123e-01,2.555406093597412109e-01,2.062999916076660156e+01,2.278000068664550781e+01,-1.000000000000000000e+00 -7.800080627202987671e-02,5.925034880638122559e-01,2.756538572105318400e+16,1.013474369049072266e+01,7.896904349327087402e-01,5.458043813705444336e-01,1.276642829179763794e-01,2.776876688003540039e-01,7.896904349327087402e-01,5.458043813705444336e-01,1.276642829179763794e-01,2.776876688003540039e-01,1.983799934387207031e+01,1.673999977111816406e+01,-1.000000000000000000e+00 -7.800080627202987671e-02,1.120036840438842773e+00,4.838788628480000000e+11,1.251748561859130859e+01,7.896904349327087402e-01,4.516091644763946533e-01,1.258639842271804810e-01,2.399550229310989380e-01,7.896904349327087402e-01,4.516091644763946533e-01,1.258639842271804810e-01,2.399550229310989380e-01,2.044400024414062500e+01,1.981999969482421875e+01,-1.000000000000000000e+00 -7.800080627202987671e-02,2.109863013029098511e-01,inf,1.033173942565917969e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.275629997253417969e-01,2.685931026935577393e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.275629997253417969e-01,2.685931026935577393e-01,1.919799995422363281e+01,1.634000015258789062e+01,-1.000000000000000000e+00 -7.800080627202987671e-02,2.474417090415954590e-01,1.945271679687500000e+04,1.245627117156982422e+01,7.896904349327087402e-01,6.230596303939819336e-01,1.265110373497009277e-01,2.523228228092193604e-01,7.896904349327087402e-01,6.230596303939819336e-01,1.265110373497009277e-01,2.523228228092193604e-01,2.003000068664550781e+01,1.937999916076660156e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,5.344150960445404053e-02,6.047610060800000000e+10,9.357701301574707031e+00,7.989647984504699707e-01,7.989647984504699707e-01,1.325650066137313843e-01,2.785580754280090332e-01,7.989647984504699707e-01,7.989647984504699707e-01,1.325650066137313843e-01,2.785580754280090332e-01,1.868799972534179688e+01,1.752000045776367188e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,9.196602553129196167e-02,4.553090662400000000e+10,1.152255344390869141e+01,7.989647984504699707e-01,7.689305543899536133e-01,1.308015584945678711e-01,2.726010680198669434e-01,7.989647984504699707e-01,7.689305543899536133e-01,1.308015584945678711e-01,2.726010680198669434e-01,1.890600013732910156e+01,1.907999992370605469e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.972492320000000000e+08,1.082638168334960938e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.307716369628906250e-01,2.610436677932739258e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.307716369628906250e-01,2.610436677932739258e-01,1.903400039672851562e+01,1.829999923706054688e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,2.645434240000000000e+08,1.082867050170898438e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.287373304367065430e-01,2.530967295169830322e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.287373304367065430e-01,2.530967295169830322e-01,1.914200019836425781e+01,1.787999916076660156e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,4.674809082031250000e+03,1.139617919921875000e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.300315856933593750e-01,2.611783146858215332e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.300315856933593750e-01,2.611783146858215332e-01,1.958600044250488281e+01,1.976000022888183594e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,8.288498688000000000e+09,1.218190956115722656e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.265101879835128784e-01,2.449426054954528809e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.265101879835128784e-01,2.449426054954528809e-01,2.077599906921386719e+01,2.145999908447265625e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.210130095481872559e+00,inf,9.544027328491210938e+00,7.989647984504699707e-01,4.736998379230499268e-01,1.315641850233078003e-01,2.786068022251129150e-01,7.989647984504699707e-01,4.736998379230499268e-01,1.315641850233078003e-01,2.786068022251129150e-01,2.129999923706054688e+01,2.284000015258789062e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,6.069544553756713867e-01,6.616898355200000000e+10,1.021937847137451172e+01,7.989647984504699707e-01,5.570317506790161133e-01,1.307744830846786499e-01,2.614164948463439941e-01,7.989647984504699707e-01,5.570317506790161133e-01,1.307744830846786499e-01,2.614164948463439941e-01,2.054999923706054688e+01,2.070000076293945312e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,8.005070686340332031e-01,9.979113769531250000e+02,1.298945903778076172e+01,7.989647984504699707e-01,5.026931762695312500e-01,1.270654201507568359e-01,2.347292155027389526e-01,7.989647984504699707e-01,5.026931762695312500e-01,1.270654201507568359e-01,2.347292155027389526e-01,2.217399978637695312e+01,2.165999984741210938e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.025777816772460938e+00,inf,1.122727775573730469e+01,7.989647984504699707e-01,4.736998379230499268e-01,1.279216259717941284e-01,2.492511868476867676e-01,7.989647984504699707e-01,4.736998379230499268e-01,1.279216259717941284e-01,2.492511868476867676e-01,2.253599929809570312e+01,2.186000061035156250e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,3.584938049316406250e-01,1.472304644096000000e+12,1.151367282867431641e+01,7.989647984504699707e-01,6.230207085609436035e-01,1.243281587958335876e-01,2.412305921316146851e-01,7.989647984504699707e-01,6.230207085609436035e-01,1.243281587958335876e-01,2.412305921316146851e-01,2.384399986267089844e+01,2.434000015258789062e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,3.583490048000000000e+10,1.232981109619140625e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.310551911592483521e-01,2.544735074043273926e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.310551911592483521e-01,2.544735074043273926e-01,2.316799926757812500e+01,2.405999946594238281e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,4.371345703125000000e+03,1.287490653991699219e+01,7.989647984504699707e-01,6.794257760047912598e-01,1.263858079910278320e-01,2.612386047840118408e-01,7.989647984504699707e-01,6.794257760047912598e-01,1.263858079910278320e-01,2.612386047840118408e-01,2.548200035095214844e+01,2.644000053405761719e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.887555016891797621e+25,1.145369815826416016e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.267117410898208618e-01,2.699019312858581543e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.267117410898208618e-01,2.699019312858581543e-01,2.450200080871582031e+01,2.118000030517578125e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.821689903736114502e-01,3.553826816000000000e+10,1.480382537841796875e+01,7.989647984504699707e-01,7.004724740982055664e-01,1.248414441943168640e-01,2.379978150129318237e-01,7.989647984504699707e-01,7.004724740982055664e-01,1.248414441943168640e-01,2.379978150129318237e-01,2.597999954223632812e+01,2.715999984741210938e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.547085209600000000e+10,1.338859367370605469e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.290121078491210938e-01,2.516867816448211670e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.290121078491210938e-01,2.516867816448211670e-01,2.595400047302246094e+01,2.573999977111816406e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.193913698196411133e+00,4.006594150400000000e+11,1.224617195129394531e+01,7.989647984504699707e-01,4.705976843833923340e-01,1.254430264234542847e-01,2.455602735280990601e-01,7.989647984504699707e-01,4.705976843833923340e-01,1.254430264234542847e-01,2.455602735280990601e-01,2.534000015258789062e+01,2.526000022888183594e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,6.886041015625000000e+03,1.258436965942382812e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.285329461097717285e-01,2.539549469947814941e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.285329461097717285e-01,2.539549469947814941e-01,2.548600006103515625e+01,2.604000091552734375e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,9.759382528000000000e+09,1.250126647949218750e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.233207955956459045e-01,2.445428520441055298e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.233207955956459045e-01,2.445428520441055298e-01,2.490999984741210938e+01,2.455999946594238281e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.025777816772460938e+00,4.152039550781250000e+03,1.245578670501708984e+01,7.989647984504699707e-01,4.651739299297332764e-01,1.286378204822540283e-01,2.509035170078277588e-01,7.989647984504699707e-01,4.651739299297332764e-01,1.286378204822540283e-01,2.509035170078277588e-01,2.429599952697753906e+01,2.302000045776367188e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.261111617088317871e+00,4.568113123164160000e+14,1.189118099212646484e+01,7.989647984504699707e-01,4.680208861827850342e-01,1.291586905717849731e-01,2.492566555738449097e-01,7.989647984504699707e-01,4.680208861827850342e-01,1.291586905717849731e-01,2.492566555738449097e-01,2.476000022888183594e+01,2.257999992370605469e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,9.027336835861206055e-01,1.181014240000000000e+08,9.674374580383300781e+00,7.989647984504699707e-01,4.927045106887817383e-01,1.305744647979736328e-01,2.678104341030120850e-01,7.989647984504699707e-01,4.927045106887817383e-01,1.305744647979736328e-01,2.678104341030120850e-01,2.289999961853027344e+01,2.144000053405761719e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,2.099302240000000000e+08,1.222595596313476562e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.267599463462829590e-01,2.471097409725189209e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.267599463462829590e-01,2.471097409725189209e-01,2.383399963378906250e+01,2.494000053405761719e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.210130095481872559e+00,2.093759178902213755e+20,9.356169700622558594e+00,7.989647984504699707e-01,4.736998379230499268e-01,1.294355839490890503e-01,2.816489636898040771e-01,7.989647984504699707e-01,4.736998379230499268e-01,1.294355839490890503e-01,2.816489636898040771e-01,2.344799995422363281e+01,1.992000007629394531e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.210130095481872559e+00,8.290422183414481548e+30,1.423481559753417969e+01,7.989647984504699707e-01,4.736998379230499268e-01,1.255804151296615601e-01,2.316051125526428223e-01,7.989647984504699707e-01,4.736998379230499268e-01,1.255804151296615601e-01,2.316051125526428223e-01,2.341799926757812500e+01,2.429999923706054688e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,3.612653613090515137e-01,2.118007861117743792e+21,1.500947570800781250e+01,7.989647984504699707e-01,6.108763217926025391e-01,1.268755495548248291e-01,2.572955191135406494e-01,7.989647984504699707e-01,6.108763217926025391e-01,1.268755495548248291e-01,2.572955191135406494e-01,2.335400009155273438e+01,2.100000000000000000e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,3.363325297832489014e-01,1.641017600000000000e+08,1.397825527191162109e+01,7.989647984504699707e-01,6.198371052742004395e-01,1.250347793102264404e-01,2.440443933010101318e-01,7.989647984504699707e-01,6.198371052742004395e-01,1.250347793102264404e-01,2.440443933010101318e-01,2.346599960327148438e+01,2.429999923706054688e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,9.123830795288085938e-01,5.900202803200000000e+10,1.106532669067382812e+01,7.989647984504699707e-01,5.057445764541625977e-01,1.300102621316909790e-01,2.595724165439605713e-01,7.989647984504699707e-01,5.057445764541625977e-01,1.300102621316909790e-01,2.595724165439605713e-01,2.268000030517578125e+01,2.045999908447265625e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.168404698371887207e+00,2.163405250000000000e+06,9.657444953918457031e+00,7.989647984504699707e-01,4.937959909439086914e-01,1.318843811750411987e-01,2.632430791854858398e-01,7.989647984504699707e-01,4.937959909439086914e-01,1.318843811750411987e-01,2.632430791854858398e-01,2.338599967956542969e+01,2.339999961853027344e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,6.470662355422973633e-01,1.567580411487067893e+30,1.018413066864013672e+01,7.989647984504699707e-01,5.903214216232299805e-01,1.345145553350448608e-01,2.759525775909423828e-01,7.989647984504699707e-01,5.903214216232299805e-01,1.345145553350448608e-01,2.759525775909423828e-01,2.353000068664550781e+01,2.484000015258789062e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,inf,1.277149200439453125e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.253007203340530396e-01,2.577877640724182129e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.253007203340530396e-01,2.577877640724182129e-01,2.337599945068359375e+01,2.394000053405761719e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.193913698196411133e+00,2.714051338274078720e+17,1.200497055053710938e+01,7.989647984504699707e-01,4.705976843833923340e-01,1.269249320030212402e-01,2.350639402866363525e-01,7.989647984504699707e-01,4.705976843833923340e-01,1.269249320030212402e-01,2.350639402866363525e-01,2.310000038146972656e+01,1.854000091552734375e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,3.363325297832489014e-01,9.964839577771101389e+19,1.091503715515136719e+01,7.989647984504699707e-01,6.198371052742004395e-01,1.341388970613479614e-01,2.621543109416961670e-01,7.989647984504699707e-01,6.198371052742004395e-01,1.341388970613479614e-01,2.621543109416961670e-01,2.294000053405761719e+01,2.071999931335449219e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,3.076634109020233154e-01,2.190286080000000000e+09,1.136752796173095703e+01,7.989647984504699707e-01,6.453108191490173340e-01,1.275711804628372192e-01,2.553065419197082520e-01,7.989647984504699707e-01,6.453108191490173340e-01,1.275711804628372192e-01,2.553065419197082520e-01,2.225399971008300781e+01,2.157999992370605469e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,3.913600937500000000e+05,1.030700397491455078e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.331938952207565308e-01,2.741284370422363281e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.331938952207565308e-01,2.741284370422363281e-01,2.372599983215332031e+01,1.971999931335449219e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.765019240761653199e+21,1.000710010528564453e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.333297342061996460e-01,2.906825542449951172e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.333297342061996460e-01,2.906825542449951172e-01,2.330200004577636719e+01,2.129999923706054688e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,3.862617611885070801e-01,2.593045760000000000e+08,1.175032901763916016e+01,7.989647984504699707e-01,6.066207289695739746e-01,1.271941512823104858e-01,2.496217787265777588e-01,7.989647984504699707e-01,6.066207289695739746e-01,1.271941512823104858e-01,2.496217787265777588e-01,2.311000061035156250e+01,1.895999908447265625e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,2.039786400000000000e+08,1.067199993133544922e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.349129676818847656e-01,2.830415666103363037e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.349129676818847656e-01,2.830415666103363037e-01,2.255999946594238281e+01,2.002000045776367188e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,9.480238556861877441e-01,4.929064453125000000e+03,1.176759910583496094e+01,7.989647984504699707e-01,4.965257048606872559e-01,1.293713003396987915e-01,2.532630860805511475e-01,7.989647984504699707e-01,4.965257048606872559e-01,1.293713003396987915e-01,2.532630860805511475e-01,2.198399925231933594e+01,2.163999938964843750e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,4.331063500000000000e+06,9.961009025573730469e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.385496556758880615e-01,2.992818951606750488e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.385496556758880615e-01,2.992818951606750488e-01,2.186800003051757812e+01,2.120000076293945312e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,7.190691828727722168e-01,5.236036328125000000e+04,1.108612728118896484e+01,7.989647984504699707e-01,5.438839793205261230e-01,1.322617232799530029e-01,2.516010701656341553e-01,7.989647984504699707e-01,5.438839793205261230e-01,1.322617232799530029e-01,2.516010701656341553e-01,2.227400016784667969e+01,2.168000030517578125e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.462446838617324829e-01,9.558913024000000000e+10,1.122499752044677734e+01,7.989647984504699707e-01,6.794257760047912598e-01,1.294223368167877197e-01,2.577455937862396240e-01,7.989647984504699707e-01,6.794257760047912598e-01,1.294223368167877197e-01,2.577455937862396240e-01,2.204999923706054688e+01,1.842000007629394531e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,2.001620566016000000e+12,8.600709915161132812e+00,7.989647984504699707e-01,6.794257760047912598e-01,1.368969380855560303e-01,2.849435806274414062e-01,7.989647984504699707e-01,6.794257760047912598e-01,1.368969380855560303e-01,2.849435806274414062e-01,2.162800025939941406e+01,1.978000068664550781e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,4.024281616210937500e+02,1.223228836059570312e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.337277442216873169e-01,2.753653526306152344e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.337277442216873169e-01,2.753653526306152344e-01,2.060600090026855469e+01,1.773999977111816406e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,5.977646112442016602e-01,1.180054500000000000e+07,1.098357105255126953e+01,7.989647984504699707e-01,5.631397962570190430e-01,1.364877521991729736e-01,2.600618600845336914e-01,7.989647984504699707e-01,5.631397962570190430e-01,1.364877521991729736e-01,2.600618600845336914e-01,2.128400039672851562e+01,1.981999969482421875e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.635683349609375000e+03,1.042393875122070312e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.323377639055252075e-01,2.775258123874664307e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.323377639055252075e-01,2.775258123874664307e-01,2.003000068664550781e+01,1.860000038146972656e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.477541210937500000e+04,1.191611194610595703e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.334009915590286255e-01,2.637566030025482178e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.334009915590286255e-01,2.637566030025482178e-01,1.891600036621093750e+01,1.662000083923339844e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,9.008518066406250000e+02,8.653997421264648438e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.407577544450759888e-01,2.986161410808563232e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.407577544450759888e-01,2.986161410808563232e-01,1.927400016784667969e+01,1.831999969482421875e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,5.974679961600000000e+10,1.004401016235351562e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.392899751663208008e-01,3.091067969799041748e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.392899751663208008e-01,3.091067969799041748e-01,1.702000045776367188e+01,1.660000038146972656e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,inf,6.101706981658935547e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.433396339416503906e-01,3.278919458389282227e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.433396339416503906e-01,3.278919458389282227e-01,1.593999958038330078e+01,1.506000041961669922e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,9.769075927734375000e+02,5.335397720336914062e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.467777043581008911e-01,3.218415975570678711e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.467777043581008911e-01,3.218415975570678711e-01,1.442000007629394531e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,4.162530601024627686e-01,1.466293579101562500e+03,7.301302909851074219e+00,7.989647984504699707e-01,6.458863615989685059e-01,1.379741877317428589e-01,3.096953928470611572e-01,7.989647984504699707e-01,6.458863615989685059e-01,1.379741877317428589e-01,3.096953928470611572e-01,1.329800033569335938e+01,1.356000041961669922e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,5.001850880000000000e+08,6.391247749328613281e+00,7.989647984504699707e-01,6.794257760047912598e-01,1.448089480400085449e-01,3.417702913284301758e-01,7.989647984504699707e-01,6.794257760047912598e-01,1.448089480400085449e-01,3.417702913284301758e-01,1.333199977874755859e+01,1.297999954223632812e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.817930240000000000e+08,6.247632026672363281e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.470026075839996338e-01,3.331599831581115723e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.470026075839996338e-01,3.331599831581115723e-01,1.309000015258789062e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,5.974679961600000000e+10,8.541090011596679688e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.343652158975601196e-01,2.955857813358306885e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.343652158975601196e-01,2.955857813358306885e-01,1.341399955749511719e+01,1.318000030517578125e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,2.185659667968750000e+03,6.386012077331542969e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.467085033655166626e-01,3.356825709342956543e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.467085033655166626e-01,3.356825709342956543e-01,1.350199985504150391e+01,1.115999984741210938e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.048428613281250000e+04,7.229537010192871094e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.454975008964538574e-01,3.117601871490478516e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.454975008964538574e-01,3.117601871490478516e-01,1.422200012207031250e+01,1.206000041961669922e+01,-1.000000000000000000e+00 -5.211143195629119873e-02,5.211143195629119873e-02,5.975932108800000000e+10,6.247543334960937500e+00,8.318883776664733887e-01,8.318883776664733887e-01,1.414119303226470947e-01,3.404151201248168945e-01,8.318883776664733887e-01,8.318883776664733887e-01,1.414119303226470947e-01,3.404151201248168945e-01,1.324800014495849609e+01,1.176000022888183594e+01,-1.000000000000000000e+00 -5.211143195629119873e-02,2.109863013029098511e-01,4.309585571289062500e+02,3.801268815994262695e+00,8.318883776664733887e-01,6.632862091064453125e-01,1.562476605176925659e-01,3.916985094547271729e-01,8.318883776664733887e-01,6.632862091064453125e-01,1.562476605176925659e-01,3.916985094547271729e-01,1.362800025939941406e+01,1.261999988555908203e+01,-1.000000000000000000e+00 -5.211143195629119873e-02,2.109863013029098511e-01,6.597335040000000000e+10,6.851186752319335938e+00,8.318883776664733887e-01,6.632862091064453125e-01,1.465059220790863037e-01,3.203927278518676758e-01,8.318883776664733887e-01,6.632862091064453125e-01,1.465059220790863037e-01,3.203927278518676758e-01,1.406200027465820312e+01,1.460000038146972656e+01,-1.000000000000000000e+00 -5.211143195629119873e-02,2.109863013029098511e-01,5.103302612304687500e+02,6.818662166595458984e+00,8.318883776664733887e-01,6.632862091064453125e-01,1.422667354345321655e-01,3.231700658798217773e-01,8.318883776664733887e-01,6.632862091064453125e-01,1.422667354345321655e-01,3.231700658798217773e-01,1.411600017547607422e+01,1.203999996185302734e+01,-1.000000000000000000e+00 -5.211143195629119873e-02,3.363325297832489014e-01,3.093405761718750000e+02,7.242066860198974609e+00,8.318883776664733887e-01,6.198371052742004395e-01,1.431665718555450439e-01,3.102624118328094482e-01,8.318883776664733887e-01,6.198371052742004395e-01,1.431665718555450439e-01,3.102624118328094482e-01,1.412800025939941406e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -5.211143195629119873e-02,9.196602553129196167e-02,2.856071289062500000e+03,4.441316127777099609e+00,8.318883776664733887e-01,7.689305543899536133e-01,1.503029018640518188e-01,3.720642030239105225e-01,8.318883776664733887e-01,7.689305543899536133e-01,1.503029018640518188e-01,3.720642030239105225e-01,1.402200031280517578e+01,1.326000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,1.326729614257812500e+03,5.602629661560058594e+00,9.736213684082031250e-01,9.736213684082031250e-01,1.519632041454315186e-01,3.524923920631408691e-01,9.736213684082031250e-01,9.736213684082031250e-01,1.519632041454315186e-01,3.524923920631408691e-01,1.462399959564208984e+01,1.281999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.060334106445312500e+03,5.006417274475097656e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.532150954008102417e-01,3.595787286758422852e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.532150954008102417e-01,3.595787286758422852e-01,1.464999961853027344e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.457493286132812500e+03,7.625200748443603516e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.422583907842636108e-01,3.280936777591705322e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.422583907842636108e-01,3.280936777591705322e-01,1.461800003051757812e+01,1.085999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,9.835274517536163330e-02,1.808427886962890625e+02,7.014615058898925781e+00,9.736213684082031250e-01,7.523320913314819336e-01,1.458570361137390137e-01,3.166730701923370361e-01,9.736213684082031250e-01,7.523320913314819336e-01,1.458570361137390137e-01,3.166730701923370361e-01,1.414200019836425781e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.076520323753356934e-01,7.042603759765625000e+02,4.793700695037841797e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.535025686025619507e-01,3.832308053970336914e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.535025686025619507e-01,3.832308053970336914e-01,1.405599975585937500e+01,1.453999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.038617935180664062e+02,6.349983215332031250e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.459947228431701660e-01,3.263140618801116943e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.459947228431701660e-01,3.263140618801116943e-01,1.331999969482421875e+01,1.306000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.391495764255523682e-01,2.657406875000000000e+05,4.341187000274658203e+00,9.736213684082031250e-01,7.088245153427124023e-01,1.529902666807174683e-01,3.654816448688507080e-01,9.736213684082031250e-01,7.088245153427124023e-01,1.529902666807174683e-01,3.654816448688507080e-01,1.350800037384033203e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.190445120000000000e+08,5.968400955200195312e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.523781418800354004e-01,3.511803746223449707e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.523781418800354004e-01,3.511803746223449707e-01,1.451399993896484375e+01,1.361999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,8.324382400000000000e+07,4.321993350982666016e+00,9.736213684082031250e-01,6.670492887496948242e-01,1.506854444742202759e-01,3.843584358692169189e-01,9.736213684082031250e-01,6.670492887496948242e-01,1.506854444742202759e-01,3.843584358692169189e-01,1.446399974822998047e+01,1.119999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.205292205810546875e+02,4.476331233978271484e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.490027904510498047e-01,3.500893414020538330e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.490027904510498047e-01,3.500893414020538330e-01,1.453999996185302734e+01,1.285999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.720260198400000000e+10,3.506610870361328125e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.570054590702056885e-01,3.925758302211761475e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.570054590702056885e-01,3.925758302211761475e-01,1.399800014495849609e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.119032592773437500e+02,5.774744033813476562e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.507582217454910278e-01,3.575356006622314453e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.507582217454910278e-01,3.575356006622314453e-01,1.481400012969970703e+01,1.347999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.057917440000000000e+10,5.046957969665527344e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.521994322538375854e-01,3.729844689369201660e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.521994322538375854e-01,3.729844689369201660e-01,1.426799964904785156e+01,1.253999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.462446838617324829e-01,1.891618530273437500e+03,3.958756446838378906e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.547527313232421875e-01,3.820328712463378906e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.547527313232421875e-01,3.820328712463378906e-01,1.452799987792968750e+01,1.418000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.024087085291908628e+20,2.684163093566894531e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.654801070690155029e-01,4.154038131237030029e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.654801070690155029e-01,4.154038131237030029e-01,1.326000022888183594e+01,1.372000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.002587840000000000e+08,3.866615056991577148e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.612076908349990845e-01,3.991482853889465332e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.612076908349990845e-01,3.991482853889465332e-01,1.332999992370605469e+01,1.296000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.407979736328125000e+03,3.582335710525512695e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.593312025070190430e-01,3.948276340961456299e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.593312025070190430e-01,3.948276340961456299e-01,1.271599960327148438e+01,1.268000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.247114375000000000e+05,4.025861740112304688e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.585142463445663452e-01,3.847510218620300293e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.585142463445663452e-01,3.847510218620300293e-01,1.340600013732910156e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.172351806640625000e+03,3.844737529754638672e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.578550636768341064e-01,3.731637001037597656e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.578550636768341064e-01,3.731637001037597656e-01,1.413599967956542969e+01,1.239999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.301611633300781250e+02,2.676741838455200195e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.627083271741867065e-01,4.197925329208374023e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.627083271741867065e-01,4.197925329208374023e-01,1.299199962615966797e+01,1.343999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.693726196289062500e+02,2.394590616226196289e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.659596711397171021e-01,4.246728122234344482e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.659596711397171021e-01,4.246728122234344482e-01,1.377799987792968750e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.133548736572265625e+01,3.663356542587280273e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.568159312009811401e-01,3.788446187973022461e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.568159312009811401e-01,3.788446187973022461e-01,1.300599956512451172e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.977414703369140625e+02,2.411195278167724609e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.634995788335800171e-01,4.269548058509826660e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.634995788335800171e-01,4.269548058509826660e-01,1.315999984741210938e+01,1.342000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.019411718750000000e+04,2.518750190734863281e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.656083464622497559e-01,4.173050224781036377e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.656083464622497559e-01,4.173050224781036377e-01,1.388199996948242188e+01,1.288000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.405119628906250000e+02,3.585592508316040039e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.595430672168731689e-01,3.847650587558746338e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.595430672168731689e-01,3.847650587558746338e-01,1.305799961090087891e+01,1.189999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.274799804687500000e+03,4.417473793029785156e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.597614437341690063e-01,3.892643749713897705e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.597614437341690063e-01,3.892643749713897705e-01,1.309399986267089844e+01,1.227999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.749429321289062500e+01,2.463121891021728516e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.637272536754608154e-01,4.230856001377105713e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.637272536754608154e-01,4.230856001377105713e-01,1.401200008392333984e+01,1.397999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,8.542617034912109375e+01,2.197192430496215820e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.708343327045440674e-01,4.589135348796844482e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.708343327045440674e-01,4.589135348796844482e-01,1.303199958801269531e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.891549682617187500e+02,3.276868343353271484e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.660683155059814453e-01,4.129686355590820312e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.660683155059814453e-01,4.129686355590820312e-01,1.344600009918212891e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.122800979614257812e+02,3.216339349746704102e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.628471910953521729e-01,4.268618822097778320e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.628471910953521729e-01,4.268618822097778320e-01,1.346199989318847656e+01,1.184000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.901525878906250000e+02,3.198362112045288086e+00,9.736213684082031250e-01,6.749502420425415039e-01,1.603029370307922363e-01,4.098116457462310791e-01,9.736213684082031250e-01,6.749502420425415039e-01,1.603029370307922363e-01,4.098116457462310791e-01,1.278800010681152344e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,9.196602553129196167e-02,5.531833267211914062e+01,2.533264160156250000e+00,9.736213684082031250e-01,7.689305543899536133e-01,1.659499853849411011e-01,4.301648139953613281e-01,9.736213684082031250e-01,7.689305543899536133e-01,1.659499853849411011e-01,4.301648139953613281e-01,1.244799995422363281e+01,1.076000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.329685516357421875e+02,3.748855352401733398e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.620391905307769775e-01,3.992757201194763184e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.620391905307769775e-01,3.992757201194763184e-01,1.228800010681152344e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.753712445497512817e-01,2.499631835937500000e+03,2.437620639801025391e+00,9.736213684082031250e-01,6.824760437011718750e-01,1.718825995922088623e-01,4.641534686088562012e-01,9.736213684082031250e-01,6.824760437011718750e-01,1.718825995922088623e-01,4.641534686088562012e-01,1.174600028991699219e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.978868865966796875e+01,4.884464263916015625e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.609724611043930054e-01,3.743749558925628662e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.609724611043930054e-01,3.743749558925628662e-01,1.163199996948242188e+01,1.238000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.081553344726562500e+02,2.184535741806030273e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.718002855777740479e-01,4.438883960247039795e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.718002855777740479e-01,4.438883960247039795e-01,1.141399955749511719e+01,1.107999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,8.623374176025390625e+01,1.636138081550598145e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.752764135599136353e-01,4.751576483249664307e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.752764135599136353e-01,4.751576483249664307e-01,1.059599971771240234e+01,9.640000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.616725158691406250e+01,1.887494444847106934e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.704975366592407227e-01,4.468193948268890381e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.704975366592407227e-01,4.468193948268890381e-01,1.106999969482421875e+01,9.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.945347290039062500e+02,2.234179258346557617e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.779486089944839478e-01,4.676078855991363525e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.779486089944839478e-01,4.676078855991363525e-01,1.014000034332275391e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.444847106933593750e+01,1.314830660820007324e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.823307126760482788e-01,5.033001899719238281e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.823307126760482788e-01,5.033001899719238281e-01,9.881999969482421875e+00,9.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.377724914550781250e+02,1.414338231086730957e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.842622905969619751e-01,4.943864047527313232e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.842622905969619751e-01,4.943864047527313232e-01,1.006599998474121094e+01,9.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,8.158341217041015625e+01,2.086190223693847656e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.741236150264739990e-01,4.443570077419281006e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.741236150264739990e-01,4.443570077419281006e-01,9.739999771118164062e+00,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.081774902343750000e+01,1.099049925804138184e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.939996629953384399e-01,5.278001427650451660e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.939996629953384399e-01,5.278001427650451660e-01,9.038000106811523438e+00,8.479999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.704523086547851562e+01,1.077073097229003906e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.876731812953948975e-01,5.218648910522460938e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.876731812953948975e-01,5.218648910522460938e-01,8.828000068664550781e+00,8.319999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.319736099243164062e+01,1.246697664260864258e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.891335546970367432e-01,5.116701722145080566e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.891335546970367432e-01,5.116701722145080566e-01,8.793999671936035156e+00,8.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.435660034179687500e+03,1.335465431213378906e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.827374845743179321e-01,4.899484813213348389e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.827374845743179321e-01,4.899484813213348389e-01,8.472000122070312500e+00,8.279999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.766038285623257093e+33,1.119670391082763672e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.870736032724380493e-01,5.304555296897888184e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.870736032724380493e-01,5.304555296897888184e-01,8.326000213623046875e+00,8.680000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.517917633056640625e+01,9.278565049171447754e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.887483447790145874e-01,5.410969853401184082e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.887483447790145874e-01,5.410969853401184082e-01,7.923999786376953125e+00,8.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.024276428222656250e+02,8.956574201583862305e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.942370682954788208e-01,5.506297349929809570e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.942370682954788208e-01,5.506297349929809570e-01,8.237999916076660156e+00,8.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.007800936698913574e-01,4.399710083007812500e+01,1.012792468070983887e+00,9.736213684082031250e-01,6.687233448028564453e-01,1.927709281444549561e-01,5.413502454757690430e-01,9.736213684082031250e-01,6.687233448028564453e-01,1.927709281444549561e-01,5.413502454757690430e-01,8.067999839782714844e+00,9.020000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.452149810791015625e+02,9.416846632957458496e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.946388781070709229e-01,5.464934110641479492e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.946388781070709229e-01,5.464934110641479492e-01,8.451999664306640625e+00,8.579999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.033855056762695312e+01,9.709120392799377441e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.872780621051788330e-01,5.334995388984680176e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.872780621051788330e-01,5.334995388984680176e-01,8.713999748229980469e+00,8.859999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.815720367431640625e+01,7.786616683006286621e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.998354643583297729e-01,5.532540678977966309e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.998354643583297729e-01,5.532540678977966309e-01,8.694000244140625000e+00,8.460000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.546503540039062500e+03,6.803803443908691406e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.961859166622161865e-01,5.722553133964538574e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.961859166622161865e-01,5.722553133964538574e-01,8.458000183105468750e+00,8.560000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.202288436889648438e+01,9.511959552764892578e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.917892992496490479e-01,5.474109649658203125e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.917892992496490479e-01,5.474109649658203125e-01,8.897999763488769531e+00,9.020000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.000278472900390625e+01,8.952043056488037109e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.960368305444717407e-01,5.457988977432250977e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.960368305444717407e-01,5.457988977432250977e-01,8.892000198364257812e+00,9.119999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.080593261718750000e+02,6.723458170890808105e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.006928026676177979e-01,5.778315663337707520e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.006928026676177979e-01,5.778315663337707520e-01,8.607999801635742188e+00,8.340000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.893911914062500000e+04,7.695955038070678711e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.991368383169174194e-01,5.614954233169555664e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.991368383169174194e-01,5.614954233169555664e-01,9.416000366210937500e+00,8.180000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.406190109252929688e+01,5.596244931221008301e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.082171589136123657e-01,5.954488515853881836e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.082171589136123657e-01,5.954488515853881836e-01,8.909999847412109375e+00,8.859999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.209593276977539062e+02,4.489489793777465820e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.104652374982833862e-01,6.156971454620361328e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.104652374982833862e-01,6.156971454620361328e-01,8.760000228881835938e+00,8.020000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.260869906954452992e+19,4.577481746673583984e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.157040089368820190e-01,6.147692799568176270e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.157040089368820190e-01,6.147692799568176270e-01,8.706000328063964844e+00,8.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.724844360351562500e+01,6.635994315147399902e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.016147822141647339e-01,5.731287598609924316e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.016147822141647339e-01,5.731287598609924316e-01,8.201999664306640625e+00,8.239999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.180855541760000000e+12,4.957166910171508789e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.168189883232116699e-01,6.072691679000854492e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.168189883232116699e-01,6.072691679000854492e-01,8.432000160217285156e+00,7.900000095367431641e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,9.196602553129196167e-02,3.491460418701171875e+01,4.408548474311828613e-01,9.736213684082031250e-01,7.689305543899536133e-01,2.145669311285018921e-01,6.237810850143432617e-01,9.736213684082031250e-01,7.689305543899536133e-01,2.145669311285018921e-01,6.237810850143432617e-01,8.008000373840332031e+00,8.300000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.522916793823242188e+01,8.247738480567932129e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.998803168535232544e-01,5.612831115722656250e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.998803168535232544e-01,5.612831115722656250e-01,7.940000057220458984e+00,8.460000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.623597717285156250e+01,4.288699030876159668e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.106122821569442749e-01,6.199588775634765625e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.106122821569442749e-01,6.199588775634765625e-01,7.834000110626220703e+00,8.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.779851150512695312e+01,6.522434353828430176e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.000101804733276367e-01,5.796544551849365234e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.000101804733276367e-01,5.796544551849365234e-01,7.877999782562255859e+00,7.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.528846740722656250e+01,3.766626119613647461e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.157182842493057251e-01,6.290324330329895020e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.157182842493057251e-01,6.290324330329895020e-01,7.668000221252441406e+00,7.340000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.142464828491210938e+01,2.335112690925598145e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253583371639251709e-01,6.571745276451110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253583371639251709e-01,6.571745276451110840e-01,7.538000106811523438e+00,7.719999790191650391e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.605115509033203125e+01,2.454769462347030640e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179443687200546265e-01,6.549164056777954102e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179443687200546265e-01,6.549164056777954102e-01,7.415999889373779297e+00,7.559999942779541016e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.358426284790039062e+01,2.167041599750518799e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.230401635169982910e-01,6.634349822998046875e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.230401635169982910e-01,6.634349822998046875e-01,7.289999961853027344e+00,7.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.468428421020507812e+01,3.515892922878265381e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.156771868467330933e-01,6.358521580696105957e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.156771868467330933e-01,6.358521580696105957e-01,7.184000015258789062e+00,7.719999790191650391e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.167955932617187500e+02,3.688119351863861084e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.126942574977874756e-01,6.325567364692687988e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.126942574977874756e-01,6.325567364692687988e-01,7.268000125885009766e+00,7.860000133514404297e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.860346221923828125e+01,2.430761307477951050e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.169202417135238647e-01,6.555660963058471680e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.169202417135238647e-01,6.555660963058471680e-01,7.065999984741210938e+00,7.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.450402832031250000e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.320344299077987671e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.320344299077987671e-01,6.639317870140075684e-01,7.019999980926513672e+00,7.719999790191650391e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.009485626220703125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179702669382095337e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179702669382095337e-01,6.636090278625488281e-01,7.070000171661376953e+00,7.320000171661376953e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.397354125976562500e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.310522049665451050e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.310522049665451050e-01,6.636090278625488281e-01,6.989999771118164062e+00,7.360000133514404297e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.110736236572265625e+02,2.170190662145614624e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.290502935647964478e-01,6.640312075614929199e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.290502935647964478e-01,6.640312075614929199e-01,7.257999897003173828e+00,7.519999980926513672e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.694224548339843750e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.250379770994186401e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.250379770994186401e-01,6.642546057701110840e-01,7.205999851226806641e+00,7.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.024703216552734375e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.348615527153015137e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.348615527153015137e-01,6.642546057701110840e-01,7.326000213623046875e+00,7.980000019073486328e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.541642761230468750e+01,2.295729219913482666e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.180169820785522461e-01,6.573414206504821777e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.180169820785522461e-01,6.573414206504821777e-01,7.190000057220458984e+00,7.519999980926513672e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,8.838774108886718750e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.222263514995574951e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.222263514995574951e-01,6.639317870140075684e-01,7.306000232696533203e+00,7.400000095367431641e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.591632843017578125e+01,2.123850286006927490e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.278886288404464722e-01,6.637722849845886230e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.278886288404464722e-01,6.637722849845886230e-01,7.453999996185302734e+00,7.860000133514404297e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.472806930541992188e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.240249514579772949e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.240249514579772949e-01,6.642546057701110840e-01,7.397999763488769531e+00,7.599999904632568359e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.585643005371093750e+01,2.159108668565750122e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.221012860536575317e-01,6.653861999511718750e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.221012860536575317e-01,6.653861999511718750e-01,7.461999893188476562e+00,7.980000019073486328e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.775624847412109375e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.203189283609390259e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.203189283609390259e-01,6.639317870140075684e-01,7.679999828338623047e+00,7.599999904632568359e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,7.253229522705078125e+01,2.263569980859756470e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.104842811822891235e-01,6.659067869186401367e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.104842811822891235e-01,6.659067869186401367e-01,7.611999988555908203e+00,8.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.267500686645507812e+01,2.238346636295318604e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179197818040847778e-01,6.611014604568481445e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179197818040847778e-01,6.611014604568481445e-01,7.822000026702880859e+00,7.860000133514404297e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.032482528686523438e+01,2.423103302717208862e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.119344621896743774e-01,6.560854911804199219e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.119344621896743774e-01,6.560854911804199219e-01,7.980000019073486328e+00,8.140000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.656987609863281250e+02,3.342521488666534424e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.020591497421264648e-01,6.374441981315612793e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.020591497421264648e-01,6.374441981315612793e-01,8.088000297546386719e+00,8.500000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.914955520629882812e+01,2.206832021474838257e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.185005843639373779e-01,6.608054041862487793e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.185005843639373779e-01,6.608054041862487793e-01,7.984000205993652344e+00,7.559999942779541016e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.268712997436523438e+01,2.174104899168014526e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217005044221878052e-01,6.621938347816467285e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217005044221878052e-01,6.621938347816467285e-01,8.126000404357910156e+00,7.679999828338623047e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.621639862060546875e+02,2.163138985633850098e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.108784317970275879e-01,6.637083888053894043e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.108784317970275879e-01,6.637083888053894043e-01,7.934000015258789062e+00,8.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.991487884521484375e+01,2.221285551786422729e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.205317318439483643e-01,6.637918353080749512e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.205317318439483643e-01,6.637918353080749512e-01,8.081999778747558594e+00,8.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.625522155761718750e+02,2.587581574916839600e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.097927778959274292e-01,6.537879109382629395e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.097927778959274292e-01,6.537879109382629395e-01,8.078000068664550781e+00,8.119999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.013416671752929688e+01,2.216700911521911621e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.158032357692718506e-01,6.657125353813171387e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.158032357692718506e-01,6.657125353813171387e-01,8.291999816894531250e+00,8.239999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.872003173828125000e+01,2.137953639030456543e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.288593649864196777e-01,6.644178628921508789e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.288593649864196777e-01,6.644178628921508789e-01,8.189999580383300781e+00,7.980000019073486328e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.021546554565429688e+01,3.290492296218872070e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.099142372608184814e-01,6.384108662605285645e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.099142372608184814e-01,6.384108662605285645e-01,8.286000251770019531e+00,7.820000171661376953e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.904228210449218750e+01,2.211212366819381714e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.235031425952911377e-01,6.614684462547302246e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.235031425952911377e-01,6.614684462547302246e-01,8.371999740600585938e+00,8.220000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.340347671508789062e+01,2.448790073394775391e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248134315013885498e-01,6.562517881393432617e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248134315013885498e-01,6.562517881393432617e-01,8.149999618530273438e+00,8.220000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.548009765625000000e+03,2.322313785552978516e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217001765966415405e-01,6.578987836837768555e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217001765966415405e-01,6.578987836837768555e-01,7.881999969482421875e+00,7.679999828338623047e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.383720397949218750e+01,2.138069719076156616e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.287609577178955078e-01,6.645773649215698242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.287609577178955078e-01,6.645773649215698242e-01,8.293999671936035156e+00,7.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.578399200439453125e+02,3.023912608623504639e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.085492014884948730e-01,6.409018635749816895e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.085492014884948730e-01,6.409018635749816895e-01,7.900000095367431641e+00,8.039999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.533615112304687500e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.251022160053253174e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.251022160053253174e-01,6.632862091064453125e-01,7.967999935150146484e+00,7.940000057220458984e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.176890182495117188e+01,2.138069719076156616e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.358576506376266479e-01,6.645773649215698242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.358576506376266479e-01,6.645773649215698242e-01,8.156000137329101562e+00,8.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.789101028442382812e+01,2.145005315542221069e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.371693998575210571e-01,6.647406220436096191e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.371693998575210571e-01,6.647406220436096191e-01,8.149999618530273438e+00,8.140000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.682537841796875000e+01,2.179091423749923706e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.195266932249069214e-01,6.620146036148071289e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.195266932249069214e-01,6.620146036148071289e-01,8.260000228881835938e+00,8.100000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.367858505249023438e+01,2.487492710351943970e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.189749181270599365e-01,6.546699404716491699e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.189749181270599365e-01,6.546699404716491699e-01,8.218000411987304688e+00,8.300000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.509100723266601562e+01,2.253744751214981079e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.244728356599807739e-01,6.596505641937255859e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.244728356599807739e-01,6.596505641937255859e-01,8.482000350952148438e+00,7.900000095367431641e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.659743499755859375e+01,2.372456789016723633e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170524150133132935e-01,6.566456556320190430e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170524150133132935e-01,6.566456556320190430e-01,8.244000434875488281e+00,8.079999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.663518524169921875e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.275241017341613770e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.275241017341613770e-01,6.639317870140075684e-01,8.390000343322753906e+00,8.279999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.920879745483398438e+01,5.618166327476501465e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.056921273469924927e-01,6.046352386474609375e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.056921273469924927e-01,6.046352386474609375e-01,8.682000160217285156e+00,9.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.201090621948242188e+01,4.625337123870849609e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.064793407917022705e-01,6.134916543960571289e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.064793407917022705e-01,6.134916543960571289e-01,8.387999534606933594e+00,8.220000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.879480743408203125e+01,2.439031749963760376e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.189420014619827271e-01,6.561264991760253906e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.189420014619827271e-01,6.561264991760253906e-01,8.946000099182128906e+00,8.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.943616867065429688e+01,2.549807429313659668e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.135881036520004272e-01,6.514330506324768066e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.135881036520004272e-01,6.514330506324768066e-01,8.741999626159667969e+00,7.880000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.827345200000000000e+07,2.253306359052658081e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.259265184402465820e-01,6.605638265609741211e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.259265184402465820e-01,6.605638265609741211e-01,9.071999549865722656e+00,8.319999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.320420801639556885e-01,4.457058715820312500e+01,3.181157410144805908e-01,9.736213684082031250e-01,7.412153482437133789e-01,2.161291241645812988e-01,6.421239376068115234e-01,9.736213684082031250e-01,7.412153482437133789e-01,2.161291241645812988e-01,6.421239376068115234e-01,8.862000465393066406e+00,8.420000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.972333145141601562e+01,2.402565926313400269e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.182534039020538330e-01,6.561523675918579102e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.182534039020538330e-01,6.561523675918579102e-01,8.800000190734863281e+00,8.600000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.372932434082031250e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.280799746513366699e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.280799746513366699e-01,6.642546057701110840e-01,8.515999794006347656e+00,8.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.927442932128906250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.325813770294189453e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.325813770294189453e-01,6.636090278625488281e-01,8.729999542236328125e+00,7.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.077384185791015625e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.268676310777664185e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.268676310777664185e-01,6.642546057701110840e-01,8.904000282287597656e+00,8.420000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.494044876098632812e+01,2.130901962518692017e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.332374304533004761e-01,6.640950441360473633e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.332374304533004761e-01,6.640950441360473633e-01,8.765999794006347656e+00,8.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.112921524047851562e+01,2.173440754413604736e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.275335788726806641e-01,6.610321998596191406e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.275335788726806641e-01,6.610321998596191406e-01,8.845999717712402344e+00,7.940000057220458984e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.100163345336914062e+02,2.483106553554534912e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.211340814828872681e-01,6.519055366516113281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.211340814828872681e-01,6.519055366516113281e-01,8.894000053405761719e+00,8.439999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.307989120483398438e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.358338534832000732e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.358338534832000732e-01,6.642546057701110840e-01,8.994000434875488281e+00,8.119999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.493646087646484375e+02,2.650608122348785400e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.216165661811828613e-01,6.521517038345336914e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.216165661811828613e-01,6.521517038345336914e-01,9.399999618530273438e+00,8.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.008296386718750000e+03,2.408597916364669800e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170711606740951538e-01,6.573047041893005371e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170711606740951538e-01,6.573047041893005371e-01,9.755999565124511719e+00,8.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.652685546875000000e+01,4.516438245773315430e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.088584899902343750e-01,6.150008440017700195e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.088584899902343750e-01,6.150008440017700195e-01,1.002200031280517578e+01,9.520000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.336003494262695312e+01,2.449666857719421387e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.199350744485855103e-01,6.549360752105712891e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.199350744485855103e-01,6.549360752105712891e-01,9.798000335693359375e+00,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.359329605102539062e+01,2.566778361797332764e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.225640416145324707e-01,6.539317369461059570e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.225640416145324707e-01,6.539317369461059570e-01,9.902000427246093750e+00,8.560000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.227677917480468750e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.365473806858062744e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.365473806858062744e-01,6.632862091064453125e-01,9.788000106811523438e+00,8.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.853713607788085938e+01,2.235727310180664062e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.262648791074752808e-01,6.608423590660095215e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.262648791074752808e-01,6.608423590660095215e-01,1.018000030517578125e+01,9.500000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.108024215698242188e+01,2.868367135524749756e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217055261135101318e-01,6.476248502731323242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217055261135101318e-01,6.476248502731323242e-01,9.479999542236328125e+00,8.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.764757537841796875e+01,2.831422984600067139e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.162611782550811768e-01,6.487039327621459961e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.162611782550811768e-01,6.487039327621459961e-01,9.829999923706054688e+00,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.265141296386718750e+01,2.100478410720825195e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.312267720699310303e-01,6.645063161849975586e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.312267720699310303e-01,6.645063161849975586e-01,9.842000007629394531e+00,9.359999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.038995742797851562e+01,2.339834868907928467e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.191452533006668091e-01,6.579896807670593262e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.191452533006668091e-01,6.579896807670593262e-01,9.736000061035156250e+00,8.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.707944488525390625e+01,2.121633440256118774e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.265344411134719849e-01,6.654746532440185547e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.265344411134719849e-01,6.654746532440185547e-01,9.694000244140625000e+00,8.640000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.667361450195312500e+01,2.469721287488937378e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.167516350746154785e-01,6.538836956024169922e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.167516350746154785e-01,6.538836956024169922e-01,9.850000381469726562e+00,8.479999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.325897979736328125e+01,4.381219148635864258e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.130808234214782715e-01,6.169734001159667969e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.130808234214782715e-01,6.169734001159667969e-01,9.973999977111816406e+00,8.920000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.999436569213867188e+01,3.413251042366027832e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.128707170486450195e-01,6.366482377052307129e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.128707170486450195e-01,6.366482377052307129e-01,9.649999618530273438e+00,9.119999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.305630111694335938e+01,2.419941872358322144e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.140263766050338745e-01,6.556601524353027344e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.140263766050338745e-01,6.556601524353027344e-01,1.016600036621093750e+01,8.659999847412109375e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.376440811157226562e+01,2.427519112825393677e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.149817049503326416e-01,6.551238298416137695e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.149817049503326416e-01,6.551238298416137695e-01,9.579999923706054688e+00,8.500000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.138797378540039062e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.332982718944549561e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.332982718944549561e-01,6.639317870140075684e-01,9.241999626159667969e+00,8.359999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.694773101806640625e+01,2.137953639030456543e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.481256425380706787e-01,6.644178628921508789e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.481256425380706787e-01,6.644178628921508789e-01,9.357999801635742188e+00,8.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.505596542358398438e+01,2.319835722446441650e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.258888781070709229e-01,6.562188267707824707e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.258888781070709229e-01,6.562188267707824707e-01,9.409999847412109375e+00,8.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.198563385009765625e+01,2.256364226341247559e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.231293618679046631e-01,6.599096655845642090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.231293618679046631e-01,6.599096655845642090e-01,9.461999893188476562e+00,8.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.818179702758789062e+01,2.155603468418121338e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.200756222009658813e-01,6.625891327857971191e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.200756222009658813e-01,6.625891327857971191e-01,9.319999694824218750e+00,8.560000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.122346818447113037e-01,4.143343353271484375e+01,2.249946892261505127e-01,9.736213684082031250e-01,7.379717230796813965e-01,2.209781706333160400e-01,6.594504714012145996e-01,9.736213684082031250e-01,7.379717230796813965e-01,2.209781706333160400e-01,6.594504714012145996e-01,9.413999557495117188e+00,9.100000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.065703964233398438e+01,2.808844149112701416e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.141190171241760254e-01,6.465340256690979004e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.141190171241760254e-01,6.465340256690979004e-01,9.390000343322753906e+00,8.380000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.335859298706054688e+01,3.848057091236114502e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.141371518373489380e-01,6.341534852981567383e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.141371518373489380e-01,6.341534852981567383e-01,9.685999870300292969e+00,9.039999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.794895231723785400e-02,3.574670410156250000e+01,2.081255465745925903e-01,9.736213684082031250e-01,7.881169319152832031e-01,2.247457355260848999e-01,6.657828688621520996e-01,9.736213684082031250e-01,7.881169319152832031e-01,2.247457355260848999e-01,6.657828688621520996e-01,9.512000083923339844e+00,9.399999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.037160949707031250e+02,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.208472490310668945e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.208472490310668945e-01,6.639317870140075684e-01,9.732000350952148438e+00,8.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.267677688598632812e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.307679951190948486e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.307679951190948486e-01,6.639317870140075684e-01,1.008399963378906250e+01,8.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.848565292358398438e+01,2.379508912563323975e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.198442518711090088e-01,6.550356745719909668e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.198442518711090088e-01,6.550356745719909668e-01,1.066199970245361328e+01,9.399999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.524240112304687500e+01,2.245182394981384277e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.189877182245254517e-01,6.585828661918640137e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.189877182245254517e-01,6.585828661918640137e-01,1.101399993896484375e+01,8.659999847412109375e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,4.014115905761718750e+01,2.107749432325363159e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.132317870855331421e-01,6.680222749710083008e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.132317870855331421e-01,6.680222749710083008e-01,1.097799968719482422e+01,9.399999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.252666778564453125e+02,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.241632938385009766e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.241632938385009766e-01,6.642546057701110840e-01,1.211800003051757812e+01,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.276988983154296875e+01,3.710159957408905029e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.061811536550521851e-01,6.339227557182312012e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.061811536550521851e-01,6.339227557182312012e-01,1.243400001525878906e+01,9.920000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.450718688964843750e+01,4.435571730136871338e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.072250992059707642e-01,6.249192357063293457e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.072250992059707642e-01,6.249192357063293457e-01,1.251000022888183594e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.013812255859375000e+02,6.267127394676208496e-01,9.736213684082031250e-01,6.752364635467529297e-01,2.028417587280273438e-01,6.008774042129516602e-01,9.736213684082031250e-01,6.752364635467529297e-01,2.028417587280273438e-01,6.008774042129516602e-01,1.223600006103515625e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.768882369995117188e+01,6.109209060668945312e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.058824896812438965e-01,5.945203304290771484e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.058824896812438965e-01,5.945203304290771484e-01,1.230799961090087891e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.958287429809570312e+01,2.463722974061965942e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.225888967514038086e-01,6.553875207901000977e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.225888967514038086e-01,6.553875207901000977e-01,1.121800041198730469e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.163930892944335938e+01,2.346899658441543579e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.189619839191436768e-01,6.631194949150085449e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.189619839191436768e-01,6.631194949150085449e-01,1.122000026702880859e+01,9.340000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.669893646240234375e+02,2.133321911096572876e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.240232527256011963e-01,6.625381112098693848e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.240232527256011963e-01,6.625381112098693848e-01,1.043799972534179688e+01,8.979999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.617459487915039062e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.400601804256439209e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.400601804256439209e-01,6.639317870140075684e-01,1.059599971771240234e+01,9.680000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.949118423461914062e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.366945892572402954e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.366945892572402954e-01,6.639317870140075684e-01,1.078999996185302734e+01,8.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.460013961791992188e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.376110106706619263e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.376110106706619263e-01,6.639317870140075684e-01,1.077999973297119141e+01,9.220000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.297120285034179688e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.345706075429916382e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.345706075429916382e-01,6.639317870140075684e-01,1.139799976348876953e+01,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.671332359313964844e+01,2.151706963777542114e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.337152659893035889e-01,6.627225875854492188e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.337152659893035889e-01,6.627225875854492188e-01,1.133800029754638672e+01,8.079999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.057944679260253906e+01,2.834298908710479736e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.228190004825592041e-01,6.468702554702758789e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.228190004825592041e-01,6.468702554702758789e-01,1.150399971008300781e+01,8.840000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.347946929931640625e+01,2.315052151679992676e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.288272827863693237e-01,6.606606245040893555e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.288272827863693237e-01,6.606606245040893555e-01,1.161400032043457031e+01,9.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.058336257934570312e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.389474064111709595e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.389474064111709595e-01,6.636090278625488281e-01,1.180000019073486328e+01,8.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.627320861816406250e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.364206612110137939e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.364206612110137939e-01,6.642546057701110840e-01,1.201000022888183594e+01,9.359999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.921862411499023438e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.378061711788177490e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.378061711788177490e-01,6.642546057701110840e-01,1.215799999237060547e+01,9.520000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.560356903076171875e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.314893007278442383e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.314893007278442383e-01,6.632862091064453125e-01,1.273400020599365234e+01,9.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.284693527221679688e+01,2.487791627645492554e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.246595919132232666e-01,6.551796197891235352e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.246595919132232666e-01,6.551796197891235352e-01,1.220600032806396484e+01,9.460000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.419303512573242188e+01,3.194218873977661133e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.193453907966613770e-01,6.402034759521484375e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.193453907966613770e-01,6.402034759521484375e-01,1.339000034332275391e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.251045608520507812e+01,2.679644227027893066e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.219412028789520264e-01,6.519330739974975586e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.219412028789520264e-01,6.519330739974975586e-01,1.356599998474121094e+01,1.065999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.477986145019531250e+01,4.137620627880096436e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154933363199234009e-01,6.209825873374938965e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154933363199234009e-01,6.209825873374938965e-01,1.372999954223632812e+01,1.369999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.306505966186523438e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.267027646303176880e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.267027646303176880e-01,6.632862091064453125e-01,1.322399997711181641e+01,9.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.968890136718750000e+03,2.158758640289306641e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276445925235748291e-01,6.630454063415527344e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276445925235748291e-01,6.630454063415527344e-01,1.326799964904785156e+01,1.031999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.680718231201171875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253325432538986206e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253325432538986206e-01,6.636090278625488281e-01,1.387800025939941406e+01,1.015999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.188378143310546875e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276087105274200439e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276087105274200439e-01,6.639317870140075684e-01,1.387800025939941406e+01,1.034000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.988973999023437500e+01,4.366439580917358398e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.093711495399475098e-01,6.232602596282958984e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.093711495399475098e-01,6.232602596282958984e-01,1.472399997711181641e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.905890274047851562e+01,3.542239964008331299e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.169906347990036011e-01,6.327409148216247559e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.169906347990036011e-01,6.327409148216247559e-01,1.477600002288818359e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.201056671142578125e+01,2.411721199750900269e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.261405289173126221e-01,6.557406783103942871e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.261405289173126221e-01,6.557406783103942871e-01,1.362399959564208984e+01,1.043999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.117370986938476562e+01,3.105564117431640625e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.122279852628707886e-01,6.432124376296997070e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.122279852628707886e-01,6.432124376296997070e-01,1.452000045776367188e+01,1.019999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.549798965454101562e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226599454879760742e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226599454879760742e-01,6.639317870140075684e-01,1.277799987792968750e+01,9.640000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.673678588867187500e+01,2.171485424041748047e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253291159868240356e-01,6.619347333908081055e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253291159868240356e-01,6.619347333908081055e-01,1.230200004577636719e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.266582489013671875e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.215409874916076660e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.215409874916076660e-01,6.618710756301879883e-01,1.140400028228759766e+01,9.600000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.385354232788085938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.397406697273254395e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.397406697273254395e-01,6.636090278625488281e-01,1.097599983215332031e+01,9.340000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.892536163330078125e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.285860925912857056e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.285860925912857056e-01,6.639317870140075684e-01,1.158399963378906250e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.202933883666992188e+01,2.391928732395172119e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.182833254337310791e-01,6.553491353988647461e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.182833254337310791e-01,6.553491353988647461e-01,1.132800006866455078e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.110236740112304688e+01,2.203496545553207397e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.226240783929824829e-01,6.599839925765991211e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.226240783929824829e-01,6.599839925765991211e-01,1.144200038909912109e+01,8.859999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.889514541625976562e+01,2.149035632610321045e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.232294529676437378e-01,6.630628108978271484e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.232294529676437378e-01,6.630628108978271484e-01,1.169600009918212891e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.612156677246093750e+01,5.510362386703491211e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.089471369981765747e-01,6.099427938461303711e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.089471369981765747e-01,6.099427938461303711e-01,1.210599994659423828e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.744219970703125000e+01,2.202095538377761841e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.184327542781829834e-01,6.606436371803283691e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.184327542781829834e-01,6.606436371803283691e-01,1.152600002288818359e+01,9.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.192514610290527344e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.288563847541809082e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.288563847541809082e-01,6.639317870140075684e-01,1.170199966430664062e+01,8.479999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.254650115966796875e+01,2.214379310607910156e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.184972912073135376e-01,6.599613428115844727e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.184972912073135376e-01,6.599613428115844727e-01,1.199600028991699219e+01,9.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.290733718872070312e+01,2.599951624870300293e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.148649841547012329e-01,6.519886851310729980e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.148649841547012329e-01,6.519886851310729980e-01,1.232800006866455078e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.541933441162109375e+01,3.124078512191772461e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.111419886350631714e-01,6.412684917449951172e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.111419886350631714e-01,6.412684917449951172e-01,1.270199966430664062e+01,9.279999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.844402313232421875e+01,9.485545754432678223e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.966331899166107178e-01,5.735158324241638184e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.966331899166107178e-01,5.735158324241638184e-01,1.248999977111816406e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.386789321899414062e+01,3.195016384124755859e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.118752151727676392e-01,6.409913897514343262e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.118752151727676392e-01,6.409913897514343262e-01,1.294600009918212891e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.777060699462890625e+01,2.202095538377761841e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.174951732158660889e-01,6.606436371803283691e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.174951732158660889e-01,6.606436371803283691e-01,1.239400005340576172e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.048653984069824219e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.268968373537063599e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.268968373537063599e-01,6.639317870140075684e-01,1.194400024414062500e+01,9.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.562242507934570312e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.332727611064910889e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.332727611064910889e-01,6.636090278625488281e-01,1.144999980926513672e+01,1.018000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.761628341674804688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.292798608541488647e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.292798608541488647e-01,6.632862091064453125e-01,1.204199981689453125e+01,8.659999847412109375e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.460451507568359375e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.319146245718002319e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.319146245718002319e-01,6.636090278625488281e-01,1.154399967193603516e+01,9.819999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.683192443847656250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.198174893856048584e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.198174893856048584e-01,6.636090278625488281e-01,1.294400024414062500e+01,9.579999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.490608978271484375e+01,2.875418663024902344e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.151539027690887451e-01,6.479476690292358398e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.151539027690887451e-01,6.479476690292358398e-01,1.222599983215332031e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.572290802001953125e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.274579554796218872e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.274579554796218872e-01,6.632862091064453125e-01,1.252799987792968750e+01,1.015999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.015344619750976562e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.243390381336212158e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.243390381336212158e-01,6.636090278625488281e-01,1.315400028228759766e+01,1.003999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.810345077514648438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226936668157577515e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226936668157577515e-01,6.636090278625488281e-01,1.442199993133544922e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.483067703247070312e+01,6.293835639953613281e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.054145336151123047e-01,6.016784310340881348e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.054145336151123047e-01,6.016784310340881348e-01,1.455000019073486328e+01,1.234000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.662493896484375000e+01,3.053877651691436768e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154673337936401367e-01,6.436712741851806641e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154673337936401367e-01,6.436712741851806641e-01,1.438199996948242188e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.610072326660156250e+01,4.099810123443603516e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.053701281547546387e-01,6.299684643745422363e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.053701281547546387e-01,6.299684643745422363e-01,1.512600040435791016e+01,1.350000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.743634033203125000e+01,8.571329712867736816e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.007388025522232056e-01,5.833585858345031738e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.007388025522232056e-01,5.833585858345031738e-01,1.386999988555908203e+01,1.177999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.533755493164062500e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.238319516181945801e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.238319516181945801e-01,6.632862091064453125e-01,1.379800033569335938e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.171157836914062500e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.236678451299667358e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.236678451299667358e-01,6.639317870140075684e-01,1.278800010681152344e+01,9.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.544726943969726562e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.243887633085250854e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.243887633085250854e-01,6.618710756301879883e-01,1.285599994659423828e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.823373413085937500e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.244584113359451294e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.244584113359451294e-01,6.639317870140075684e-01,1.302999973297119141e+01,9.479999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.101600646972656250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.195823788642883301e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.195823788642883301e-01,6.636090278625488281e-01,1.301599979400634766e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.997071075439453125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.289457470178604126e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.289457470178604126e-01,6.636090278625488281e-01,1.308399963378906250e+01,9.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.672438049316406250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.236666083335876465e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.236666083335876465e-01,6.636090278625488281e-01,1.301200008392333984e+01,1.031999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.605458068847656250e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.305700331926345825e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.305700331926345825e-01,6.632862091064453125e-01,1.392000007629394531e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.400145339965820312e+01,2.277303338050842285e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.126954644918441772e-01,6.580367088317871094e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.126954644918441772e-01,6.580367088317871094e-01,1.363799953460693359e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.300534439086914062e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.188794910907745361e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.188794910907745361e-01,6.642546057701110840e-01,1.506999969482421875e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.359673309326171875e+01,5.728361010551452637e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.046559154987335205e-01,6.116909384727478027e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.046559154987335205e-01,6.116909384727478027e-01,1.575199985504150391e+01,1.265999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.470723342895507812e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.202161550521850586e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.202161550521850586e-01,6.632862091064453125e-01,1.507999992370605469e+01,1.030000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,8.625162963867187500e+02,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.234263122081756592e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.234263122081756592e-01,6.636090278625488281e-01,1.527999973297119141e+01,9.520000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.016872024536132812e+01,7.574154734611511230e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.996835172176361084e-01,5.962568521499633789e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.996835172176361084e-01,5.962568521499633789e-01,1.626000022888183594e+01,1.381999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.559397277832031250e+02,1.377612352371215820e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.916380524635314941e-01,5.302467346191406250e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.916380524635314941e-01,5.302467346191406250e-01,1.581599998474121094e+01,1.247999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.065530395507812500e+01,6.476548314094543457e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.029094249010086060e-01,6.087922453880310059e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.029094249010086060e-01,6.087922453880310059e-01,1.475199985504150391e+01,1.097999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.052170181274414062e+02,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.261389046907424927e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.261389046907424927e-01,6.636090278625488281e-01,1.359000015258789062e+01,9.859999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.111117553710937500e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.314155995845794678e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.314155995845794678e-01,6.636090278625488281e-01,1.331200027465820312e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.975339508056640625e+01,3.551419675350189209e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.124875038862228394e-01,6.325415372848510742e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.124875038862228394e-01,6.325415372848510742e-01,1.231000041961669922e+01,1.084000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,2.976214790344238281e+01,2.074841707944869995e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.441416978836059570e-01,6.698157191276550293e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.441416978836059570e-01,6.698157191276550293e-01,1.153400039672851562e+01,9.380000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.723674011230468750e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.300212085247039795e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.300212085247039795e-01,6.632862091064453125e-01,1.157199954986572266e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,4.128490447998046875e+01,2.100478410720825195e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.310745269060134888e-01,6.645063161849975586e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.310745269060134888e-01,6.645063161849975586e-01,1.122799968719482422e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.919324302673339844e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.360020279884338379e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.360020279884338379e-01,6.632862091064453125e-01,1.144999980926513672e+01,9.020000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.599736404418945312e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.269091457128524780e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.269091457128524780e-01,6.632862091064453125e-01,1.127400016784667969e+01,9.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.898195266723632812e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.493368834257125854e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.493368834257125854e-01,6.632862091064453125e-01,1.117199993133544922e+01,9.399999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.701605606079101562e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.302718013525009155e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.302718013525009155e-01,6.632862091064453125e-01,1.209399986267089844e+01,9.579999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.713709259033203125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.221422791481018066e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.221422791481018066e-01,6.636090278625488281e-01,1.202000045776367188e+01,9.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.162663841247558594e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.464529573917388916e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.464529573917388916e-01,6.639317870140075684e-01,1.251000022888183594e+01,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.486822128295898438e+01,2.138069719076156616e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.185613214969635010e-01,6.645773649215698242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.185613214969635010e-01,6.645773649215698242e-01,1.289200019836425781e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.165862579345703125e+02,2.174104899168014526e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.220157384872436523e-01,6.621938347816467285e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.220157384872436523e-01,6.621938347816467285e-01,1.366199970245361328e+01,1.092000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.721169662475585938e+01,2.107530087232589722e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.346975952386856079e-01,6.648290753364562988e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.346975952386856079e-01,6.648290753364562988e-01,1.461800003051757812e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.375718307495117188e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.196474671363830566e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.196474671363830566e-01,6.639317870140075684e-01,1.493200016021728516e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.636522674560546875e+01,3.802810311317443848e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.047255784273147583e-01,6.330721378326416016e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.047255784273147583e-01,6.330721378326416016e-01,1.548600006103515625e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.313842391967773438e+01,1.018468856811523438e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.958391964435577393e-01,5.578582882881164551e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.958391964435577393e-01,5.578582882881164551e-01,1.623399925231933594e+01,1.339999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.642724227905273438e+01,3.907664418220520020e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.082922011613845825e-01,6.373689770698547363e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.082922011613845825e-01,6.373689770698547363e-01,1.553800010681152344e+01,1.111999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.055241012573242188e+01,2.263654768466949463e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.122476696968078613e-01,6.580139994621276855e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.122476696968078613e-01,6.580139994621276855e-01,1.489400005340576172e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.135676422119140625e+02,3.801748454570770264e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.110464572906494141e-01,6.358204483985900879e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.110464572906494141e-01,6.358204483985900879e-01,1.427799987792968750e+01,1.038000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.174280929565429688e+01,2.374575138092041016e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.204300314188003540e-01,6.577025651931762695e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.204300314188003540e-01,6.577025651931762695e-01,1.374600028991699219e+01,9.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.261254272460937500e+03,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.211844176054000854e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.211844176054000854e-01,6.639317870140075684e-01,1.264799976348876953e+01,9.359999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.316128784179687500e+03,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.268137484788894653e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.268137484788894653e-01,6.636090278625488281e-01,1.189200019836425781e+01,1.034000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.137835502624511719e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.253600358963012695e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.253600358963012695e-01,6.632862091064453125e-01,1.185200023651123047e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.663496780395507812e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.404448091983795166e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.404448091983795166e-01,6.636090278625488281e-01,1.140600013732910156e+01,9.460000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.418293762207031250e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.364367395639419556e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.364367395639419556e-01,6.639317870140075684e-01,1.107600021362304688e+01,1.057999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.018961715698242188e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.531255185604095459e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.531255185604095459e-01,6.636090278625488281e-01,1.117599964141845703e+01,9.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.825760269165039062e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.324473112821578979e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.324473112821578979e-01,6.632862091064453125e-01,1.145600032806396484e+01,8.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.256641769409179688e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.372019588947296143e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.372019588947296143e-01,6.636090278625488281e-01,1.126000022888183594e+01,9.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.621894454956054688e+01,2.141983956098556519e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226850092411041260e-01,6.627400517463684082e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226850092411041260e-01,6.627400517463684082e-01,1.168200016021728516e+01,9.600000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.068723297119140625e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.274955064058303833e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.274955064058303833e-01,6.632862091064453125e-01,1.130599975585937500e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.206261825561523438e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.274951487779617310e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.274951487779617310e-01,6.632862091064453125e-01,1.191600036621093750e+01,9.399999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.688612365722656250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.345476001501083374e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.345476001501083374e-01,6.636090278625488281e-01,1.188199996948242188e+01,9.239999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.807473754882812500e+01,2.431602030992507935e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.154005467891693115e-01,6.559337377548217773e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.154005467891693115e-01,6.559337377548217773e-01,1.261400032043457031e+01,1.131999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.260420410156250000e+03,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.393834441900253296e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.393834441900253296e-01,6.632862091064453125e-01,1.260000038146972656e+01,1.011999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.938156509399414062e+01,2.184822410345077515e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.169976681470870972e-01,6.611608266830444336e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.169976681470870972e-01,6.611608266830444336e-01,1.374800014495849609e+01,9.699999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.275999832153320312e+01,2.765895128250122070e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.075760215520858765e-01,6.491903066635131836e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.075760215520858765e-01,6.491903066635131836e-01,1.454599952697753906e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.342547225952148438e+01,5.239776968955993652e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.084645628929138184e-01,6.238733530044555664e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.084645628929138184e-01,6.238733530044555664e-01,1.415600013732910156e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.026791000366210938e+02,2.172039747238159180e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.183371782302856445e-01,6.616918444633483887e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.183371782302856445e-01,6.616918444633483887e-01,1.434200000762939453e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.261175918579101562e+01,5.726472735404968262e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.085241377353668213e-01,6.088610291481018066e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.085241377353668213e-01,6.088610291481018066e-01,1.441399955749511719e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.398797988891601562e+01,3.286560475826263428e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.160208225250244141e-01,6.399432420730590820e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.160208225250244141e-01,6.399432420730590820e-01,1.450800037384033203e+01,1.115999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.474561691284179688e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217209488153457642e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217209488153457642e-01,6.618710756301879883e-01,1.322200012207031250e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.114332771301269531e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.261378914117813110e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.261378914117813110e-01,6.632862091064453125e-01,1.226399993896484375e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.335856246948242188e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.307776510715484619e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.307776510715484619e-01,6.636090278625488281e-01,1.256200027465820312e+01,9.340000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.737911224365234375e+01,2.149035632610321045e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.177564948797225952e-01,6.630628108978271484e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.177564948797225952e-01,6.630628108978271484e-01,1.256000041961669922e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.653856277465820312e+01,2.130901962518692017e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.354630678892135620e-01,6.640950441360473633e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.354630678892135620e-01,6.640950441360473633e-01,1.217000007629394531e+01,1.115999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.982163238525390625e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323895394802093506e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323895394802093506e-01,6.636090278625488281e-01,1.272999954223632812e+01,1.026000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.975783920288085938e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.326674312353134155e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.326674312353134155e-01,6.639317870140075684e-01,1.253600025177001953e+01,1.043999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.653907012939453125e+01,2.160001546144485474e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.256283462047576904e-01,6.615482568740844727e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.256283462047576904e-01,6.615482568740844727e-01,1.324800014495849609e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.202365112304687500e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.297989875078201294e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.297989875078201294e-01,6.636090278625488281e-01,1.291399955749511719e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.859024429321289062e+01,2.827164530754089355e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.147491425275802612e-01,6.478789448738098145e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.147491425275802612e-01,6.478789448738098145e-01,1.390400028228759766e+01,1.011999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.190426635742187500e+01,2.999806106090545654e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.165889292955398560e-01,6.430319547653198242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.165889292955398560e-01,6.430319547653198242e-01,1.404599952697753906e+01,1.081999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.054718780517578125e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.205542176961898804e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.205542176961898804e-01,6.632862091064453125e-01,1.357800006866455078e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.091934204101562500e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.290288209915161133e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.290288209915161133e-01,6.632862091064453125e-01,1.402000045776367188e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.532696151733398438e+01,2.222178280353546143e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.227391302585601807e-01,6.599538922309875488e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.227391302585601807e-01,6.599538922309875488e-01,1.352400016784667969e+01,9.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.044567489624023438e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.267009466886520386e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.267009466886520386e-01,6.639317870140075684e-01,1.460000038146972656e+01,9.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.621449279785156250e+01,4.940110743045806885e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.111533880233764648e-01,6.277715563774108887e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.111533880233764648e-01,6.277715563774108887e-01,1.454599952697753906e+01,1.085999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.886753463745117188e+01,5.891902446746826172e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.021527439355850220e-01,6.157743930816650391e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.021527439355850220e-01,6.157743930816650391e-01,1.452799987792968750e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.014953613281250000e+01,2.665186226367950439e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.172060161828994751e-01,6.497401595115661621e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.172060161828994751e-01,6.497401595115661621e-01,1.346399974822998047e+01,9.239999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.047081832885742188e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.310360372066497803e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.310360372066497803e-01,6.632862091064453125e-01,1.315200042724609375e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.203425979614257812e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351849824190139771e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351849824190139771e-01,6.636090278625488281e-01,1.316600036621093750e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.275272369384765625e+01,2.565928697586059570e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.208712249994277954e-01,6.523865461349487305e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.208712249994277954e-01,6.523865461349487305e-01,1.308199977874755859e+01,9.180000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.592863649129867554e-01,2.684783363342285156e+01,2.099522948265075684e-01,9.736213684082031250e-01,7.183996438980102539e-01,2.525621354579925537e-01,6.643884778022766113e-01,9.736213684082031250e-01,7.183996438980102539e-01,2.525621354579925537e-01,6.643884778022766113e-01,1.232800006866455078e+01,9.319999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.159950828552246094e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.361585348844528198e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.361585348844528198e-01,6.636090278625488281e-01,1.252000045776367188e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.766532897949218750e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.444960474967956543e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.444960474967956543e-01,6.636090278625488281e-01,1.226399993896484375e+01,9.140000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.238303588867187500e+03,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351242452859878540e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351242452859878540e-01,6.639317870140075684e-01,1.261600017547607422e+01,1.060000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.107242965698242188e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.311537414789199829e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.311537414789199829e-01,6.636090278625488281e-01,1.270800018310546875e+01,9.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.889752960205078125e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.299416959285736084e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.299416959285736084e-01,6.632862091064453125e-01,1.280799961090087891e+01,9.460000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.957022476196289062e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.290144264698028564e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.290144264698028564e-01,6.632862091064453125e-01,1.301000022888183594e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.534288024902343750e+01,2.316331565380096436e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.149108797311782837e-01,6.572911143302917480e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.149108797311782837e-01,6.572911143302917480e-01,1.373200035095214844e+01,9.680000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.075347595214843750e+02,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.284584492444992065e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.284584492444992065e-01,6.636090278625488281e-01,1.345600032806396484e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.238388824462890625e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.328557223081588745e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.328557223081588745e-01,6.632862091064453125e-01,1.403199958801269531e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.559915924072265625e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.238886654376983643e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.238886654376983643e-01,6.639317870140075684e-01,1.427000045776367188e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.405406188964843750e+01,4.527703225612640381e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.093400061130523682e-01,6.277462840080261230e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.093400061130523682e-01,6.277462840080261230e-01,1.491199970245361328e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.475368118286132812e+01,3.187250494956970215e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.159238457679748535e-01,6.385263800621032715e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.159238457679748535e-01,6.385263800621032715e-01,1.459000015258789062e+01,1.296000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.870475387573242188e+01,3.228998184204101562e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.137988805770874023e-01,6.404811739921569824e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.137988805770874023e-01,6.404811739921569824e-01,1.493799972534179688e+01,1.119999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.168118667602539062e+01,2.160001546144485474e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.173537015914916992e-01,6.615482568740844727e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.173537015914916992e-01,6.615482568740844727e-01,1.475399971008300781e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.062267112731933594e+01,2.123850286006927490e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.214053422212600708e-01,6.637722849845886230e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.214053422212600708e-01,6.637722849845886230e-01,1.397000026702880859e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.807804870605468750e+01,2.179091423749923706e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.149773687124252319e-01,6.620146036148071289e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.149773687124252319e-01,6.620146036148071289e-01,1.413599967956542969e+01,9.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.482989349365234375e+02,2.287276387214660645e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.138708531856536865e-01,6.576782464981079102e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.138708531856536865e-01,6.576782464981079102e-01,1.468999958038330078e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.533213424682617188e+01,2.067790031433105469e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.218826860189437866e-01,6.694929599761962891e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.218826860189437866e-01,6.694929599761962891e-01,1.423999977111816406e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.929619598388671875e+01,2.160001546144485474e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.197381854057312012e-01,6.615482568740844727e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.197381854057312012e-01,6.615482568740844727e-01,1.389599990844726562e+01,1.006000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.232881927490234375e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154343277215957642e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154343277215957642e-01,6.636090278625488281e-01,1.454599952697753906e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.531617736816406250e+01,6.774784922599792480e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.019203007221221924e-01,6.072746515274047852e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.019203007221221924e-01,6.072746515274047852e-01,1.452400016784667969e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.206414031982421875e+01,4.387397170066833496e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.123429626226425171e-01,6.285719871520996094e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.123429626226425171e-01,6.285719871520996094e-01,1.448400020599365234e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.357556152343750000e+01,5.335578322410583496e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.068588882684707642e-01,6.222075819969177246e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.068588882684707642e-01,6.222075819969177246e-01,1.347000026702880859e+01,1.064000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.392278289794921875e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.293006926774978638e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.293006926774978638e-01,6.639317870140075684e-01,1.360599994659423828e+01,1.002000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.146284103393554688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.372291386127471924e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.372291386127471924e-01,6.632862091064453125e-01,1.321599960327148438e+01,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.930694580078125000e+01,2.132866680622100830e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323472499847412109e-01,6.638480424880981445e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323472499847412109e-01,6.638480424880981445e-01,1.281599998474121094e+01,1.039999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.029021644592285156e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.395323663949966431e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.395323663949966431e-01,6.632862091064453125e-01,1.262600040435791016e+01,1.043999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.627141571044921875e+01,3.651331961154937744e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.160197347402572632e-01,6.396837234497070312e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.160197347402572632e-01,6.396837234497070312e-01,1.317800045013427734e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.921248435974121094e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.425014674663543701e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.425014674663543701e-01,6.639317870140075684e-01,1.175399971008300781e+01,1.011999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.942085838317871094e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.465779930353164673e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.465779930353164673e-01,6.639317870140075684e-01,1.114599990844726562e+01,8.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.227982711791992188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.311570048332214355e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.311570048332214355e-01,6.632862091064453125e-01,1.231000041961669922e+01,9.819999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.059630966186523438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.381723672151565552e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.381723672151565552e-01,6.636090278625488281e-01,1.176799964904785156e+01,8.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.234244155883789062e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.346557974815368652e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.346557974815368652e-01,6.632862091064453125e-01,1.202000045776367188e+01,9.500000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.769994735717773438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.537642419338226318e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.537642419338226318e-01,6.636090278625488281e-01,1.194999980926513672e+01,9.920000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.242390441894531250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.410286515951156616e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.410286515951156616e-01,6.636090278625488281e-01,1.265400028228759766e+01,9.819999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.178137969970703125e+01,2.538511455059051514e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.182264178991317749e-01,6.540834903717041016e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.182264178991317749e-01,6.540834903717041016e-01,1.288399982452392578e+01,9.979999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.692485809326171875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.411123216152191162e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.411123216152191162e-01,6.636090278625488281e-01,1.302200031280517578e+01,1.050000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.390943527221679688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.259659618139266968e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.259659618139266968e-01,6.632862091064453125e-01,1.349800014495849609e+01,9.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.335910034179687500e+02,2.115382552146911621e-01,9.736213684082031250e-01,6.702793240547180176e-01,2.291993349790573120e-01,6.634261012077331543e-01,9.736213684082031250e-01,6.702793240547180176e-01,2.291993349790573120e-01,6.634261012077331543e-01,1.372399997711181641e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.769043350219726562e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.421691864728927612e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.421691864728927612e-01,6.632862091064453125e-01,1.425599956512451172e+01,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.006891822814941406e+01,2.894297242164611816e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.165316790342330933e-01,6.472880840301513672e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.165316790342330933e-01,6.472880840301513672e-01,1.471000003814697266e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.681475830078125000e+01,2.202095538377761841e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.169798165559768677e-01,6.606436371803283691e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.169798165559768677e-01,6.606436371803283691e-01,1.405399990081787109e+01,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,4.343224716186523438e+01,2.067790031433105469e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.160043865442276001e-01,6.694929599761962891e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.160043865442276001e-01,6.694929599761962891e-01,1.465600013732910156e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.891648101806640625e+01,2.144655287265777588e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.171756774187088013e-01,6.623998284339904785e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.171756774187088013e-01,6.623998284339904785e-01,1.475399971008300781e+01,9.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.326378631591796875e+01,2.193440198898315430e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.230273932218551636e-01,6.618343591690063477e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.230273932218551636e-01,6.618343591690063477e-01,1.513199996948242188e+01,1.180000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.753878631591796875e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.162296622991561890e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.162296622991561890e-01,6.632862091064453125e-01,1.488799953460693359e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.146746063232421875e+01,3.366358876228332520e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.137014120817184448e-01,6.347280740737915039e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.137014120817184448e-01,6.347280740737915039e-01,1.519999980926513672e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.766137313842773438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.206259518861770630e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.206259518861770630e-01,6.636090278625488281e-01,1.583199977874755859e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.133776092529296875e+01,2.930243313312530518e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.132310420274734497e-01,6.455767750740051270e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.132310420274734497e-01,6.455767750740051270e-01,1.636599922180175781e+01,1.197999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.321352386474609375e+02,2.549236416816711426e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.161488085985183716e-01,6.530181169509887695e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.161488085985183716e-01,6.530181169509887695e-01,1.572999954223632812e+01,1.185999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.429476165771484375e+01,2.378489375114440918e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.155757993459701538e-01,6.558652520179748535e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.155757993459701538e-01,6.558652520179748535e-01,1.522200012207031250e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.319591140747070312e+01,2.541852295398712158e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.214006334543228149e-01,6.520993709564208984e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.214006334543228149e-01,6.520993709564208984e-01,1.497000026702880859e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.609513473510742188e+01,3.022858500480651855e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.125085294246673584e-01,6.446757316589355469e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.125085294246673584e-01,6.446757316589355469e-01,1.462399959564208984e+01,1.089999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.516598892211914062e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.505415081977844238e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.505415081977844238e-01,6.636090278625488281e-01,1.338199996948242188e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.545054018497467041e-01,3.334192657470703125e+01,2.098566740751266479e-01,9.736213684082031250e-01,7.282789945602416992e-01,2.272171676158905029e-01,6.645860671997070312e-01,9.736213684082031250e-01,7.282789945602416992e-01,2.272171676158905029e-01,6.645860671997070312e-01,1.263000011444091797e+01,9.100000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.246741485595703125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.228350937366485596e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.228350937366485596e-01,6.636090278625488281e-01,1.224800014495849609e+01,9.500000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.909216499328613281e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.444323152303695679e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.444323152303695679e-01,6.636090278625488281e-01,1.265400028228759766e+01,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.717495727539062500e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.360637784004211426e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.360637784004211426e-01,6.636090278625488281e-01,1.241800022125244141e+01,9.699999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.858909225463867188e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.348838001489639282e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.348838001489639282e-01,6.636090278625488281e-01,1.261200046539306641e+01,1.092000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.157501220703125000e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.388358265161514282e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.388358265161514282e-01,6.632862091064453125e-01,1.270199966430664062e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.243603515625000000e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.289424538612365723e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.289424538612365723e-01,6.639317870140075684e-01,1.331400012969970703e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.497505187988281250e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.193929851055145264e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.193929851055145264e-01,6.618710756301879883e-01,1.321800041198730469e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.942021942138671875e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.257663458585739136e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.257663458585739136e-01,6.632862091064453125e-01,1.336200046539306641e+01,9.079999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.052163314819335938e+01,2.202095538377761841e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.193263173103332520e-01,6.606436371803283691e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.193263173103332520e-01,6.606436371803283691e-01,1.401000022888183594e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.147672080993652344e+01,5.535084009170532227e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.127848118543624878e-01,6.194905042648315430e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.127848118543624878e-01,6.194905042648315430e-01,1.356400012969970703e+01,1.080000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.580943679809570312e+01,5.165843367576599121e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.111099511384963989e-01,6.251808404922485352e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.111099511384963989e-01,6.251808404922485352e-01,1.379199981689453125e+01,1.068000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.413097763061523438e+01,2.139918804168701172e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.221471071243286133e-01,6.622380018234252930e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.221471071243286133e-01,6.622380018234252930e-01,1.395199966430664062e+01,9.359999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.908108520507812500e+01,2.463722974061965942e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.157057225704193115e-01,6.553875207901000977e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.157057225704193115e-01,6.553875207901000977e-01,1.377799987792968750e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.154896163940429688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.323015332221984863e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.323015332221984863e-01,6.632862091064453125e-01,1.354399967193603516e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.897783279418945312e+01,2.117928564548492432e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.146939784288406372e-01,6.677549481391906738e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.146939784288406372e-01,6.677549481391906738e-01,1.350399971008300781e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.264037231445312500e+03,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.235427051782608032e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.235427051782608032e-01,6.632862091064453125e-01,1.393000030517578125e+01,9.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.991582870483398438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.309873551130294800e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.309873551130294800e-01,6.636090278625488281e-01,1.303400039672851562e+01,1.006000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.040541267395019531e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.395504266023635864e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.395504266023635864e-01,6.636090278625488281e-01,1.288599967956542969e+01,9.079999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.728783798217773438e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.223478257656097412e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.223478257656097412e-01,6.632862091064453125e-01,1.373799991607666016e+01,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.587386703491210938e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.278485298156738281e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.278485298156738281e-01,6.632862091064453125e-01,1.394799995422363281e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.938497352600097656e+01,2.200983315706253052e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.221385389566421509e-01,6.615106463432312012e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.221385389566421509e-01,6.615106463432312012e-01,1.353800010681152344e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.239414215087890625e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.414745390415191650e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.414745390415191650e-01,6.636090278625488281e-01,1.414599990844726562e+01,1.019999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.685706329345703125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.236813157796859741e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.236813157796859741e-01,6.636090278625488281e-01,1.416399955749511719e+01,9.500000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.413903045654296875e+01,3.023500144481658936e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.146685272455215454e-01,6.439762115478515625e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.146685272455215454e-01,6.439762115478515625e-01,1.450399971008300781e+01,1.203999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.550479736328125000e+02,4.465293586254119873e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.155678123235702515e-01,6.340911984443664551e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.155678123235702515e-01,6.340911984443664551e-01,1.512600040435791016e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.000155067443847656e+01,4.996144473552703857e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.136725485324859619e-01,6.298429369926452637e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.136725485324859619e-01,6.298429369926452637e-01,1.543599987030029297e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.363901519775390625e+01,2.188814431428909302e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.222330868244171143e-01,6.619971990585327148e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.222330868244171143e-01,6.619971990585327148e-01,1.544400024414062500e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.370462417602539062e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.251923978328704834e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.251923978328704834e-01,6.636090278625488281e-01,1.405799961090087891e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.695685195922851562e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.352366149425506592e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.352366149425506592e-01,6.639317870140075684e-01,1.377799987792968750e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.888137435913085938e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.377375811338424683e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.377375811338424683e-01,6.639317870140075684e-01,1.345400047302246094e+01,9.880000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.031566238403320312e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.242841273546218872e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.242841273546218872e-01,6.632862091064453125e-01,1.332400035858154297e+01,9.439999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.201153945922851562e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.426521182060241699e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.426521182060241699e-01,6.636090278625488281e-01,1.318799972534179688e+01,1.076000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.234034347534179688e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.374147325754165649e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.374147325754165649e-01,6.636090278625488281e-01,1.299600028991699219e+01,1.018000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.066499633789062500e+02,2.557883560657501221e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.171735018491744995e-01,6.541823148727416992e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.171735018491744995e-01,6.541823148727416992e-01,1.364000034332275391e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.339391326904296875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248308956623077393e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248308956623077393e-01,6.636090278625488281e-01,1.387800025939941406e+01,1.080000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.171138954162597656e+01,2.164988070726394653e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.201899290084838867e-01,6.613690257072448730e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.201899290084838867e-01,6.613690257072448730e-01,1.375399971008300781e+01,9.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.694030380249023438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351015359163284302e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351015359163284302e-01,6.636090278625488281e-01,1.373200035095214844e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.299346923828125000e+01,2.192122340202331543e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.213065326213836670e-01,6.610020995140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.213065326213836670e-01,6.610020995140075684e-01,1.491399955749511719e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.186298942565917969e+01,2.342454195022583008e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170762568712234497e-01,6.582487821578979492e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170762568712234497e-01,6.582487821578979492e-01,1.439400005340576172e+01,1.189999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.129808425903320312e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.258345186710357666e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.258345186710357666e-01,6.636090278625488281e-01,1.468200016021728516e+01,9.659999847412109375e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.480126953125000000e+01,2.893919944763183594e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.159835696220397949e-01,6.487545967102050781e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.159835696220397949e-01,6.487545967102050781e-01,1.517000007629394531e+01,1.038000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.032601737976074219e+01,2.124477922916412354e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.259147763252258301e-01,6.637284159660339355e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.259147763252258301e-01,6.637284159660339355e-01,1.485000038146972656e+01,1.207999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.425640106201171875e+01,2.204160690307617188e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.223748862743377686e-01,6.611456274986267090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.223748862743377686e-01,6.611456274986267090e-01,1.385000038146972656e+01,1.015999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.122341346740722656e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.276556789875030518e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.276556789875030518e-01,6.632862091064453125e-01,1.440600013732910156e+01,9.439999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.047213668823242188e+02,2.133321911096572876e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.186119854450225830e-01,6.625381112098693848e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.186119854450225830e-01,6.625381112098693848e-01,1.496199989318847656e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.434936523437500000e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.296693623065948486e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.296693623065948486e-01,6.636090278625488281e-01,1.511600017547607422e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.407563400268554688e+01,2.298295050859451294e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.181829214096069336e-01,6.586514115333557129e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.181829214096069336e-01,6.586514115333557129e-01,1.471399974822998047e+01,1.068000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.510125350952148438e+01,2.757913768291473389e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.125480026006698608e-01,6.498425006866455078e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.125480026006698608e-01,6.498425006866455078e-01,1.454399967193603516e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.226848220825195312e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.312159389257431030e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.312159389257431030e-01,6.636090278625488281e-01,1.428199958801269531e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.958399009704589844e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.296037673950195312e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.296037673950195312e-01,6.639317870140075684e-01,1.475399971008300781e+01,1.097999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.524357223510742188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.402896732091903687e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.402896732091903687e-01,6.632862091064453125e-01,1.489799976348876953e+01,1.119999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.077701950073242188e+01,2.456671297550201416e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.204026281833648682e-01,6.550647616386413574e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.204026281833648682e-01,6.550647616386413574e-01,1.442000007629394531e+01,9.380000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.355839538574218750e+01,3.566800057888031006e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.157811671495437622e-01,6.492983102798461914e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.157811671495437622e-01,6.492983102798461914e-01,1.492000007629394531e+01,1.081999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.352650833129882812e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.293917685747146606e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.293917685747146606e-01,6.636090278625488281e-01,1.443200016021728516e+01,9.640000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.882650375366210938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.356228977441787720e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.356228977441787720e-01,6.636090278625488281e-01,1.395400047302246094e+01,9.020000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.988092803955078125e+01,2.232151329517364502e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217343002557754517e-01,6.595954298973083496e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217343002557754517e-01,6.595954298973083496e-01,1.502999973297119141e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.258462142944335938e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.304622083902359009e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.304622083902359009e-01,6.632862091064453125e-01,1.360799980163574219e+01,9.420000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.002026748657226562e+01,3.824509978294372559e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.106477171182632446e-01,6.374053955078125000e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.106477171182632446e-01,6.374053955078125000e-01,1.456999969482421875e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.365628433227539062e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.338901758193969727e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.338901758193969727e-01,6.639317870140075684e-01,1.411800003051757812e+01,9.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.006987380981445312e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.436094582080841064e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.436094582080841064e-01,6.639317870140075684e-01,1.339799976348876953e+01,8.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.830874252319335938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.355948686599731445e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.355948686599731445e-01,6.636090278625488281e-01,1.295199966430664062e+01,1.019999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.879594421386718750e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.380106002092361450e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.380106002092361450e-01,6.639317870140075684e-01,1.293000030517578125e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.656292724609375000e+01,2.172039747238159180e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.215201854705810547e-01,6.616918444633483887e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.215201854705810547e-01,6.616918444633483887e-01,1.389799976348876953e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.243973922729492188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.358070015907287598e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.358070015907287598e-01,6.632862091064453125e-01,1.361600017547607422e+01,1.142000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.706755447387695312e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.263547331094741821e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.263547331094741821e-01,6.632862091064453125e-01,1.442000007629394531e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.448987579345703125e+01,4.899349808692932129e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.111040204763412476e-01,6.262310743331909180e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.111040204763412476e-01,6.262310743331909180e-01,1.414799976348876953e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.976168632507324219e+01,3.654227554798126221e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.191770672798156738e-01,6.420221924781799316e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.191770672798156738e-01,6.420221924781799316e-01,1.389400005340576172e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.034872245788574219e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.478274405002593994e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.478274405002593994e-01,6.632862091064453125e-01,1.320800018310546875e+01,9.399999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.920872306823730469e+01,2.296189069747924805e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.190767973661422729e-01,6.580370068550109863e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.190767973661422729e-01,6.580370068550109863e-01,1.348200035095214844e+01,8.859999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.856081199645996094e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.354877293109893799e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.354877293109893799e-01,6.632862091064453125e-01,1.288000011444091797e+01,9.239999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.054527740478515625e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.423803508281707764e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.423803508281707764e-01,6.632862091064453125e-01,1.281999969482421875e+01,1.123999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.164463806152343750e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.435976564884185791e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.435976564884185791e-01,6.632862091064453125e-01,1.281000041961669922e+01,8.819999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.714371490478515625e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.335283458232879639e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.335283458232879639e-01,6.636090278625488281e-01,1.316800022125244141e+01,1.011999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.910400009155273438e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.249590903520584106e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.249590903520584106e-01,6.639317870140075684e-01,1.347799968719482422e+01,9.020000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.509216278791427612e-01,6.457990264892578125e+01,2.122919261455535889e-01,9.736213684082031250e-01,7.289624214172363281e-01,2.323247194290161133e-01,6.637307405471801758e-01,9.736213684082031250e-01,7.289624214172363281e-01,2.323247194290161133e-01,6.637307405471801758e-01,1.333399963378906250e+01,9.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.040858650207519531e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.350868880748748779e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.350868880748748779e-01,6.632862091064453125e-01,1.356400012969970703e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.300576019287109375e+01,2.184077948331832886e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.187606841325759888e-01,6.618354320526123047e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.187606841325759888e-01,6.618354320526123047e-01,1.300599956512451172e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.194217300415039062e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.304390668869018555e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.304390668869018555e-01,6.636090278625488281e-01,1.344799995422363281e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.919025802612304688e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248483747243881226e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248483747243881226e-01,6.639317870140075684e-01,1.371000003814697266e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.090942955017089844e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.239443063735961914e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.239443063735961914e-01,6.636090278625488281e-01,1.497999954223632812e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.029396057128906250e+01,2.404683679342269897e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.187930494546890259e-01,6.591420769691467285e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.187930494546890259e-01,6.591420769691467285e-01,1.464200019836425781e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.935347747802734375e+01,2.164988070726394653e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.148831188678741455e-01,6.613690257072448730e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.148831188678741455e-01,6.613690257072448730e-01,1.540600013732910156e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.680263900756835938e+01,2.436588704586029053e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.158895432949066162e-01,6.557545065879821777e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.158895432949066162e-01,6.557545065879821777e-01,1.605800056457519531e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.806362533569335938e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.316412329673767090e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.316412329673767090e-01,6.639317870140075684e-01,1.551200008392333984e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.530352020263671875e+02,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.257285118103027344e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.257285118103027344e-01,6.642546057701110840e-01,1.604999923706054688e+01,1.107999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.411216735839843750e+01,4.774138927459716797e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.129678875207901001e-01,6.270354390144348145e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.129678875207901001e-01,6.270354390144348145e-01,1.647599983215332031e+01,1.165999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.533624267578125000e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.197876274585723877e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.197876274585723877e-01,6.632862091064453125e-01,1.526000022888183594e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.153525924682617188e+01,3.360980749130249023e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.133759856224060059e-01,6.379871368408203125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.133759856224060059e-01,6.379871368408203125e-01,1.569799995422363281e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.469659042358398438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.218337506055831909e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.218337506055831909e-01,6.636090278625488281e-01,1.548200035095214844e+01,9.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,8.141484111547470093e-02,3.067429924011230469e+01,2.091000378131866455e-01,9.736213684082031250e-01,7.561330199241638184e-01,2.187952697277069092e-01,6.654659509658813477e-01,9.736213684082031250e-01,7.561330199241638184e-01,2.187952697277069092e-01,6.654659509658813477e-01,1.545199966430664062e+01,1.081999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.296069335937500000e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.177058309316635132e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.177058309316635132e-01,6.632862091064453125e-01,1.442399978637695312e+01,9.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.339183807373046875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.235218286514282227e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.235218286514282227e-01,6.636090278625488281e-01,1.576399993896484375e+01,1.152000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.977380371093750000e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.168177962303161621e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.168177962303161621e-01,6.632862091064453125e-01,1.468999958038330078e+01,9.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.802346801757812500e+01,4.611276388168334961e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.111271172761917114e-01,6.237419247627258301e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.111271172761917114e-01,6.237419247627258301e-01,1.446399974822998047e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.794527816772460938e+01,2.145121395587921143e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.242701500654220581e-01,6.649001836776733398e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.242701500654220581e-01,6.649001836776733398e-01,1.456999969482421875e+01,1.050000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.257733535766601562e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.214536666870117188e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.214536666870117188e-01,6.636090278625488281e-01,1.460799980163574219e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.219437789916992188e+01,2.252234071493148804e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.178369313478469849e-01,6.589056849479675293e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.178369313478469849e-01,6.589056849479675293e-01,1.568400001525878906e+01,1.030000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.299986648559570312e+01,2.141983956098556519e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.231452167034149170e-01,6.627400517463684082e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.231452167034149170e-01,6.627400517463684082e-01,1.443799972534179688e+01,1.064000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.283575057983398438e+01,3.802461028099060059e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.118684947490692139e-01,6.418124437332153320e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.118684947490692139e-01,6.418124437332153320e-01,1.526000022888183594e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.078845214843750000e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.377741038799285889e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.377741038799285889e-01,6.632862091064453125e-01,1.406200027465820312e+01,9.880000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.503162765502929688e+01,2.210139930248260498e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.223503440618515015e-01,6.598103046417236328e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.223503440618515015e-01,6.598103046417236328e-01,1.404399967193603516e+01,1.076000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.309835815429687500e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.377467006444931030e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.377467006444931030e-01,6.639317870140075684e-01,1.455200004577636719e+01,1.080000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.256854248046875000e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.359762787818908691e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.359762787818908691e-01,6.636090278625488281e-01,1.422999954223632812e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.167889022827148438e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253852635622024536e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253852635622024536e-01,6.618710756301879883e-01,1.455399990081787109e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.052295112609863281e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.357332706451416016e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.357332706451416016e-01,6.636090278625488281e-01,1.422599983215332031e+01,9.560000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.218311309814453125e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.246135175228118896e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.246135175228118896e-01,6.632862091064453125e-01,1.468799972534179688e+01,1.030000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.241967391967773438e+01,2.210139930248260498e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.240811586380004883e-01,6.598103046417236328e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.240811586380004883e-01,6.598103046417236328e-01,1.480000019073486328e+01,9.840000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.765656280517578125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.376316338777542114e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.376316338777542114e-01,6.636090278625488281e-01,1.445199966430664062e+01,1.084000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.867802047729492188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.229153811931610107e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.229153811931610107e-01,6.632862091064453125e-01,1.468799972534179688e+01,9.460000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.105537033081054688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.318362891674041748e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.318362891674041748e-01,6.632862091064453125e-01,1.573200035095214844e+01,9.640000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.160806083679199219e+01,2.817308604717254639e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.118755877017974854e-01,6.542968750000000000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.118755877017974854e-01,6.542968750000000000e-01,1.653599929809570312e+01,1.026000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.570753860473632812e+01,2.710254490375518799e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.176022380590438843e-01,6.506419777870178223e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.176022380590438843e-01,6.506419777870178223e-01,1.604999923706054688e+01,1.193999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.285674667358398438e+01,2.367523461580276489e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.189179509878158569e-01,6.573798060417175293e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.189179509878158569e-01,6.573798060417175293e-01,1.539599990844726562e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.978591156005859375e+01,4.945951104164123535e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.123006731271743774e-01,6.232884526252746582e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.123006731271743774e-01,6.232884526252746582e-01,1.558800029754638672e+01,1.142000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.427994155883789062e+01,3.112607002258300781e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.116329669952392578e-01,6.415488123893737793e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.116329669952392578e-01,6.415488123893737793e-01,1.416600036621093750e+01,1.038000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.896869468688964844e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.331532984972000122e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.331532984972000122e-01,6.632862091064453125e-01,1.341800022125244141e+01,9.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.290464401245117188e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.285968661308288574e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.285968661308288574e-01,6.636090278625488281e-01,1.358800029754638672e+01,1.192000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.677346420288085938e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.416652143001556396e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.416652143001556396e-01,6.639317870140075684e-01,1.260200023651123047e+01,1.053999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.082062911987304688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.396222651004791260e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.396222651004791260e-01,6.632862091064453125e-01,1.179199981689453125e+01,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.513330078125000000e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323672026395797729e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323672026395797729e-01,6.642546057701110840e-01,1.279599952697753906e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.942893028259277344e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.408675551414489746e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.408675551414489746e-01,6.636090278625488281e-01,1.200199985504150391e+01,9.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.756201553344726562e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.591808438301086426e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.591808438301086426e-01,6.636090278625488281e-01,1.231599998474121094e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.425056076049804688e+01,2.123850286006927490e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.307140827178955078e-01,6.637722849845886230e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.307140827178955078e-01,6.637722849845886230e-01,1.284000015258789062e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.927383232116699219e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.536789774894714355e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.536789774894714355e-01,6.632862091064453125e-01,1.194600009918212891e+01,9.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.029287338256835938e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.298960983753204346e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.298960983753204346e-01,6.632862091064453125e-01,1.309799957275390625e+01,8.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.217717742919921875e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.330390959978103638e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.330390959978103638e-01,6.639317870140075684e-01,1.338399982452392578e+01,9.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.938053894042968750e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.210278213024139404e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.210278213024139404e-01,6.632862091064453125e-01,1.301000022888183594e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.169510269165039062e+01,2.067790031433105469e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.307527214288711548e-01,6.694929599761962891e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.307527214288711548e-01,6.694929599761962891e-01,1.336800003051757812e+01,9.699999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.024738502502441406e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.279439121484756470e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.279439121484756470e-01,6.632862091064453125e-01,1.359599971771240234e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.723653030395507812e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.212080359458923340e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.212080359458923340e-01,6.636090278625488281e-01,1.377999973297119141e+01,9.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.101584854125976562e+02,3.867295384407043457e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.066799104213714600e-01,6.380852460861206055e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.066799104213714600e-01,6.380852460861206055e-01,1.513000011444091797e+01,1.031999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.568996810913085938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.261128872632980347e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.261128872632980347e-01,6.636090278625488281e-01,1.513399982452392578e+01,1.115999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.180733108520507812e+01,3.687869310379028320e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.115366309881210327e-01,6.396044492721557617e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.115366309881210327e-01,6.396044492721557617e-01,1.515600013732910156e+01,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.651133422851562500e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.172817289829254150e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.172817289829254150e-01,6.632862091064453125e-01,1.485999965667724609e+01,9.859999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.417367935180664062e+01,2.245857119560241699e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.184619605541229248e-01,6.600757241249084473e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.184619605541229248e-01,6.600757241249084473e-01,1.531400012969970703e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.656317520141601562e+01,2.081777453422546387e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.314178198575973511e-01,6.699789762496948242e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.314178198575973511e-01,6.699789762496948242e-01,1.493599987030029297e+01,1.177999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.568400573730468750e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.229056656360626221e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.229056656360626221e-01,6.636090278625488281e-01,1.507199954986572266e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.560902023315429688e+01,3.564993739128112793e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.111164033412933350e-01,6.373781561851501465e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.111164033412933350e-01,6.373781561851501465e-01,1.574600028991699219e+01,1.114000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.350635147094726562e+01,2.141983956098556519e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170621007680892944e-01,6.627400517463684082e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170621007680892944e-01,6.627400517463684082e-01,1.447799968719482422e+01,9.920000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.553833007812500000e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.184748798608779907e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.184748798608779907e-01,6.636090278625488281e-01,1.444200038909912109e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.441778182983398438e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.273780554533004761e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.273780554533004761e-01,6.632862091064453125e-01,1.440999984741210938e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.477628479003906250e+02,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248501330614089966e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248501330614089966e-01,6.636090278625488281e-01,1.417599964141845703e+01,1.135999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.316025390625000000e+02,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.332458794116973877e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.332458794116973877e-01,6.639317870140075684e-01,1.477999973297119141e+01,1.019999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.097818756103515625e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.208262681961059570e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.208262681961059570e-01,6.632862091064453125e-01,1.484799957275390625e+01,1.085999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.683901214599609375e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.232050895690917969e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.232050895690917969e-01,6.632862091064453125e-01,1.490799999237060547e+01,9.920000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.755580139160156250e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.218533307313919067e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.218533307313919067e-01,6.632862091064453125e-01,1.550000000000000000e+01,9.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.125444221496582031e+01,3.372796475887298584e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.147736102342605591e-01,6.491171717643737793e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.147736102342605591e-01,6.491171717643737793e-01,1.585000038146972656e+01,9.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.991376113891601562e+01,5.029329061508178711e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.156987935304641724e-01,6.212612390518188477e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.156987935304641724e-01,6.212612390518188477e-01,1.563000011444091797e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.255465316772460938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.298986315727233887e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.298986315727233887e-01,6.636090278625488281e-01,1.459000015258789062e+01,1.102000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.162024116516113281e+01,2.232151329517364502e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276322841644287109e-01,6.595954298973083496e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276322841644287109e-01,6.595954298973083496e-01,1.487800025939941406e+01,1.003999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.368491363525390625e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.297906428575515747e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.297906428575515747e-01,6.636090278625488281e-01,1.410999965667724609e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.232812881469726562e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.258904278278350830e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.258904278278350830e-01,6.639317870140075684e-01,1.423200035095214844e+01,1.002000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.148493957519531250e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.330769151449203491e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.330769151449203491e-01,6.632862091064453125e-01,1.480799961090087891e+01,9.079999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.233715820312500000e+01,2.129966765642166138e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.187729626893997192e-01,6.678985357284545898e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.187729626893997192e-01,6.678985357284545898e-01,1.434799957275390625e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.215642089843750000e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.311774641275405884e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.311774641275405884e-01,6.632862091064453125e-01,1.386800003051757812e+01,9.680000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.563554382324218750e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.290498167276382446e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.290498167276382446e-01,6.632862091064453125e-01,1.455000019073486328e+01,1.034000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.038899230957031250e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.297918796539306641e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.297918796539306641e-01,6.639317870140075684e-01,1.472599983215332031e+01,1.065999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,2.969261169433593750e+01,2.088945060968399048e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.276779264211654663e-01,6.704612970352172852e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.276779264211654663e-01,6.704612970352172852e-01,1.497399997711181641e+01,1.131999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.801187705993652344e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.260312288999557495e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.260312288999557495e-01,6.632862091064453125e-01,1.410599994659423828e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.904165458679199219e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.365666627883911133e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.365666627883911133e-01,6.636090278625488281e-01,1.424800014495849609e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.445092010498046875e+01,2.123850286006927490e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.289199829101562500e-01,6.637722849845886230e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.289199829101562500e-01,6.637722849845886230e-01,1.559399986267089844e+01,1.077999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.577145004272460938e+01,2.192122340202331543e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179300338029861450e-01,6.610020995140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179300338029861450e-01,6.610020995140075684e-01,1.531200027465820312e+01,1.039999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.490173721313476562e+01,2.202095538377761841e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.148975878953933716e-01,6.606436371803283691e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.148975878953933716e-01,6.606436371803283691e-01,1.669000053405761719e+01,1.034000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.232179260253906250e+01,3.755784928798675537e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.093672305345535278e-01,6.358398795127868652e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.093672305345535278e-01,6.358398795127868652e-01,1.684000015258789062e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.884364318847656250e+01,2.661486566066741943e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.126696258783340454e-01,6.510938405990600586e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.126696258783340454e-01,6.510938405990600586e-01,1.623999977111816406e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.579111099243164062e+01,2.253165692090988159e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154451161623001099e-01,6.586701273918151855e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154451161623001099e-01,6.586701273918151855e-01,1.637000083923339844e+01,1.115999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.733628463745117188e+01,6.447964906692504883e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.073324918746948242e-01,6.079810857772827148e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.073324918746948242e-01,6.079810857772827148e-01,1.637000083923339844e+01,1.180000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.329528808593750000e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.299522161483764648e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.299522161483764648e-01,6.632862091064453125e-01,1.534200000762939453e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.590108108520507812e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276314347982406616e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276314347982406616e-01,6.636090278625488281e-01,1.460000038146972656e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.178162002563476562e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.252881526947021484e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.252881526947021484e-01,6.636090278625488281e-01,1.402600002288818359e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.840198516845703125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.251343280076980591e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.251343280076980591e-01,6.636090278625488281e-01,1.394400024414062500e+01,1.077999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.263936645507812500e+03,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.216889858245849609e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.216889858245849609e-01,6.632862091064453125e-01,1.366800022125244141e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.315053939819335938e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.283701300621032715e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.283701300621032715e-01,6.639317870140075684e-01,1.408199977874755859e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.286213302612304688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.255463600158691406e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.255463600158691406e-01,6.632862091064453125e-01,1.464200019836425781e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.222751617431640625e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226396352052688599e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226396352052688599e-01,6.642546057701110840e-01,1.440799999237060547e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.114875411987304688e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.292832732200622559e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.292832732200622559e-01,6.636090278625488281e-01,1.435999965667724609e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.634786605834960938e+01,3.819449841976165771e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.091761082410812378e-01,6.382794976234436035e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.091761082410812378e-01,6.382794976234436035e-01,1.475399971008300781e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.387473678588867188e+01,2.141983956098556519e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.210054844617843628e-01,6.627400517463684082e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.210054844617843628e-01,6.627400517463684082e-01,1.489599990844726562e+01,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.334775543212890625e+01,3.763039112091064453e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.095811069011688232e-01,6.327447295188903809e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.095811069011688232e-01,6.327447295188903809e-01,1.497200012207031250e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.587230682373046875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.239751368761062622e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.239751368761062622e-01,6.636090278625488281e-01,1.507199954986572266e+01,1.150000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.801748275756835938e+01,2.795813381671905518e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.155437469482421875e-01,6.475465893745422363e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.155437469482421875e-01,6.475465893745422363e-01,1.504599952697753906e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.874588203430175781e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.353893816471099854e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.353893816471099854e-01,6.642546057701110840e-01,1.419400024414062500e+01,1.018000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.622819824218750000e+02,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.384191751480102539e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.384191751480102539e-01,6.636090278625488281e-01,1.411200046539306641e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.308394622802734375e+01,2.154022157192230225e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.264396101236343384e-01,6.628836393356323242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.264396101236343384e-01,6.628836393356323242e-01,1.427400016784667969e+01,9.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.975454711914062500e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.432102113962173462e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.432102113962173462e-01,6.639317870140075684e-01,1.376599979400634766e+01,1.002000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.204618835449218750e+01,2.156087309122085571e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.200589478015899658e-01,6.633856296539306641e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.200589478015899658e-01,6.633856296539306641e-01,1.503199958801269531e+01,1.152000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.038147926330566406e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.424435764551162720e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.424435764551162720e-01,6.642546057701110840e-01,1.435599994659423828e+01,9.920000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,5.324503784179687500e+02,2.150616943836212158e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.330872267484664917e-01,6.627683639526367188e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.330872267484664917e-01,6.627683639526367188e-01,1.410000038146972656e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.188947486877441406e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.346537262201309204e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.346537262201309204e-01,6.642546057701110840e-01,1.421800041198730469e+01,1.114000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.456777572631835938e+01,2.081893384456634521e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.281486392021179199e-01,6.701385378837585449e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.281486392021179199e-01,6.701385378837585449e-01,1.483399963378906250e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.860210418701171875e+01,2.232151329517364502e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.171786129474639893e-01,6.595954298973083496e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.171786129474639893e-01,6.595954298973083496e-01,1.497599983215332031e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.966926765441894531e+01,2.287276387214660645e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.175215929746627808e-01,6.576782464981079102e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.175215929746627808e-01,6.576782464981079102e-01,1.543400001525878906e+01,9.659999847412109375e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.233244705200195312e+01,2.493778765201568604e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.196756154298782349e-01,6.543393731117248535e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.196756154298782349e-01,6.543393731117248535e-01,1.560799980163574219e+01,1.002000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.963016128540039062e+01,2.134932279586791992e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.192265391349792480e-01,6.624172329902648926e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.192265391349792480e-01,6.624172329902648926e-01,1.468799972534179688e+01,9.699999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.554930877685546875e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.285041660070419312e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.285041660070419312e-01,6.632862091064453125e-01,1.464400005340576172e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.230989456176757812e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.293425649404525757e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.293425649404525757e-01,6.632862091064453125e-01,1.518799972534179688e+01,1.202000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.313656234741210938e+01,2.215126603841781616e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.224207818508148193e-01,6.596310734748840332e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.224207818508148193e-01,6.596310734748840332e-01,1.561200046539306641e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.071980133056640625e+02,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.340217977762222290e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.340217977762222290e-01,6.639317870140075684e-01,1.570400047302246094e+01,1.038000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.640755462646484375e+01,6.842215061187744141e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.075321972370147705e-01,6.043253540992736816e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.075321972370147705e-01,6.043253540992736816e-01,1.634199905395507812e+01,1.181999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.229515838623046875e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.261038124561309814e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.261038124561309814e-01,6.639317870140075684e-01,1.565400028228759766e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.922331619262695312e+01,3.482215702533721924e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.080907523632049561e-01,6.421447992324829102e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.080907523632049561e-01,6.421447992324829102e-01,1.645800018310546875e+01,1.064000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.760679244995117188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.229201346635818481e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.229201346635818481e-01,6.632862091064453125e-01,1.514999961853027344e+01,9.819999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.680004501342773438e+01,2.908978462219238281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.150285542011260986e-01,6.470661759376525879e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.150285542011260986e-01,6.470661759376525879e-01,1.559799957275390625e+01,1.242000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.228347702026367188e+02,2.551887929439544678e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.128966450691223145e-01,6.537171006202697754e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.128966450691223145e-01,6.537171006202697754e-01,1.527999973297119141e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.287878417968750000e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.294200509786605835e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.294200509786605835e-01,6.639317870140075684e-01,1.398799991607666016e+01,1.043999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.972427177429199219e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.314385026693344116e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.314385026693344116e-01,6.639317870140075684e-01,1.447399997711181641e+01,1.038000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.524839782714843750e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.278218418359756470e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.278218418359756470e-01,6.636090278625488281e-01,1.386999988555908203e+01,1.015999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.030371856689453125e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.288171797990798950e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.288171797990798950e-01,6.632862091064453125e-01,1.381599998474121094e+01,9.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.250539779663085938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.410921305418014526e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.410921305418014526e-01,6.636090278625488281e-01,1.311200046539306641e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.361954498291015625e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.340488731861114502e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.340488731861114502e-01,6.636090278625488281e-01,1.348400020599365234e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.903487205505371094e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351784408092498779e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351784408092498779e-01,6.639317870140075684e-01,1.398200035095214844e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.041162109375000000e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.394642531871795654e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.394642531871795654e-01,6.639317870140075684e-01,1.393200016021728516e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.495892333984375000e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.289736270904541016e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.289736270904541016e-01,6.639317870140075684e-01,1.438799953460693359e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,1.062325134277343750e+02,2.198122888803482056e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.193436622619628906e-01,6.649687886238098145e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.193436622619628906e-01,6.649687886238098145e-01,1.483199977874755859e+01,9.100000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.131926727294921875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.303451448678970337e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.303451448678970337e-01,6.636090278625488281e-01,1.461999988555908203e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.915535163879394531e+01,2.355485260486602783e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.212918102741241455e-01,6.572362184524536133e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.212918102741241455e-01,6.572362184524536133e-01,1.486200046539306641e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.496846313476562500e+02,3.444072008132934570e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.151956111192703247e-01,6.478216648101806641e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.151956111192703247e-01,6.478216648101806641e-01,1.456000041961669922e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.015110778808593750e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.227337360382080078e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.227337360382080078e-01,6.632862091064453125e-01,1.582800006866455078e+01,1.092000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.229482269287109375e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.305056601762771606e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.305056601762771606e-01,6.632862091064453125e-01,1.484799957275390625e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.230662536621093750e+01,2.342955470085144043e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.138969153165817261e-01,6.565803289413452148e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.138969153165817261e-01,6.565803289413452148e-01,1.498200035095214844e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.277094650268554688e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.305753976106643677e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.305753976106643677e-01,6.642546057701110840e-01,1.485799980163574219e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.602539443969726562e+01,2.511489689350128174e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.138760983943939209e-01,6.521428227424621582e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.138760983943939209e-01,6.521428227424621582e-01,1.536200046539306641e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.571339035034179688e+01,2.867341041564941406e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.155617624521255493e-01,6.453977227210998535e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.155617624521255493e-01,6.453977227210998535e-01,1.508199977874755859e+01,1.080000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.498396682739257812e+01,2.145121395587921143e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.324720174074172974e-01,6.649001836776733398e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.324720174074172974e-01,6.649001836776733398e-01,1.493599987030029297e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.456610870361328125e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.218980491161346436e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.218980491161346436e-01,6.632862091064453125e-01,1.477400016784667969e+01,1.015999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.933923149108886719e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.306624650955200195e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.306624650955200195e-01,6.639317870140075684e-01,1.481400012969970703e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.918868637084960938e+01,4.935302138328552246e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.130466401576995850e-01,6.282591223716735840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.130466401576995850e-01,6.282591223716735840e-01,1.477999973297119141e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.205803298950195312e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.288370132446289062e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.288370132446289062e-01,6.636090278625488281e-01,1.492000007629394531e+01,1.135999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.560186386108398438e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.291930317878723145e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.291930317878723145e-01,6.642546057701110840e-01,1.471399974822998047e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.980114173889160156e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.342066913843154907e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.342066913843154907e-01,6.632862091064453125e-01,1.449800014495849609e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.951477622985839844e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.254085093736648560e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.254085093736648560e-01,6.636090278625488281e-01,1.466399955749511719e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.153450393676757812e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.415105551481246948e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.415105551481246948e-01,6.636090278625488281e-01,1.447799968719482422e+01,1.085999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.370100402832031250e+01,2.081893384456634521e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.330366820096969604e-01,6.701385378837585449e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.330366820096969604e-01,6.701385378837585449e-01,1.517399978637695312e+01,9.380000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,4.252615737915039062e+01,2.182737886905670166e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.188205868005752563e-01,6.622221469879150391e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.188205868005752563e-01,6.622221469879150391e-01,1.523400020599365234e+01,1.085999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.571803283691406250e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.249229848384857178e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.249229848384857178e-01,6.639317870140075684e-01,1.580799961090087891e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.697704315185546875e+01,2.145121395587921143e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.256794422864913940e-01,6.649001836776733398e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.256794422864913940e-01,6.649001836776733398e-01,1.598799991607666016e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.123661041259765625e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.270655632019042969e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.270655632019042969e-01,6.642546057701110840e-01,1.680800056457519531e+01,1.015999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.612101745605468750e+01,2.171204537153244019e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.218382656574249268e-01,6.681771278381347656e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.218382656574249268e-01,6.681771278381347656e-01,1.627199935913085938e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.690871429443359375e+01,2.954791784286499023e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.149214893579483032e-01,6.442596912384033203e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.149214893579483032e-01,6.442596912384033203e-01,1.709000015258789062e+01,1.050000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.844624710083007812e+01,2.678870260715484619e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.148763984441757202e-01,6.516886353492736816e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.148763984441757202e-01,6.516886353492736816e-01,1.638800048828125000e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.394453048706054688e+01,5.238564014434814453e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.098530977964401245e-01,6.179852485656738281e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.098530977964401245e-01,6.179852485656738281e-01,1.598200035095214844e+01,1.119999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.414614486694335938e+01,2.163138985633850098e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.242148369550704956e-01,6.637083888053894043e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.242148369550704956e-01,6.637083888053894043e-01,1.549400043487548828e+01,1.011999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.150462722778320312e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351834625005722046e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351834625005722046e-01,6.639317870140075684e-01,1.496599960327148438e+01,1.039999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.037563514709472656e+01,7.417336702346801758e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.049737870693206787e-01,5.924751758575439453e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.049737870693206787e-01,5.924751758575439453e-01,1.443599987030029297e+01,1.265999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.964100646972656250e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248739451169967651e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248739451169967651e-01,6.639317870140075684e-01,1.392000007629394531e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.949334716796875000e+01,2.902538180351257324e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.211217731237411499e-01,6.522023677825927734e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.211217731237411499e-01,6.522023677825927734e-01,1.326599979400634766e+01,1.043999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.974184799194335938e+01,2.145121395587921143e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323894649744033813e-01,6.649001836776733398e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323894649744033813e-01,6.649001836776733398e-01,1.324400043487548828e+01,9.579999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.327311325073242188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.387745976448059082e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.387745976448059082e-01,6.632862091064453125e-01,1.307600021362304688e+01,9.439999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,2.917573356628417969e+01,2.081893384456634521e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.422945797443389893e-01,6.701385378837585449e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.422945797443389893e-01,6.701385378837585449e-01,1.297799968719482422e+01,1.081999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.956246757507324219e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.338075637817382812e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.338075637817382812e-01,6.636090278625488281e-01,1.268599987030029297e+01,1.002000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.869050598144531250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.341489493846893311e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.341489493846893311e-01,6.636090278625488281e-01,1.276399993896484375e+01,9.319999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.390215301513671875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.513478994369506836e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.513478994369506836e-01,6.636090278625488281e-01,1.273799991607666016e+01,9.300000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.609585952758789062e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.461801916360855103e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.461801916360855103e-01,6.642546057701110840e-01,1.266600036621093750e+01,1.057999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.937870025634765625e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.367172837257385254e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.367172837257385254e-01,6.636090278625488281e-01,1.369200038909912109e+01,9.979999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.181845664978027344e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.299317866563796997e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.299317866563796997e-01,6.636090278625488281e-01,1.290799999237060547e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.931981201171875000e+02,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.273505330085754395e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.273505330085754395e-01,6.636090278625488281e-01,1.329199981689453125e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.004416084289550781e+01,2.130901962518692017e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.393674701452255249e-01,6.640950441360473633e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.393674701452255249e-01,6.640950441360473633e-01,1.352799987792968750e+01,1.106000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.851955795288085938e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.348759919404983521e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.348759919404983521e-01,6.639317870140075684e-01,1.372399997711181641e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.433390045166015625e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.262507379055023193e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.262507379055023193e-01,6.642546057701110840e-01,1.440999984741210938e+01,9.680000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.422611846923828125e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.313241213560104370e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.313241213560104370e-01,6.632862091064453125e-01,1.466199970245361328e+01,9.560000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.975599670410156250e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.208597809076309204e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.208597809076309204e-01,6.618710756301879883e-01,1.549600028991699219e+01,9.420000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.902473449707031250e+01,2.160001546144485474e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.229440510272979736e-01,6.615482568740844727e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.229440510272979736e-01,6.615482568740844727e-01,1.612800025939941406e+01,1.003999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.461822509765625000e+01,2.141983956098556519e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.214076071977615356e-01,6.627400517463684082e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.214076071977615356e-01,6.627400517463684082e-01,1.621199989318847656e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.634144210815429688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.175309658050537109e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.175309658050537109e-01,6.632862091064453125e-01,1.645800018310546875e+01,9.319999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.385084533691406250e+01,9.021868109703063965e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.993349194526672363e-01,5.779241919517517090e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.993349194526672363e-01,5.779241919517517090e-01,1.758600044250488281e+01,1.419999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.008150291442871094e+01,3.056868910789489746e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.121981978416442871e-01,6.427420973777770996e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.121981978416442871e-01,6.427420973777770996e-01,1.615600013732910156e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.149585914611816406e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.293328791856765747e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.293328791856765747e-01,6.636090278625488281e-01,1.633200073242187500e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.576448440551757812e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.230347990989685059e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.230347990989685059e-01,6.642546057701110840e-01,1.638800048828125000e+01,1.081999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.668096923828125000e+01,2.199058085680007935e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.142257690429687500e-01,6.611652970314025879e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.142257690429687500e-01,6.611652970314025879e-01,1.615600013732910156e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.230551910400390625e+01,2.081893384456634521e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.249342203140258789e-01,6.701385378837585449e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.249342203140258789e-01,6.701385378837585449e-01,1.634600067138671875e+01,1.050000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.511665725708007812e+01,2.546838819980621338e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.117192745208740234e-01,6.519201397895812988e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.117192745208740234e-01,6.519201397895812988e-01,1.627199935913085938e+01,9.600000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,6.760332641601562500e+02,5.478591918945312500e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.051374167203903198e-01,6.164586544036865234e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.051374167203903198e-01,6.164586544036865234e-01,1.609000015258789062e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.037444305419921875e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.380374222993850708e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.380374222993850708e-01,6.642546057701110840e-01,1.576200008392333984e+01,1.103999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.216567230224609375e+01,2.149035632610321045e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.206546068191528320e-01,6.630628108978271484e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.206546068191528320e-01,6.630628108978271484e-01,1.589400005340576172e+01,1.077999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.609264373779296875e+01,2.202095538377761841e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.183217853307723999e-01,6.606436371803283691e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.183217853307723999e-01,6.606436371803283691e-01,1.543400001525878906e+01,1.064000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.103452148437500000e+02,2.242260873317718506e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.212322801351547241e-01,6.592640876770019531e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.212322801351547241e-01,6.592640876770019531e-01,1.474199962615966797e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.250120162963867188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.245950847864151001e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.245950847864151001e-01,6.632862091064453125e-01,1.420400047302246094e+01,1.106000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.664064025878906250e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.233989685773849487e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.233989685773849487e-01,6.642546057701110840e-01,1.436999988555908203e+01,9.579999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.776055526733398438e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.391202598810195923e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.391202598810195923e-01,6.639317870140075684e-01,1.426200008392333984e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.397471237182617188e+01,2.149035632610321045e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.218219488859176636e-01,6.630628108978271484e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.218219488859176636e-01,6.630628108978271484e-01,1.503199958801269531e+01,1.177999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.205865097045898438e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.240450382232666016e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.240450382232666016e-01,6.642546057701110840e-01,1.394400024414062500e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.790842056274414062e+01,2.146702706813812256e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.205256521701812744e-01,6.646056771278381348e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.205256521701812744e-01,6.646056771278381348e-01,1.517199993133544922e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.558713912963867188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.276242971420288086e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.276242971420288086e-01,6.632862091064453125e-01,1.444999980926513672e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.125460243225097656e+01,2.138069719076156616e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.314375787973403931e-01,6.645773649215698242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.314375787973403931e-01,6.645773649215698242e-01,1.515999984741210938e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.163711166381835938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.390614748001098633e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.390614748001098633e-01,6.636090278625488281e-01,1.497599983215332031e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.389644622802734375e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.292150557041168213e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.292150557041168213e-01,6.636090278625488281e-01,1.488799953460693359e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.522423171997070312e+01,2.668428719043731689e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.130639702081680298e-01,6.481918692588806152e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.130639702081680298e-01,6.481918692588806152e-01,1.652599906921386719e+01,1.227999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.334757614135742188e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.224780321121215820e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.224780321121215820e-01,6.639317870140075684e-01,1.577400016784667969e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.542302012443542480e-02,3.067255020141601562e+01,2.093905359506607056e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.227611243724822998e-01,6.685971617698669434e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.227611243724822998e-01,6.685971617698669434e-01,1.620000076293945312e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.804447937011718750e+01,2.234216481447219849e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.156420350074768066e-01,6.600974798202514648e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.156420350074768066e-01,6.600974798202514648e-01,1.667399978637695312e+01,1.019999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.943592834472656250e+01,5.818128585815429688e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.079201638698577881e-01,6.119265556335449219e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.079201638698577881e-01,6.119265556335449219e-01,1.706999969482421875e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.036384582519531250e+01,5.689898729324340820e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.090329974889755249e-01,6.158753633499145508e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.090329974889755249e-01,6.158753633499145508e-01,1.742799949645996094e+01,1.053999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.189256286621093750e+01,4.443357884883880615e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154283076524734497e-01,6.258047819137573242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154283076524734497e-01,6.258047819137573242e-01,1.676799964904785156e+01,1.152000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.512368011474609375e+01,2.809916138648986816e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.144075185060501099e-01,6.531192660331726074e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.144075185060501099e-01,6.531192660331726074e-01,1.602400016784667969e+01,1.026000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.222564315795898438e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.260241061449050903e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.260241061449050903e-01,6.618710756301879883e-01,1.502999973297119141e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.043471145629882812e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.300583273172378540e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.300583273172378540e-01,6.639317870140075684e-01,1.446199989318847656e+01,1.261999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.208289337158203125e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.257644683122634888e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.257644683122634888e-01,6.642546057701110840e-01,1.414000034332275391e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.902808570861816406e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.379516363143920898e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.379516363143920898e-01,6.642546057701110840e-01,1.409000015258789062e+01,1.081999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.028829002380371094e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.388899177312850952e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.388899177312850952e-01,6.642546057701110840e-01,1.308800029754638672e+01,9.979999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.623030090332031250e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.494831681251525879e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.494831681251525879e-01,6.639317870140075684e-01,1.282600021362304688e+01,9.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.694139289855957031e+01,2.135465741157531738e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.454293221235275269e-01,6.639408469200134277e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.454293221235275269e-01,6.639408469200134277e-01,1.345400047302246094e+01,1.034000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.207550048828125000e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.346842885017395020e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.346842885017395020e-01,6.639317870140075684e-01,1.365600013732910156e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.757016944885253906e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.375558465719223022e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.375558465719223022e-01,6.632862091064453125e-01,1.300000000000000000e+01,1.068000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.542302012443542480e-02,3.215420532226562500e+01,2.086853682994842529e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.487783282995223999e-01,6.682744026184082031e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.487783282995223999e-01,6.682744026184082031e-01,1.397799968719482422e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.839252853393554688e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.537170350551605225e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.537170350551605225e-01,6.642546057701110840e-01,1.349400043487548828e+01,1.165999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.248761367797851562e+01,2.269586175680160522e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.223119884729385376e-01,6.602634191513061523e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.223119884729385376e-01,6.602634191513061523e-01,1.380599975585937500e+01,9.579999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.688020706176757812e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.422240227460861206e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.422240227460861206e-01,6.642546057701110840e-01,1.412800025939941406e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.315343093872070312e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.260946631431579590e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.260946631431579590e-01,6.639317870140075684e-01,1.420800018310546875e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.022879791259765625e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.300529628992080688e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.300529628992080688e-01,6.632862091064453125e-01,1.450399971008300781e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,4.115891113281250000e+02,2.654843628406524658e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.227737605571746826e-01,6.568564772605895996e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.227737605571746826e-01,6.568564772605895996e-01,1.483800029754638672e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.675431132316589355e-01,3.151502037048339844e+01,2.101174294948577881e-01,9.736213684082031250e-01,7.149559259414672852e-01,2.247741371393203735e-01,6.643196344375610352e-01,9.736213684082031250e-01,7.149559259414672852e-01,2.247741371393203735e-01,6.643196344375610352e-01,1.610199928283691406e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,4.105167770385742188e+01,2.088945060968399048e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.367098778486251831e-01,6.704612970352172852e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.367098778486251831e-01,6.704612970352172852e-01,1.567199993133544922e+01,1.102000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.542302012443542480e-02,3.101577758789062500e+01,2.072750329971313477e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.318882346153259277e-01,6.676287651062011719e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.318882346153259277e-01,6.676287651062011719e-01,1.613400077819824219e+01,1.122000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.618309020996093750e+01,2.933935225009918213e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.154131978750228882e-01,6.531807780265808105e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.154131978750228882e-01,6.531807780265808105e-01,1.691399955749511719e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.532441711425781250e+01,2.199174016714096069e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.177018821239471436e-01,6.613248586654663086e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.177018821239471436e-01,6.613248586654663086e-01,1.656800079345703125e+01,1.030000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.346064147949218750e+02,2.156087309122085571e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.201139628887176514e-01,6.633856296539306641e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.201139628887176514e-01,6.633856296539306641e-01,1.641200065612792969e+01,1.011999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.174568176269531250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.344854772090911865e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.344854772090911865e-01,6.636090278625488281e-01,1.578199958801269531e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.204785537719726562e+01,7.074770331382751465e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.048146575689315796e-01,5.988396406173706055e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.048146575689315796e-01,5.988396406173706055e-01,1.708200073242187500e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.995360946655273438e+01,7.333974838256835938e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.089311331510543823e-01,5.964135527610778809e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.089311331510543823e-01,5.964135527610778809e-01,1.598799991607666016e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.547436523437500000e+01,5.909181237220764160e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.064018845558166504e-01,6.132638454437255859e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.064018845558166504e-01,6.132638454437255859e-01,1.613999938964843750e+01,1.214000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.280041122436523438e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.291980832815170288e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.291980832815170288e-01,6.639317870140075684e-01,1.623600006103515625e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.406901550292968750e+02,2.074841707944869995e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.340027540922164917e-01,6.698157191276550293e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.340027540922164917e-01,6.698157191276550293e-01,1.569999980926513672e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.118350848555564880e-01,4.858570480346679688e+01,2.104136049747467041e-01,9.736213684082031250e-01,7.351865768432617188e-01,2.414720952510833740e-01,6.653698086738586426e-01,9.736213684082031250e-01,7.351865768432617188e-01,2.414720952510833740e-01,6.653698086738586426e-01,1.547200012207031250e+01,1.057999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.293741607666015625e+01,2.117035835981369019e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.440057396888732910e-01,6.715929508209228516e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.440057396888732910e-01,6.715929508209228516e-01,1.473799991607666016e+01,1.172000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,2.908815002441406250e+01,2.114581763744354248e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.315350025892257690e-01,6.651518940925598145e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.315350025892257690e-01,6.651518940925598145e-01,1.472999954223632812e+01,1.092000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.321052856445312500e+02,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.615652680397033691e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.615652680397033691e-01,6.642546057701110840e-01,1.402000045776367188e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.020231437683105469e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.359642386436462402e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.359642386436462402e-01,6.636090278625488281e-01,1.456999969482421875e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.083015060424804688e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.331814318895339966e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.331814318895339966e-01,6.642546057701110840e-01,1.437800025939941406e+01,9.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.897964286804199219e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.331312298774719238e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.331312298774719238e-01,6.639317870140075684e-01,1.487199974060058594e+01,9.600000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.133298492431640625e+01,2.145121395587921143e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.308167517185211182e-01,6.649001836776733398e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.308167517185211182e-01,6.649001836776733398e-01,1.480599975585937500e+01,1.172000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.756370162963867188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.272664308547973633e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.272664308547973633e-01,6.632862091064453125e-01,1.471199989318847656e+01,1.119999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.052631950378417969e+01,2.074841707944869995e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.340376079082489014e-01,6.698157191276550293e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.340376079082489014e-01,6.698157191276550293e-01,1.562600040435791016e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.098445320129394531e+01,2.095996737480163574e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.349311709403991699e-01,6.707841157913208008e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.349311709403991699e-01,6.707841157913208008e-01,1.639999961853027344e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.965509223937988281e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.279275506734848022e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.279275506734848022e-01,6.639317870140075684e-01,1.678400039672851562e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.878219604492187500e+01,2.378396689891815186e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.153296619653701782e-01,6.579827666282653809e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.153296619653701782e-01,6.579827666282653809e-01,1.625000000000000000e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.368759918212890625e+01,2.288340777158737183e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.265911996364593506e-01,6.588413715362548828e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.265911996364593506e-01,6.588413715362548828e-01,1.660199928283691406e+01,1.181999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.288602066040039062e+01,2.185070663690567017e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.251070588827133179e-01,6.606792807579040527e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.251070588827133179e-01,6.606792807579040527e-01,1.699600028991699219e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,2.043680877685546875e+02,6.629498600959777832e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.113148123025894165e-01,6.091883778572082520e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.113148123025894165e-01,6.091883778572082520e-01,1.701199913024902344e+01,1.227999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.077363662719726562e+02,4.395125508308410645e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.134348452091217041e-01,6.237925291061401367e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.134348452091217041e-01,6.237925291061401367e-01,1.704400062561035156e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.809060668945312500e+01,2.137405723333358765e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.190094441175460815e-01,6.634157299995422363e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.190094441175460815e-01,6.634157299995422363e-01,1.623399925231933594e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.291495895385742188e+01,2.114581763744354248e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.239127606153488159e-01,6.651518940925598145e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.239127606153488159e-01,6.651518940925598145e-01,1.512199974060058594e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.023267555236816406e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.229501157999038696e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.229501157999038696e-01,6.636090278625488281e-01,1.461999988555908203e+01,9.279999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,2.717860794067382812e+01,2.240216881036758423e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.266601622104644775e-01,6.640641689300537109e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.266601622104644775e-01,6.640641689300537109e-01,1.435599994659423828e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.394160079956054688e+01,2.453306764364242554e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154853790998458862e-01,6.547141075134277344e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154853790998458862e-01,6.547141075134277344e-01,1.555000019073486328e+01,9.119999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.048529434204101562e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.287017703056335449e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.287017703056335449e-01,6.639317870140075684e-01,1.451599979400634766e+01,1.060000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.542302012443542480e-02,3.032909774780273438e+01,2.100957036018371582e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.453502416610717773e-01,6.689199805259704590e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.453502416610717773e-01,6.689199805259704590e-01,1.401799964904785156e+01,1.102000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.820736503601074219e+01,2.095872461795806885e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.323101907968521118e-01,6.713116765022277832e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.323101907968521118e-01,6.713116765022277832e-01,1.380000019073486328e+01,9.699999809265136719e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.057082557678222656e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.367090135812759399e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.367090135812759399e-01,6.639317870140075684e-01,1.460799980163574219e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.947308349609375000e+01,2.187724411487579346e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.255763858556747437e-01,6.620429158210754395e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.255763858556747437e-01,6.620429158210754395e-01,1.419400024414062500e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.102031135559082031e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.285855710506439209e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.285855710506439209e-01,6.642546057701110840e-01,1.451399993896484375e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.868774414062500000e+01,2.827753424644470215e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.175541371107101440e-01,6.459455490112304688e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.175541371107101440e-01,6.459455490112304688e-01,1.494200038909912109e+01,1.065999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.013297462463378906e+01,2.220329046249389648e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.251586019992828369e-01,6.622932553291320801e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.251586019992828369e-01,6.622932553291320801e-01,1.428800010681152344e+01,9.279999732971191406e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.913788032531738281e+01,2.623721063137054443e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.217544317245483398e-01,6.512710452079772949e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.217544317245483398e-01,6.512710452079772949e-01,1.526799964904785156e+01,9.399999618530273438e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.925113487243652344e+01,2.065457105636596680e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.307155281305313110e-01,6.710358262062072754e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.307155281305313110e-01,6.710358262062072754e-01,1.458600044250488281e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,7.238809204101562500e+01,2.116914689540863037e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.261193245649337769e-01,6.636090278625488281e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.261193245649337769e-01,6.636090278625488281e-01,1.490999984741210938e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.690307617187500000e+01,2.116914689540863037e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.310565710067749023e-01,6.636090278625488281e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.310565710067749023e-01,6.636090278625488281e-01,1.482600021362304688e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,4.248485183715820312e+01,2.128569185733795166e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.265446782112121582e-01,6.656379103660583496e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.265446782112121582e-01,6.656379103660583496e-01,1.500199985504150391e+01,1.089999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.063822174072265625e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.398565411567687988e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.398565411567687988e-01,6.642546057701110840e-01,1.485799980163574219e+01,1.030000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,4.874145202636718750e+02,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.366573363542556763e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.366573363542556763e-01,6.642546057701110840e-01,1.589599990844726562e+01,9.840000152587890625e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,1.725798547267913818e-01,3.555656051635742188e+01,2.201465964317321777e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.214183658361434937e-01,6.612166166305541992e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.214183658361434937e-01,6.612166166305541992e-01,1.545400047302246094e+01,1.114000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.438952636718750000e+01,2.116914689540863037e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.250361740589141846e-01,6.636090278625488281e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.250361740589141846e-01,6.636090278625488281e-01,1.614399909973144531e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,5.098796844482421875e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.247925549745559692e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.247925549745559692e-01,6.642546057701110840e-01,1.671999931335449219e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.122409820556640625e+02,2.088945060968399048e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.343835830688476562e-01,6.704612970352172852e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.343835830688476562e-01,6.704612970352172852e-01,1.680999946594238281e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.760878372192382812e+01,2.116914689540863037e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.239582836627960205e-01,6.636090278625488281e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.239582836627960205e-01,6.636090278625488281e-01,1.758200073242187500e+01,1.002000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.643156433105468750e+01,2.202995568513870239e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.225527465343475342e-01,6.616050004959106445e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.225527465343475342e-01,6.616050004959106445e-01,1.740200042724609375e+01,1.031999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.670294189453125000e+01,2.272958010435104370e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.172063589096069336e-01,6.615652441978454590e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.172063589096069336e-01,6.615652441978454590e-01,1.794199943542480469e+01,1.323999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,8.684489440917968750e+01,2.757589519023895264e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.093645781278610229e-01,6.488163471221923828e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.093645781278610229e-01,6.488163471221923828e-01,1.856200027465820312e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.475191497802734375e+01,3.989365398883819580e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.110721021890640259e-01,6.292897462844848633e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.110721021890640259e-01,6.292897462844848633e-01,1.765999984741210938e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,4.511977233886718750e+02,2.261350750923156738e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.175754010677337646e-01,6.597304940223693848e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.175754010677337646e-01,6.597304940223693848e-01,1.776000022888183594e+01,1.150000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.702048492431640625e+01,2.206225693225860596e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.118549495935440063e-01,6.616476774215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.118549495935440063e-01,6.616476774215698242e-01,1.670199966430664062e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.142148399353027344e+01,6.336679458618164062e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.099090069532394409e-01,6.091451644897460938e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.099090069532394409e-01,6.091451644897460938e-01,1.662400054931640625e+01,1.343999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.417956542968750000e+01,2.109863013029098511e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.307946979999542236e-01,6.632862091064453125e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.307946979999542236e-01,6.632862091064453125e-01,1.573400020599365234e+01,1.039999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.184133911132812500e+01,2.114581763744354248e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.255368679761886597e-01,6.651518940925598145e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.255368679761886597e-01,6.651518940925598145e-01,1.544999980926513672e+01,1.143999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.177131843566894531e+01,2.282289862632751465e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.253923267126083374e-01,6.578574776649475098e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.253923267126083374e-01,6.578574776649475098e-01,1.592000007629394531e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.838403511047363281e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.361676096916198730e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.361676096916198730e-01,6.639317870140075684e-01,1.455399990081787109e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.004788780212402344e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.393057644367218018e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.393057644367218018e-01,6.645773649215698242e-01,1.396800041198730469e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,1.257980468750000000e+03,2.167053222656250000e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.186622917652130127e-01,6.618710756301879883e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.186622917652130127e-01,6.618710756301879883e-01,1.438199996948242188e+01,1.065999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.005311584472656250e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.399464100599288940e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.399464100599288940e-01,6.645773649215698242e-01,1.486800003051757812e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.775401878356933594e+01,2.152173072099685669e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.359232306480407715e-01,6.652230024337768555e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.359232306480407715e-01,6.652230024337768555e-01,1.442199993133544922e+01,1.085999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.221125793457031250e+01,2.095996737480163574e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.356566190719604492e-01,6.707841157913208008e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.356566190719604492e-01,6.707841157913208008e-01,1.398600006103515625e+01,1.057999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.484702682495117188e+01,2.135736793279647827e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.365191280841827393e-01,6.661202907562255859e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.365191280841827393e-01,6.661202907562255859e-01,1.520600032806396484e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.040010070800781250e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.303905189037322998e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.303905189037322998e-01,6.645773649215698242e-01,1.527000045776367188e+01,1.106000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.339817810058593750e+01,3.040792644023895264e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.175046950578689575e-01,6.476593613624572754e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.175046950578689575e-01,6.476593613624572754e-01,1.521800041198730469e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.320440673828125000e+01,2.095996737480163574e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.242040932178497314e-01,6.707841157913208008e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.242040932178497314e-01,6.707841157913208008e-01,1.533399963378906250e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,4.086832809448242188e+01,2.240267395973205566e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.190065830945968628e-01,6.610813140869140625e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.190065830945968628e-01,6.610813140869140625e-01,1.556999969482421875e+01,1.231999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.547595214843750000e+02,5.202227234840393066e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.077798694372177124e-01,6.225774884223937988e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.077798694372177124e-01,6.225774884223937988e-01,1.594600009918212891e+01,1.314000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.978366470336914062e+01,6.100007295608520508e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.083785831928253174e-01,6.075242161750793457e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.083785831928253174e-01,6.075242161750793457e-01,1.610000038146972656e+01,1.418000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.542302012443542480e-02,3.505981063842773438e+01,2.187986969947814941e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.247449457645416260e-01,6.636152267456054688e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.247449457645416260e-01,6.636152267456054688e-01,1.531599998474121094e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.906787681579589844e+01,2.065694332122802734e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.461840659379959106e-01,6.791792511940002441e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.461840659379959106e-01,6.791792511940002441e-01,1.546800041198730469e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.813364601135253906e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.430273741483688354e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.430273741483688354e-01,6.642546057701110840e-01,1.511400032043457031e+01,1.084000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.508711242675781250e+01,2.128685116767883301e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.588737308979034424e-01,6.657974720001220703e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.588737308979034424e-01,6.657974720001220703e-01,1.506400012969970703e+01,1.050000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.229096984863281250e+01,2.139083594083786011e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.251992225646972656e-01,6.687233448028564453e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.251992225646972656e-01,6.687233448028564453e-01,1.564000034332275391e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.735517120361328125e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.360769063234329224e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.360769063234329224e-01,6.645773649215698242e-01,1.616600036621093750e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,5.137332916259765625e+01,2.121633440256118774e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.483634799718856812e-01,6.654746532440185547e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.483634799718856812e-01,6.654746532440185547e-01,1.571599960327148438e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.807148437500000000e+02,2.135736793279647827e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.417414933443069458e-01,6.661202907562255859e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.417414933443069458e-01,6.661202907562255859e-01,1.496399974822998047e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.035498809814453125e+01,2.100715488195419312e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.326051592826843262e-01,6.726497411727905273e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.326051592826843262e-01,6.726497411727905273e-01,1.610000038146972656e+01,1.103999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.542302012443542480e-02,2.862320899963378906e+01,2.100957036018371582e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.476762235164642334e-01,6.689199805259704590e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.476762235164642334e-01,6.689199805259704590e-01,1.636400032043457031e+01,1.084000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.116213989257812500e+01,2.109863013029098511e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.316514700651168823e-01,6.632862091064453125e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.316514700651168823e-01,6.632862091064453125e-01,1.712999916076660156e+01,1.226000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.201366043090820312e+01,2.152173072099685669e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.402156442403793335e-01,6.652230024337768555e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.402156442403793335e-01,6.652230024337768555e-01,1.684000015258789062e+01,1.192000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.014879798889160156e+01,2.116914689540863037e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.245527356863021851e-01,6.636090278625488281e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.245527356863021851e-01,6.636090278625488281e-01,1.754199981689453125e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.388626098632812500e+01,2.144676446914672852e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.234471589326858521e-01,6.677019000053405762e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.234471589326858521e-01,6.677019000053405762e-01,1.833399963378906250e+01,1.261999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.101487159729003906e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.404777407646179199e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.404777407646179199e-01,6.645773649215698242e-01,1.744400024414062500e+01,1.192000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.400045623779296875e+02,2.341209053993225098e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.197491675615310669e-01,6.717273592948913574e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.197491675615310669e-01,6.717273592948913574e-01,1.895400047302246094e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.344964294433593750e+02,4.643504321575164795e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.093997895717620850e-01,6.281454563140869141e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.093997895717620850e-01,6.281454563140869141e-01,1.946599960327148438e+01,1.285999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,4.384451293945312500e+01,2.156891822814941406e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.252031415700912476e-01,6.670886278152465820e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.252031415700912476e-01,6.670886278152465820e-01,1.781999969482421875e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.265144348144531250e+01,2.108204364776611328e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.214086204767227173e-01,6.686451435089111328e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.214086204767227173e-01,6.686451435089111328e-01,1.840600013732910156e+01,1.230000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.930998229980468750e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.271919250488281250e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.271919250488281250e-01,6.639317870140075684e-01,1.828199958801269531e+01,1.064000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.312750244140625000e+01,2.128685116767883301e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.344204336404800415e-01,6.657974720001220703e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.344204336404800415e-01,6.657974720001220703e-01,1.774200057983398438e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.542302012443542480e-02,6.982088470458984375e+01,6.903078556060791016e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.068100273609161377e-01,6.038878560066223145e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.068100273609161377e-01,6.038878560066223145e-01,1.844000053405761719e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.663879776000976562e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.225635945796966553e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.225635945796966553e-01,6.645773649215698242e-01,1.684199905395507812e+01,1.142000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.223107528686523438e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.243368029594421387e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.243368029594421387e-01,6.645773649215698242e-01,1.738800048828125000e+01,1.150000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.132119750976562500e+01,2.911948859691619873e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.122379243373870850e-01,6.510118246078491211e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.122379243373870850e-01,6.510118246078491211e-01,1.707200050354003906e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.295088577270507812e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.269755303859710693e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.269755303859710693e-01,6.639317870140075684e-01,1.681399917602539062e+01,1.114000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.467889404296875000e+01,4.362501800060272217e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.141411602497100830e-01,6.245172023773193359e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.141411602497100830e-01,6.245172023773193359e-01,1.617399978637695312e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.988872909545898438e+01,2.206225693225860596e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.226589620113372803e-01,6.616476774215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.226589620113372803e-01,6.616476774215698242e-01,1.577200031280517578e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.249475479125976562e+01,3.680148124694824219e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.160389870405197144e-01,6.372962594032287598e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.160389870405197144e-01,6.372962594032287598e-01,1.585200023651123047e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.979682350158691406e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.535524666309356689e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.535524666309356689e-01,6.639317870140075684e-01,1.442199993133544922e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.648825073242187500e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.349653244018554688e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.349653244018554688e-01,6.639317870140075684e-01,1.506599998474121094e+01,1.064000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.330925750732421875e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.424906790256500244e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.424906790256500244e-01,6.642546057701110840e-01,1.513399982452392578e+01,1.181999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.643612533807754517e-01,2.982900428771972656e+01,2.115945518016815186e-01,1.000000000000000000e+00,7.158801555633544922e-01,2.416391372680664062e-01,6.663200855255126953e-01,1.000000000000000000e+00,7.158801555633544922e-01,2.416391372680664062e-01,6.663200855255126953e-01,1.414999961853027344e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.893481636047363281e+01,2.110100090503692627e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.475888878107070923e-01,6.714296936988830566e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.475888878107070923e-01,6.714296936988830566e-01,1.481200027465820312e+01,1.135999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.669193267822265625e+01,2.095996737480163574e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.336758524179458618e-01,6.707841157913208008e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.336758524179458618e-01,6.707841157913208008e-01,1.497999954223632812e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.213299560546875000e+01,2.088945060968399048e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.383262962102890015e-01,6.704612970352172852e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.383262962102890015e-01,6.704612970352172852e-01,1.499600028991699219e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.631146621704101562e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.345207929611206055e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.345207929611206055e-01,6.642546057701110840e-01,1.516800022125244141e+01,1.119999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.161237335205078125e+01,2.093547880649566650e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.323555648326873779e-01,6.721674203872680664e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.323555648326873779e-01,6.721674203872680664e-01,1.516800022125244141e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.671485328674316406e+01,2.134932279586791992e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.368280291557312012e-01,6.624172329902648926e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.368280291557312012e-01,6.624172329902648926e-01,1.533600044250488281e+01,9.819999694824218750e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,1.097325439453125000e+02,2.018293887376785278e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.397813647985458374e-01,6.851841807365417480e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.397813647985458374e-01,6.851841807365417480e-01,1.564799976348876953e+01,1.165999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.757572937011718750e+01,2.128569185733795166e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.332122027873992920e-01,6.656379103660583496e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.332122027873992920e-01,6.656379103660583496e-01,1.602199935913085938e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,5.039036621093750000e+03,5.261510610580444336e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.155492454767227173e-01,6.312972307205200195e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.155492454767227173e-01,6.312972307205200195e-01,1.729800033569335938e+01,1.227999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,1.870137939453125000e+03,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.373868077993392944e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.373868077993392944e-01,6.645773649215698242e-01,1.676600074768066406e+01,1.253999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.381063842773437500e+01,2.074962854385375977e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.262950241565704346e-01,6.777996420860290527e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.262950241565704346e-01,6.777996420860290527e-01,1.670000076293945312e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,3.287497711181640625e+01,4.366948604583740234e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.124535143375396729e-01,6.311015486717224121e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.124535143375396729e-01,6.311015486717224121e-01,1.788400077819824219e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.346549224853515625e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.306546270847320557e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.306546270847320557e-01,6.642546057701110840e-01,1.718600082397460938e+01,1.026000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.996018600463867188e+01,2.705722451210021973e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.263968586921691895e-01,6.514440774917602539e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.263968586921691895e-01,6.514440774917602539e-01,1.718799972534179688e+01,1.177999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,6.408719635009765625e+01,2.088945060968399048e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.351988852024078369e-01,6.704612970352172852e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.351988852024078369e-01,6.704612970352172852e-01,1.758600044250488281e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.930906677246093750e+01,2.095996737480163574e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.347100377082824707e-01,6.707841157913208008e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.347100377082824707e-01,6.707841157913208008e-01,1.785600090026855469e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.149155616760253906e+01,2.100775092840194702e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.320406287908554077e-01,6.724815368652343750e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.320406287908554077e-01,6.724815368652343750e-01,1.725799942016601562e+01,1.203999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,4.607188415527343750e+01,2.844159901142120361e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.198745906352996826e-01,6.471698284149169922e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.198745906352996826e-01,6.471698284149169922e-01,1.713599967956542969e+01,1.185999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.583816909790039062e+01,2.277377098798751831e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.269836962223052979e-01,6.658264398574829102e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.269836962223052979e-01,6.658264398574829102e-01,1.723999977111816406e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.781473350524902344e+01,4.506974816322326660e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.212917804718017578e-01,6.180035471916198730e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.212917804718017578e-01,6.180035471916198730e-01,1.782999992370605469e+01,1.227999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.715963363647460938e+01,2.074841707944869995e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.514455914497375488e-01,6.698157191276550293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.514455914497375488e-01,6.698157191276550293e-01,1.623399925231933594e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.511714935302734375e+01,2.074841707944869995e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.286810576915740967e-01,6.698157191276550293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.286810576915740967e-01,6.698157191276550293e-01,1.624600028991699219e+01,1.218000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.388305664062500000e+01,2.159224748611450195e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.490132004022598267e-01,6.655457615852355957e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.490132004022598267e-01,6.655457615852355957e-01,1.582400035858154297e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.600436019897460938e+01,2.063124328851699829e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.367987781763076782e-01,6.725786924362182617e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.367987781763076782e-01,6.725786924362182617e-01,1.553800010681152344e+01,1.327999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.278634262084960938e+01,2.072508782148361206e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.316827476024627686e-01,6.713585853576660156e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.316827476024627686e-01,6.713585853576660156e-01,1.632600021362304688e+01,1.214000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.946248245239257812e+01,2.159224748611450195e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.380175888538360596e-01,6.655457615852355957e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.380175888538360596e-01,6.655457615852355957e-01,1.592800045013427734e+01,1.189999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.222984166815876961e-03,6.011787796020507812e+01,2.106020748615264893e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.353843897581100464e-01,6.701561808586120605e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.353843897581100464e-01,6.701561808586120605e-01,1.639399909973144531e+01,1.150000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,4.689992904663085938e+01,2.128685116767883301e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.399093359708786011e-01,6.657974720001220703e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.399093359708786011e-01,6.657974720001220703e-01,1.588000011444091797e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.870165252685546875e+01,2.291480749845504761e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.295666933059692383e-01,6.686201691627502441e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.295666933059692383e-01,6.686201691627502441e-01,1.610600090026855469e+01,1.123999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.388282012939453125e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.261019945144653320e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.261019945144653320e-01,6.645773649215698242e-01,1.561400032043457031e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.702390335500240326e-03,3.185653686523437500e+01,2.094680070877075195e-01,1.000000000000000000e+00,9.236990809440612793e-01,2.359538674354553223e-01,6.713285446166992188e-01,1.000000000000000000e+00,9.236990809440612793e-01,2.359538674354553223e-01,6.713285446166992188e-01,1.596599960327148438e+01,1.103999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.357189863920211792e-01,3.006529235839843750e+01,2.083092033863067627e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.369227409362792969e-01,6.671521663665771484e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.369227409362792969e-01,6.671521663665771484e-01,1.655400085449218750e+01,1.076000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.019268989562988281e+01,3.874478042125701904e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.200963646173477173e-01,6.308914422988891602e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.200963646173477173e-01,6.308914422988891602e-01,1.733600044250488281e+01,1.300000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.057822608947753906e+01,3.253263831138610840e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.214637398719787598e-01,6.523570418357849121e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.214637398719787598e-01,6.523570418357849121e-01,1.630800056457519531e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.319317245483398438e+01,5.734674334526062012e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.108965814113616943e-01,6.124495267868041992e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.108965814113616943e-01,6.124495267868041992e-01,1.757799911499023438e+01,1.168000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.106404304504394531e+01,2.136750668287277222e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.315863072872161865e-01,6.702662110328674316e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.315863072872161865e-01,6.702662110328674316e-01,1.720800018310546875e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.536320877075195312e+01,2.137953639030456543e-01,1.000000000000000000e+00,6.875880956649780273e-01,2.273160815238952637e-01,6.644178628921508789e-01,1.000000000000000000e+00,6.875880956649780273e-01,2.273160815238952637e-01,6.644178628921508789e-01,1.640800094604492188e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.542302012443542480e-02,2.888737678527832031e+01,2.105559855699539185e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.350783795118331909e-01,6.706260442733764648e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.350783795118331909e-01,6.706260442733764648e-01,1.580399990081787109e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.751085472106933594e+01,2.074841707944869995e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.395089715719223022e-01,6.698157191276550293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.395089715719223022e-01,6.698157191276550293e-01,1.607999992370605469e+01,1.111999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,9.388630837202072144e-02,2.885940933227539062e+01,2.119368463754653931e-01,1.000000000000000000e+00,7.675763368606567383e-01,2.380332946777343750e-01,6.685288548469543457e-01,1.000000000000000000e+00,7.675763368606567383e-01,2.380332946777343750e-01,6.685288548469543457e-01,1.551599979400634766e+01,1.202000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.859599494934082031e+01,2.135736793279647827e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.304047197103500366e-01,6.661202907562255859e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.304047197103500366e-01,6.661202907562255859e-01,1.603800010681152344e+01,1.176000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.825832557678222656e+01,2.159224748611450195e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.329143583774566650e-01,6.655457615852355957e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.329143583774566650e-01,6.655457615852355957e-01,1.542000007629394531e+01,1.057999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,3.777289581298828125e+01,2.246540486812591553e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.326800525188446045e-01,6.656515598297119141e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.326800525188446045e-01,6.656515598297119141e-01,1.656800079345703125e+01,1.218000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,2.894980430603027344e+01,2.095566540956497192e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.431157976388931274e-01,6.684805154800415039e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.431157976388931274e-01,6.684805154800415039e-01,1.660400009155273438e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.980543708801269531e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.388322055339813232e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.388322055339813232e-01,6.645773649215698242e-01,1.675600051879882812e+01,1.131999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.230981063842773438e+01,2.121633440256118774e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.293259352445602417e-01,6.654746532440185547e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.293259352445602417e-01,6.654746532440185547e-01,1.787800025939941406e+01,1.211999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.577276992797851562e+01,2.640281617641448975e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.271886914968490601e-01,6.695065498352050781e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.271886914968490601e-01,6.695065498352050781e-01,1.739800071716308594e+01,1.097999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.111502265930175781e+01,2.166276425123214722e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.294294536113739014e-01,6.658685803413391113e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.294294536113739014e-01,6.658685803413391113e-01,1.768199920654296875e+01,1.143999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,5.094724609375000000e+03,2.477826327085494995e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.235292494297027588e-01,6.560330986976623535e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.235292494297027588e-01,6.560330986976623535e-01,1.740600013732910156e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.467177963256835938e+01,2.152144014835357666e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.270541489124298096e-01,6.650493741035461426e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.270541489124298096e-01,6.650493741035461426e-01,1.860400009155273438e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.337113142013549805e-02,2.934898567199707031e+01,2.239853739738464355e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.234683185815811157e-01,6.647884845733642578e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.234683185815811157e-01,6.647884845733642578e-01,1.747400093078613281e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.882730916142463684e-02,2.865927505493164062e+01,5.554612874984741211e-01,1.000000000000000000e+00,8.336168527603149414e-01,2.170159518718719482e-01,6.195567846298217773e-01,1.000000000000000000e+00,8.336168527603149414e-01,2.170159518718719482e-01,6.195567846298217773e-01,1.802400016784667969e+01,1.343999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.280196762084960938e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.313640266656875610e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.313640266656875610e-01,6.639317870140075684e-01,1.640999984741210938e+01,1.131999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,9.389044189453125000e+01,3.109448850154876709e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.166542857885360718e-01,6.471437811851501465e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.166542857885360718e-01,6.471437811851501465e-01,1.727000045776367188e+01,1.276000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.869842338562011719e+01,2.115823477506637573e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.564670145511627197e-01,6.731620430946350098e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.564670145511627197e-01,6.731620430946350098e-01,1.599600028991699219e+01,1.176000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.466506195068359375e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.425059974193572998e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.425059974193572998e-01,6.639317870140075684e-01,1.586200046539306641e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.086945152282714844e+01,2.356947660446166992e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.285630553960800171e-01,6.643723845481872559e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.285630553960800171e-01,6.643723845481872559e-01,1.625600051879882812e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.391537857055664062e+01,2.095996737480163574e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.297295182943344116e-01,6.707841157913208008e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.297295182943344116e-01,6.707841157913208008e-01,1.626600074768066406e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.508297729492187500e+02,2.539809048175811768e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.313767671585083008e-01,6.642733812332153320e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.313767671585083008e-01,6.642733812332153320e-01,1.711199951171875000e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.591123390197753906e+01,2.075078785419464111e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.506061494350433350e-01,6.779591441154479980e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.506061494350433350e-01,6.779591441154479980e-01,1.610400009155273438e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.501399230957031250e+01,2.042082101106643677e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.503778934478759766e-01,6.802813410758972168e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.503778934478759766e-01,6.802813410758972168e-01,1.637400054931640625e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.650814247131347656e+01,2.117151767015457153e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.402946054935455322e-01,6.717524528503417969e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.402946054935455322e-01,6.717524528503417969e-01,1.554199981689453125e+01,9.560000419616699219e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,1.314329833984375000e+03,2.159224748611450195e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.337278574705123901e-01,6.655457615852355957e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.337278574705123901e-01,6.655457615852355957e-01,1.588599967956542969e+01,1.053999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.815468406677246094e+01,2.159108668565750122e-01,1.000000000000000000e+00,6.875880956649780273e-01,2.405003011226654053e-01,6.653861999511718750e-01,1.000000000000000000e+00,6.875880956649780273e-01,2.405003011226654053e-01,6.653861999511718750e-01,1.720999908447265625e+01,1.115999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.986636504530906677e-02,2.727753448486328125e+01,7.023237943649291992e-01,1.000000000000000000e+00,7.917028069496154785e-01,2.157158553600311279e-01,5.981681346893310547e-01,1.000000000000000000e+00,7.917028069496154785e-01,2.157158553600311279e-01,5.981681346893310547e-01,1.676799964904785156e+01,1.265999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.066228675842285156e+01,2.109158784151077271e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.361432611942291260e-01,6.738942861557006836e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.361432611942291260e-01,6.738942861557006836e-01,1.709199905395507812e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.734188270568847656e+01,2.459410429000854492e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.308336198329925537e-01,6.557812690734863281e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.308336198329925537e-01,6.557812690734863281e-01,1.694599914550781250e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.973799133300781250e+01,2.540789544582366943e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.307760119438171387e-01,6.554061174392700195e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.307760119438171387e-01,6.554061174392700195e-01,1.715600013732910156e+01,1.268000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.253862792968750000e+03,2.053923755884170532e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.357838153839111328e-01,6.769908070564270020e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.357838153839111328e-01,6.769908070564270020e-01,1.675799942016601562e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.597238159179687500e+01,2.093547880649566650e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.440033406019210815e-01,6.721674203872680664e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.440033406019210815e-01,6.721674203872680664e-01,1.662199974060058594e+01,1.292000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.247941589355468750e+01,2.095046639442443848e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.359991371631622314e-01,6.725326776504516602e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.359991371631622314e-01,6.725326776504516602e-01,1.655200004577636719e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.421025848388671875e+01,2.103048413991928101e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.358900606632232666e-01,6.711068749427795410e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.358900606632232666e-01,6.711068749427795410e-01,1.746400070190429688e+01,1.219999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.118843231201171875e+02,3.147903978824615479e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.262786477804183960e-01,6.448209285736083984e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.262786477804183960e-01,6.448209285736083984e-01,1.699600028991699219e+01,1.123999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.378589782714843750e+02,2.066812515258789062e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.437592297792434692e-01,6.787285804748535156e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.437592297792434692e-01,6.787285804748535156e-01,1.762800025939941406e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.643612533807754517e-01,2.999518203735351562e+01,2.243329137563705444e-01,1.000000000000000000e+00,7.158801555633544922e-01,2.336105257272720337e-01,6.628293991088867188e-01,1.000000000000000000e+00,7.158801555633544922e-01,2.336105257272720337e-01,6.628293991088867188e-01,1.796999931335449219e+01,1.226000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.947094917297363281e+01,2.030015289783477783e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.415097206830978394e-01,6.780644655227661133e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.415097206830978394e-01,6.780644655227661133e-01,1.821999931335449219e+01,1.293999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.337113142013549805e-02,3.646772003173828125e+01,2.352076172828674316e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.298027426004409790e-01,6.635736823081970215e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.298027426004409790e-01,6.635736823081970215e-01,1.816399955749511719e+01,1.303999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.140053939819335938e+01,2.018770128488540649e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.367855757474899292e-01,6.778146624565124512e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.367855757474899292e-01,6.778146624565124512e-01,1.799399948120117188e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.936230468750000000e+01,2.034453302621841431e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.396032512187957764e-01,6.797783970832824707e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.396032512187957764e-01,6.797783970832824707e-01,1.847200012207031250e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.281717300415039062e+01,2.071313410997390747e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.308809459209442139e-01,6.766769289970397949e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.308809459209442139e-01,6.766769289970397949e-01,1.864999961853027344e+01,1.193999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.893837928771972656e+01,2.100477218627929688e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.332455217838287354e-01,6.734810471534729004e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.332455217838287354e-01,6.734810471534729004e-01,1.841600036621093750e+01,1.253999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.126813888549804688e+01,2.104062288999557495e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.314805090427398682e-01,6.752528548240661621e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.314805090427398682e-01,6.752528548240661621e-01,1.889999961853027344e+01,1.188000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,4.184457015991210938e+01,4.048413336277008057e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.218056917190551758e-01,6.278631687164306641e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.218056917190551758e-01,6.278631687164306641e-01,1.890200042724609375e+01,1.273999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.436377334594726562e+01,4.265233874320983887e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.213527858257293701e-01,6.184183359146118164e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.213527858257293701e-01,6.184183359146118164e-01,1.949799919128417969e+01,1.492000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.306588363647460938e+01,1.998598873615264893e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.423006594181060791e-01,6.833836436271667480e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.423006594181060791e-01,6.833836436271667480e-01,1.929000091552734375e+01,1.406000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.862531471252441406e+01,2.573359608650207520e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.309242337942123413e-01,6.646639108657836914e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.309242337942123413e-01,6.646639108657836914e-01,1.895199966430664062e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,8.029289245605468750e+01,3.719488978385925293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.245538979768753052e-01,6.513236761093139648e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.245538979768753052e-01,6.513236761093139648e-01,1.852000045776367188e+01,1.284000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.222984166815876961e-03,2.878455734252929688e+01,2.816537618637084961e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.294747382402420044e-01,6.531065702438354492e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.294747382402420044e-01,6.531065702438354492e-01,1.789200019836425781e+01,1.153999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,2.914068603515625000e+01,2.107137888669967651e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.370181232690811157e-01,6.678071022033691406e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.370181232690811157e-01,6.678071022033691406e-01,1.731599998474121094e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.616039085388183594e+01,2.159224748611450195e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.372721284627914429e-01,6.655457615852355957e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.372721284627914429e-01,6.655457615852355957e-01,1.665200042724609375e+01,1.230000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.613982963562011719e+01,2.064342349767684937e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.565861642360687256e-01,6.749523282051086426e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.565861642360687256e-01,6.749523282051086426e-01,1.641200065612792969e+01,1.168000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.052454131901198916e-32,3.016667938232421875e+01,2.082006186246871948e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.516136765480041504e-01,6.788095235824584961e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.516136765480041504e-01,6.788095235824584961e-01,1.617600059509277344e+01,1.185999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.482133178710937500e+02,2.152059674263000488e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.521973550319671631e-01,6.691786646842956543e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.521973550319671631e-01,6.691786646842956543e-01,1.603400039672851562e+01,1.152000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.557250404357910156e+01,2.055357694625854492e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.459956407546997070e-01,6.788567900657653809e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.459956407546997070e-01,6.788567900657653809e-01,1.676600074768066406e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.552286529541015625e+01,2.093648910522460938e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.568139731884002686e-01,6.758196949958801270e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.568139731884002686e-01,6.758196949958801270e-01,1.626799964904785156e+01,1.165999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.654358291625976562e+01,2.060904204845428467e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.580886781215667725e-01,6.827925443649291992e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.580886781215667725e-01,6.827925443649291992e-01,1.682600021362304688e+01,1.165999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.587454605102539062e+01,2.052595466375350952e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.440549731254577637e-01,6.784003376960754395e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.440549731254577637e-01,6.784003376960754395e-01,1.675799942016601562e+01,1.268000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.552155876159667969e+01,2.203765064477920532e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.549099624156951904e-01,6.665259003639221191e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.549099624156951904e-01,6.665259003639221191e-01,1.752199935913085938e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.990701934322714806e-03,3.183002471923828125e+01,2.084268927574157715e-01,1.000000000000000000e+00,9.459328055381774902e-01,2.420680969953536987e-01,6.741295456886291504e-01,1.000000000000000000e+00,9.459328055381774902e-01,2.420680969953536987e-01,6.741295456886291504e-01,1.845199966430664062e+01,1.307999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.644465255737304688e+01,2.176257669925689697e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.370645999908447266e-01,6.812971830368041992e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.370645999908447266e-01,6.812971830368041992e-01,1.919400024414062500e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.257694065570831299e-01,3.527956771850585938e+01,2.097591459751129150e-01,1.000000000000000000e+00,7.658076286315917969e-01,2.446160167455673218e-01,6.721537113189697266e-01,1.000000000000000000e+00,7.658076286315917969e-01,2.446160167455673218e-01,6.721537113189697266e-01,1.943199920654296875e+01,1.393999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.495086669921875000e+01,4.481541514396667480e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.182883173227310181e-01,6.336382031440734863e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.182883173227310181e-01,6.336382031440734863e-01,2.119000053405761719e+01,1.604000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,7.579712569713592529e-02,2.843451881408691406e+01,3.822562098503112793e-01,1.000000000000000000e+00,7.764586806297302246e-01,2.278445512056350708e-01,6.321094036102294922e-01,1.000000000000000000e+00,7.764586806297302246e-01,2.278445512056350708e-01,6.321094036102294922e-01,2.164999961853027344e+01,1.726000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.929745101928710938e+01,2.315325140953063965e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.340256720781326294e-01,6.723936200141906738e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.340256720781326294e-01,6.723936200141906738e-01,2.150399971008300781e+01,1.419999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.549041748046875000e+02,3.964714109897613525e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.268827408552169800e-01,6.342055201530456543e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.268827408552169800e-01,6.342055201530456543e-01,2.040399932861328125e+01,1.484000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.677093887329101562e+01,2.544285655021667480e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.372017353773117065e-01,6.671537160873413086e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.372017353773117065e-01,6.671537160873413086e-01,2.046400070190429688e+01,1.269999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.776398849487304688e+01,2.233717143535614014e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.403659820556640625e-01,6.736893653869628906e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.403659820556640625e-01,6.736893653869628906e-01,2.013599967956542969e+01,1.510000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.696296501159667969e+01,2.001366913318634033e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.504665851593017578e-01,6.818563342094421387e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.504665851593017578e-01,6.818563342094421387e-01,1.933799934387207031e+01,1.306000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.075802993774414062e+01,2.105109244585037231e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.446223944425582886e-01,6.850640177726745605e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.446223944425582886e-01,6.850640177726745605e-01,1.886599922180175781e+01,1.306000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.975730133056640625e+01,3.577319681644439697e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.377711236476898193e-01,6.461546421051025391e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.377711236476898193e-01,6.461546421051025391e-01,1.818199920654296875e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.479793739318847656e+01,2.550404071807861328e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.470009326934814453e-01,6.675612926483154297e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.470009326934814453e-01,6.675612926483154297e-01,1.722400093078613281e+01,1.414000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.208369827270507812e+01,2.055267542600631714e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.642133831977844238e-01,6.769531965255737305e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.642133831977844238e-01,6.769531965255737305e-01,1.667799949645996094e+01,1.288000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.184647178649902344e+01,1.974769681692123413e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.628732025623321533e-01,6.835024356842041016e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.628732025623321533e-01,6.835024356842041016e-01,1.670999908447265625e+01,1.168000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.331375122070312500e+01,2.076161503791809082e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.621643543243408203e-01,6.748132705688476562e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.621643543243408203e-01,6.748132705688476562e-01,1.652000045776367188e+01,1.365999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.157362836513978307e-32,7.639243774414062500e+02,2.099421471357345581e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.605722248554229736e-01,6.794806718826293945e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.605722248554229736e-01,6.794806718826293945e-01,1.691399955749511719e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.677590560913085938e+01,2.127933651208877563e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.568765282630920410e-01,6.670458316802978516e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.568765282630920410e-01,6.670458316802978516e-01,1.672599983215332031e+01,1.207999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.542533493041992188e+01,1.974934786558151245e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.618940770626068115e-01,6.979661583900451660e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.618940770626068115e-01,6.979661583900451660e-01,1.802799987792968750e+01,1.377999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.523757743835449219e+01,2.043073177337646484e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629465758800506592e-01,6.789517402648925781e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629465758800506592e-01,6.789517402648925781e-01,1.788400077819824219e+01,1.356000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.091280937194824219e+01,2.029010802507400513e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.695012986660003662e-01,6.834940910339355469e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.695012986660003662e-01,6.834940910339355469e-01,1.814399909973144531e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.706209689378738403e-02,2.551213836669921875e+01,2.092783302068710327e-01,1.000000000000000000e+00,8.511508107185363770e-01,2.528682649135589600e-01,6.742988824844360352e-01,1.000000000000000000e+00,8.511508107185363770e-01,2.528682649135589600e-01,6.742988824844360352e-01,1.915399932861328125e+01,1.477999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.737831306457519531e+01,2.031636238098144531e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.598058283329010010e-01,6.790094971656799316e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.598058283329010010e-01,6.790094971656799316e-01,1.951799964904785156e+01,1.247999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.009802818298339844e+01,2.005535662174224854e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.530204951763153076e-01,6.866278648376464844e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.530204951763153076e-01,6.866278648376464844e-01,1.972800064086914062e+01,1.242000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.032221923828125000e+03,2.605173885822296143e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.408908456563949585e-01,6.593622565269470215e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.408908456563949585e-01,6.593622565269470215e-01,2.180599975585937500e+01,1.518000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.673273468017578125e+01,2.064561694860458374e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.456376254558563232e-01,6.827380061149597168e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.456376254558563232e-01,6.827380061149597168e-01,2.141799926757812500e+01,1.381999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.238286972045898438e+01,4.309421777725219727e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.206939309835433960e-01,6.338387727737426758e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.206939309835433960e-01,6.338387727737426758e-01,2.228599929809570312e+01,1.739999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.222984166815876961e-03,2.938327980041503906e+01,3.396455645561218262e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.316464483737945557e-01,6.434888243675231934e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.316464483737945557e-01,6.434888243675231934e-01,2.229400062561035156e+01,1.704000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,2.608119773864746094e+01,2.282118499279022217e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.433441579341888428e-01,6.725825667381286621e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.433441579341888428e-01,6.725825667381286621e-01,2.185799980163574219e+01,1.652000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.894695739746093750e+02,3.022345304489135742e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.315526753664016724e-01,6.535988450050354004e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.315526753664016724e-01,6.535988450050354004e-01,2.163800048828125000e+01,1.546000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,3.499824142456054688e+01,3.812075555324554443e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.340665757656097412e-01,6.334403753280639648e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.340665757656097412e-01,6.334403753280639648e-01,2.006800079345703125e+01,1.472000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.208512115478515625e+01,2.090509086847305298e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.423611730337142944e-01,6.803318858146667480e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.423611730337142944e-01,6.803318858146667480e-01,1.996999931335449219e+01,1.414000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.460245698690414429e-02,2.705929756164550781e+01,2.416508495807647705e-01,1.000000000000000000e+00,7.752781510353088379e-01,2.408921569585800171e-01,6.638792157173156738e-01,1.000000000000000000e+00,7.752781510353088379e-01,2.408921569585800171e-01,6.638792157173156738e-01,2.002199935913085938e+01,1.330000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,9.070743560791015625e+01,2.319364100694656372e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.439454793930053711e-01,6.705676913261413574e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.439454793930053711e-01,6.705676913261413574e-01,1.943199920654296875e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,3.062889671325683594e+01,2.461354881525039673e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.450331449508666992e-01,6.594967842102050781e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.450331449508666992e-01,6.594967842102050781e-01,1.888199996948242188e+01,1.334000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.700163459777832031e+01,2.305410802364349365e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.490460276603698730e-01,6.651606559753417969e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.490460276603698730e-01,6.651606559753417969e-01,1.812999916076660156e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.377770614624023438e+01,2.198141813278198242e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.493862956762313843e-01,6.683702468872070312e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.493862956762313843e-01,6.683702468872070312e-01,1.801000022888183594e+01,1.300000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.609299850463867188e+01,1.942860633134841919e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.644068896770477295e-01,6.894831061363220215e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.644068896770477295e-01,6.894831061363220215e-01,1.775200080871582031e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.052500471472740173e-02,2.779153633117675781e+01,2.077354639768600464e-01,1.000000000000000000e+00,8.943318128585815430e-01,2.676081955432891846e-01,6.770165562629699707e-01,1.000000000000000000e+00,8.943318128585815430e-01,2.676081955432891846e-01,6.770165562629699707e-01,1.750799942016601562e+01,1.296000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.398212814331054688e+01,1.988214552402496338e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.715139687061309814e-01,6.952503919601440430e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.715139687061309814e-01,6.952503919601440430e-01,1.753000068664550781e+01,1.414000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.958483123779296875e+01,2.018111199140548706e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.568883001804351807e-01,6.838590502738952637e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.568883001804351807e-01,6.838590502738952637e-01,1.633799934387207031e+01,1.323999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.342035865783691406e+01,2.487547993659973145e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.500570714473724365e-01,6.587617993354797363e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.500570714473724365e-01,6.587617993354797363e-01,1.781800079345703125e+01,1.300000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.951634216308593750e+01,1.914559900760650635e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.790015935897827148e-01,7.040464878082275391e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.790015935897827148e-01,7.040464878082275391e-01,1.794400024414062500e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.052500471472740173e-02,2.557878303527832031e+01,2.119231373071670532e-01,1.000000000000000000e+00,8.943318128585815430e-01,2.679079473018646240e-01,6.783505678176879883e-01,1.000000000000000000e+00,8.943318128585815430e-01,2.679079473018646240e-01,6.783505678176879883e-01,1.830599975585937500e+01,1.373999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.857076644897460938e+01,2.771211862564086914e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.428545057773590088e-01,6.673647761344909668e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.428545057773590088e-01,6.673647761344909668e-01,1.917799949645996094e+01,1.435999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.008849906921386719e+01,2.093249708414077759e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.485566586256027222e-01,6.779549121856689453e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.485566586256027222e-01,6.779549121856689453e-01,1.929999923706054688e+01,1.122000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,8.359762281179428101e-02,4.054878616333007812e+01,2.060927301645278931e-01,1.000000000000000000e+00,7.478666305541992188e-01,2.438005059957504272e-01,6.752948760986328125e-01,1.000000000000000000e+00,7.478666305541992188e-01,2.438005059957504272e-01,6.752948760986328125e-01,2.068199920654296875e+01,1.534000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.619657897949218750e+01,2.090432941913604736e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.518172264099121094e-01,6.798499822616577148e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.518172264099121094e-01,6.798499822616577148e-01,1.997400093078613281e+01,1.346000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.863918685913085938e+01,3.082564771175384521e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.345920652151107788e-01,6.508859395980834961e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.345920652151107788e-01,6.508859395980834961e-01,2.154400062561035156e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.578491516113281250e+02,2.057810276746749878e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.446825057268142700e-01,6.909695863723754883e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.446825057268142700e-01,6.909695863723754883e-01,2.096599960327148438e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.841949653625488281e+01,3.297992348670959473e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.298984229564666748e-01,6.544402241706848145e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.298984229564666748e-01,6.544402241706848145e-01,2.109799957275390625e+01,1.335999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.328745269775390625e+01,2.334513217210769653e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.356215864419937134e-01,6.720255613327026367e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.356215864419937134e-01,6.720255613327026367e-01,2.229999923706054688e+01,1.484000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.986636504530906677e-02,4.572253036499023438e+01,3.283083438873291016e-01,1.000000000000000000e+00,7.917028069496154785e-01,2.221557348966598511e-01,6.499982476234436035e-01,1.000000000000000000e+00,7.917028069496154785e-01,2.221557348966598511e-01,6.499982476234436035e-01,2.286599922180175781e+01,1.503999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.740335083007812500e+01,3.585806787014007568e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.288968116044998169e-01,6.372446417808532715e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.288968116044998169e-01,6.372446417808532715e-01,2.200000000000000000e+01,1.481999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,5.759107208251953125e+01,2.994988560676574707e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.372469753026962280e-01,6.651832461357116699e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.372469753026962280e-01,6.651832461357116699e-01,2.104999923706054688e+01,1.400000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.820317871093750000e+03,2.784881889820098877e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.362568974494934082e-01,6.649324297904968262e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.362568974494934082e-01,6.649324297904968262e-01,2.040200042724609375e+01,1.430000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.559590530395507812e+01,2.729961574077606201e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.380280643701553345e-01,6.632698774337768555e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.380280643701553345e-01,6.632698774337768555e-01,1.937400054931640625e+01,1.473999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,8.914829231798648834e-03,2.481393814086914062e+01,2.283629179000854492e-01,1.000000000000000000e+00,9.084251523017883301e-01,2.683885395526885986e-01,6.735589504241943359e-01,1.000000000000000000e+00,9.084251523017883301e-01,2.683885395526885986e-01,6.735589504241943359e-01,1.883200073242187500e+01,1.431999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.531056404113769531e+01,2.083087265491485596e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.517753243446350098e-01,6.740242838859558105e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.517753243446350098e-01,6.740242838859558105e-01,1.794000053405761719e+01,1.368000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.159633178710937500e+02,2.033649235963821411e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.591342031955718994e-01,6.886050701141357422e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.591342031955718994e-01,6.886050701141357422e-01,1.787599945068359375e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.292942504882812500e+03,2.009517550468444824e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.578481435775756836e-01,6.831984519958496094e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.578481435775756836e-01,6.831984519958496094e-01,1.703000068664550781e+01,1.246000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.305046844482421875e+01,2.083329260349273682e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.515222728252410889e-01,6.752956509590148926e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.515222728252410889e-01,6.752956509590148926e-01,1.744000053405761719e+01,1.281999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.383483314514160156e+01,2.050441205501556396e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.684832811355590820e-01,6.838973760604858398e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.684832811355590820e-01,6.838973760604858398e-01,1.746599960327148438e+01,1.265999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.896676826477050781e+01,1.934219598770141602e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.510297596454620361e-01,6.992835402488708496e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.510297596454620361e-01,6.992835402488708496e-01,1.757399940490722656e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.782715988159179688e+01,2.286130934953689575e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.468718141317367554e-01,6.619617342948913574e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.468718141317367554e-01,6.619617342948913574e-01,1.801600074768066406e+01,1.369999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.346113204956054688e+01,2.045728862285614014e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.621082663536071777e-01,6.825668811798095703e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.621082663536071777e-01,6.825668811798095703e-01,1.772400093078613281e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.248595428466796875e+01,3.733682632446289062e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.324977815151214600e-01,6.481133699417114258e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.324977815151214600e-01,6.481133699417114258e-01,1.896999931335449219e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.012406494140625000e+03,1.921624690294265747e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.565520405769348145e-01,6.929354071617126465e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.565520405769348145e-01,6.929354071617126465e-01,1.903000068664550781e+01,1.306000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.765410804748535156e+01,3.085850179195404053e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.396673560142517090e-01,6.514574289321899414e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.396673560142517090e-01,6.514574289321899414e-01,1.963199996948242188e+01,1.235999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.147838020324707031e+01,2.027417570352554321e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.505789697170257568e-01,6.827258467674255371e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.505789697170257568e-01,6.827258467674255371e-01,2.028000068664550781e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,2.879900932312011719e+01,2.239020019769668579e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.506264150142669678e-01,6.730085611343383789e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.506264150142669678e-01,6.730085611343383789e-01,2.003599929809570312e+01,1.339999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.795844268798828125e+01,1.991272866725921631e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.437962144613265991e-01,6.830643415451049805e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.437962144613265991e-01,6.830643415451049805e-01,2.090800094604492188e+01,1.314000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.958206176757812500e+01,2.043145745992660522e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.473330944776535034e-01,6.818389892578125000e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.473330944776535034e-01,6.818389892578125000e-01,2.093600082397460938e+01,1.497999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,4.077013015747070312e+01,2.998662590980529785e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.288253307342529297e-01,6.689795851707458496e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.288253307342529297e-01,6.689795851707458496e-01,2.134199905395507812e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.623749542236328125e+01,2.167965322732925415e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.462149858474731445e-01,6.862925291061401367e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.462149858474731445e-01,6.862925291061401367e-01,2.139399909973144531e+01,1.465999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.237294387817382812e+01,3.394106030464172363e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.300323098897933960e-01,6.470694541931152344e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.300323098897933960e-01,6.470694541931152344e-01,2.281200027465820312e+01,1.637999916076660156e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.713583564758300781e+01,2.296958565711975098e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.433560788631439209e-01,6.727758049964904785e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.433560788631439209e-01,6.727758049964904785e-01,2.096800041198730469e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.069381523132324219e+01,1.960954368114471436e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.444631457328796387e-01,6.949584484100341797e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.444631457328796387e-01,6.949584484100341797e-01,2.066600036621093750e+01,1.373999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.886872482299804688e+01,1.944770812988281250e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.536769509315490723e-01,6.882730722427368164e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.536769509315490723e-01,6.882730722427368164e-01,2.197400093078613281e+01,1.514000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.015447616577148438e+01,2.712301015853881836e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.334534972906112671e-01,6.726091504096984863e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.334534972906112671e-01,6.726091504096984863e-01,2.186199951171875000e+01,1.426000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.714048194885253906e+01,2.866546809673309326e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.393460571765899658e-01,6.546598076820373535e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.393460571765899658e-01,6.546598076820373535e-01,2.031599998474121094e+01,1.450000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,2.371725654602050781e+01,1.997018307447433472e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.658213675022125244e-01,6.863847970962524414e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.658213675022125244e-01,6.863847970962524414e-01,1.935799980163574219e+01,1.361999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.136404037475585938e+01,2.791504859924316406e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.325580120086669922e-01,6.608581542968750000e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.325580120086669922e-01,6.608581542968750000e-01,1.992200088500976562e+01,1.285999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.504998397827148438e+01,1.976155191659927368e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.613694667816162109e-01,7.005896568298339844e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.613694667816162109e-01,7.005896568298339844e-01,1.941200065612792969e+01,1.272000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.679700088500976562e+01,2.091388851404190063e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.440906465053558350e-01,6.847734451293945312e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.440906465053558350e-01,6.847734451293945312e-01,1.869799995422363281e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.668157768249511719e+01,2.015949785709381104e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.492495328187942505e-01,6.804418563842773438e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.492495328187942505e-01,6.804418563842773438e-01,1.832399940490722656e+01,1.211999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.339907073974609375e+01,1.951199918985366821e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.594599723815917969e-01,6.908007264137268066e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.594599723815917969e-01,6.908007264137268066e-01,1.805599975585937500e+01,1.357999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.753330421447753906e+01,2.183353453874588013e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.536263763904571533e-01,6.808789372444152832e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.536263763904571533e-01,6.808789372444152832e-01,1.804000091552734375e+01,1.269999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.575190353393554688e+01,1.983288526535034180e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.610074877738952637e-01,6.954050064086914062e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.610074877738952637e-01,6.954050064086914062e-01,1.792399978637695312e+01,1.439999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.690726852416992188e+01,2.094903290271759033e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.519033551216125488e-01,6.798602342605590820e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.519033551216125488e-01,6.798602342605590820e-01,1.812800025939941406e+01,1.364000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.733807373046875000e+01,2.044715732336044312e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.453506886959075928e-01,6.778276562690734863e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.453506886959075928e-01,6.778276562690734863e-01,1.892200088500976562e+01,1.388000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.825281143188476562e+01,1.901737600564956665e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.604439854621887207e-01,6.901398897171020508e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.604439854621887207e-01,6.901398897171020508e-01,1.903800010681152344e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.392605590820312500e+01,2.065882086753845215e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.400545179843902588e-01,6.808820366859436035e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.400545179843902588e-01,6.808820366859436035e-01,1.928000068664550781e+01,1.330000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.162869384765625000e+03,2.145044356584548950e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.432099431753158569e-01,6.797589659690856934e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.432099431753158569e-01,6.797589659690856934e-01,1.999399948120117188e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.617812156677246094e+01,2.184913009405136108e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.447589337825775146e-01,6.746481657028198242e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.447589337825775146e-01,6.746481657028198242e-01,2.005999946594238281e+01,1.300000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.821467208862304688e+01,2.145121395587921143e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.533566951751708984e-01,6.649001836776733398e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.533566951751708984e-01,6.649001836776733398e-01,2.026000022888183594e+01,1.288000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.395209729671478271e-01,3.424194030761718750e+02,2.167808562517166138e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.423390150070190430e-01,6.697437167167663574e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.423390150070190430e-01,6.697437167167663574e-01,2.145400047302246094e+01,1.400000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,9.321876831054687500e+02,3.123270869255065918e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.226912528276443481e-01,6.513714194297790527e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.226912528276443481e-01,6.513714194297790527e-01,2.095999908447265625e+01,1.660000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.799596023559570312e+01,3.284615576267242432e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.290453463792800903e-01,6.458185911178588867e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.290453463792800903e-01,6.458185911178588867e-01,2.067600059509277344e+01,1.468000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.098536872863769531e+01,2.836089432239532471e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.359779030084609985e-01,6.656518578529357910e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.359779030084609985e-01,6.656518578529357910e-01,2.086000061035156250e+01,1.334000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,2.789159393310546875e+01,3.396775126457214355e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.284946143627166748e-01,6.456514000892639160e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.284946143627166748e-01,6.456514000892639160e-01,2.069400024414062500e+01,1.352000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.849766540527343750e+01,3.179736435413360596e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.391530722379684448e-01,6.638168692588806152e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.391530722379684448e-01,6.638168692588806152e-01,2.103199958801269531e+01,1.710000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.031651496887207031e+01,2.027247399091720581e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.394920438528060913e-01,6.930877566337585449e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.394920438528060913e-01,6.930877566337585449e-01,1.993600082397460938e+01,1.377999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.878479003906250000e+01,1.922981888055801392e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.589004635810852051e-01,6.963324546813964844e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.589004635810852051e-01,6.963324546813964844e-01,1.955800056457519531e+01,1.411999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.272987365722656250e+01,2.055823206901550293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.602227330207824707e-01,6.841458082199096680e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.602227330207824707e-01,6.841458082199096680e-01,1.943400001525878906e+01,1.456000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.753067016601562500e+01,2.124983370304107666e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.472472637891769409e-01,6.739063262939453125e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.472472637891769409e-01,6.739063262939453125e-01,1.869199943542480469e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,3.109421539306640625e+01,2.050898075103759766e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.527059912681579590e-01,6.805379986763000488e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.527059912681579590e-01,6.805379986763000488e-01,1.854000091552734375e+01,1.253999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.754255867004394531e+01,2.117633968591690063e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.643570601940155029e-01,6.738862991333007812e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.643570601940155029e-01,6.738862991333007812e-01,1.818000030517578125e+01,1.260000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.620932960510253906e+01,2.121173590421676636e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.821485996246337891e-01,6.809366941452026367e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.821485996246337891e-01,6.809366941452026367e-01,1.777199935913085938e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.187007713317871094e+01,1.960154175758361816e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.907625734806060791e-01,6.958161592483520508e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.907625734806060791e-01,6.958161592483520508e-01,1.881800079345703125e+01,1.465999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.847830581665039062e+01,2.161028236150741577e-01,1.000000000000000000e+00,7.267113924026489258e-01,2.505243420600891113e-01,6.715974807739257812e-01,1.000000000000000000e+00,7.267113924026489258e-01,2.505243420600891113e-01,6.715974807739257812e-01,1.876199913024902344e+01,1.460000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,8.710002899169921875e+01,2.143040150403976440e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.563070356845855713e-01,6.732332706451416016e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.563070356845855713e-01,6.732332706451416016e-01,1.947200012207031250e+01,1.472000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.784002113342285156e+01,2.083101123571395874e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.499400526285171509e-01,6.838815808296203613e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.499400526285171509e-01,6.838815808296203613e-01,1.962599945068359375e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.394660949707031250e+01,2.061110585927963257e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.665687501430511475e-01,6.782622337341308594e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.665687501430511475e-01,6.782622337341308594e-01,1.942600059509277344e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,3.141628205776214600e-02,2.941878509521484375e+01,2.729428708553314209e-01,1.000000000000000000e+00,8.451017737388610840e-01,2.383639961481094360e-01,6.665596961975097656e-01,1.000000000000000000e+00,8.451017737388610840e-01,2.383639961481094360e-01,6.665596961975097656e-01,1.992000007629394531e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.531544685363769531e+01,2.136803716421127319e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.531377971172332764e-01,6.902992725372314453e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.531377971172332764e-01,6.902992725372314453e-01,2.058399963378906250e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.016568578779697418e-02,3.207923507690429688e+01,2.196133136749267578e-01,1.000000000000000000e+00,9.005404710769653320e-01,2.472548037767410278e-01,6.769095659255981445e-01,1.000000000000000000e+00,9.005404710769653320e-01,2.472548037767410278e-01,6.769095659255981445e-01,2.095599937438964844e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,3.048804664611816406e+01,2.168619930744171143e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.416489720344543457e-01,6.705344915390014648e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.416489720344543457e-01,6.705344915390014648e-01,2.157399940490722656e+01,1.542000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.672700691223144531e+01,1.913514584302902222e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629982233047485352e-01,6.959418654441833496e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629982233047485352e-01,6.959418654441833496e-01,2.051799964904785156e+01,1.323999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.326527404785156250e+01,3.690353631973266602e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.299130409955978394e-01,6.378630995750427246e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.299130409955978394e-01,6.378630995750427246e-01,2.137000083923339844e+01,1.514000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.532483291625976562e+01,2.891218662261962891e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.386000454425811768e-01,6.684280037879943848e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.386000454425811768e-01,6.684280037879943848e-01,2.137000083923339844e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.826939773559570312e+01,5.255014896392822266e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.273809015750885010e-01,6.302774548530578613e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.273809015750885010e-01,6.302774548530578613e-01,2.156599998474121094e+01,1.670000076293945312e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,2.974639511108398438e+01,2.155020833015441895e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.425522804260253906e-01,6.727030277252197266e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.425522804260253906e-01,6.727030277252197266e-01,2.098200035095214844e+01,1.376000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.337113142013549805e-02,3.338439025878906250e+02,2.781882584095001221e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.378777265548706055e-01,6.622571945190429688e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.378777265548706055e-01,6.622571945190429688e-01,2.032399940490722656e+01,1.597999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.850864601135253906e+01,3.223921656608581543e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.403378039598464966e-01,6.586799025535583496e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.403378039598464966e-01,6.586799025535583496e-01,1.917799949645996094e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.429476547241210938e+01,1.869575530290603638e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.678814232349395752e-01,7.015125751495361328e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.678814232349395752e-01,7.015125751495361328e-01,1.915200042724609375e+01,1.489999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.707675170898437500e+01,2.001029551029205322e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.500047981739044189e-01,6.866005659103393555e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.500047981739044189e-01,6.866005659103393555e-01,1.923399925231933594e+01,1.365999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.864247512817382812e+01,1.774279326200485229e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.565741539001464844e-01,7.096588015556335449e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.565741539001464844e-01,7.096588015556335449e-01,1.938400077819824219e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.226994705200195312e+01,1.994130611419677734e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.571349442005157471e-01,6.908118128776550293e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.571349442005157471e-01,6.908118128776550293e-01,1.851000022888183594e+01,1.469999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.811909675598144531e+01,1.981544941663742065e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.644851207733154297e-01,6.962162852287292480e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.644851207733154297e-01,6.962162852287292480e-01,1.895599937438964844e+01,1.406000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.334084167480468750e+02,1.978793740272521973e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.589409947395324707e-01,6.932749748229980469e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.589409947395324707e-01,6.932749748229980469e-01,1.926399993896484375e+01,1.539999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.934952926635742188e+01,1.958615183830261230e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.608999907970428467e-01,6.909568905830383301e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.608999907970428467e-01,6.909568905830383301e-01,1.938999938964843750e+01,1.407999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.157362836513978307e-32,4.263733886718750000e+03,1.886787861585617065e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.549927532672882080e-01,6.956668496131896973e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.549927532672882080e-01,6.956668496131896973e-01,2.017799949645996094e+01,1.518000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,3.448340148925781250e+02,2.059108614921569824e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.543273270130157471e-01,6.708695292472839355e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.543273270130157471e-01,6.708695292472839355e-01,1.946400070190429688e+01,1.472000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.222984166815876961e-03,2.884751701354980469e+01,3.291238248348236084e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.307061553001403809e-01,6.518482565879821777e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.307061553001403809e-01,6.518482565879821777e-01,2.186000061035156250e+01,1.742000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.946896171569824219e+01,2.933258712291717529e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.360916435718536377e-01,6.612193584442138672e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.360916435718536377e-01,6.612193584442138672e-01,2.147999954223632812e+01,1.613999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.448704147338867188e+01,1.856735050678253174e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.559248805046081543e-01,7.056252956390380859e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.559248805046081543e-01,7.056252956390380859e-01,2.190200042724609375e+01,1.663999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.913311004638671875e+01,1.825325340032577515e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.592160403728485107e-01,7.090921998023986816e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.592160403728485107e-01,7.090921998023986816e-01,2.162999916076660156e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.652081108093261719e+01,2.407491207122802734e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.411064654588699341e-01,6.823907494544982910e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.411064654588699341e-01,6.823907494544982910e-01,2.288800048828125000e+01,1.842000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.572373199462890625e+01,2.026730477809906006e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.516308724880218506e-01,6.861425042152404785e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.516308724880218506e-01,6.861425042152404785e-01,2.185600090026855469e+01,1.565999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.130185890197753906e+01,2.333308905363082886e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.419279217720031738e-01,6.744801402091979980e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.419279217720031738e-01,6.744801402091979980e-01,2.287800025939941406e+01,1.510000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.119196891784667969e+01,1.833761334419250488e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.556919753551483154e-01,7.076702713966369629e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.556919753551483154e-01,7.076702713966369629e-01,2.265200042724609375e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,2.674863243103027344e+01,3.528155386447906494e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.401328682899475098e-01,6.393676996231079102e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.401328682899475098e-01,6.393676996231079102e-01,2.272800064086914062e+01,1.792000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.350477218627929688e+01,2.044906467199325562e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.543107271194458008e-01,6.864326000213623047e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.543107271194458008e-01,6.864326000213623047e-01,2.243400001525878906e+01,1.623999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.605177497863769531e+01,2.002751678228378296e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.520987689495086670e-01,6.869488954544067383e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.520987689495086670e-01,6.869488954544067383e-01,2.236400032043457031e+01,1.500000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.489795494079589844e+01,1.775626838207244873e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.669376730918884277e-01,7.197654843330383301e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.669376730918884277e-01,7.197654843330383301e-01,2.273999977111816406e+01,1.597999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.671504783630371094e+01,2.388597875833511353e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.444800734519958496e-01,6.868265271186828613e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.444800734519958496e-01,6.868265271186828613e-01,2.189599990844726562e+01,1.564000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.166248893737792969e+01,1.965955048799514771e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.633369565010070801e-01,6.951044797897338867e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.633369565010070801e-01,6.951044797897338867e-01,2.080400085449218750e+01,1.553999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.407853507995605469e+01,1.972334831953048706e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.835188806056976318e-01,6.930630803108215332e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.835188806056976318e-01,6.930630803108215332e-01,2.145800018310546875e+01,1.577999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.284518051147460938e+01,2.164645195007324219e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.527312934398651123e-01,6.836506128311157227e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.527312934398651123e-01,6.836506128311157227e-01,2.217600059509277344e+01,1.628000068664550781e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.554562759399414062e+01,1.972124725580215454e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.502515316009521484e-01,7.009263634681701660e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.502515316009521484e-01,7.009263634681701660e-01,2.156599998474121094e+01,1.472000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.729556655883789062e+01,2.063599824905395508e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.472899705171585083e-01,6.793026924133300781e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.472899705171585083e-01,6.793026924133300781e-01,2.172800064086914062e+01,1.407999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.337113142013549805e-02,2.692893028259277344e+01,2.404964864253997803e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.499607056379318237e-01,6.684017777442932129e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.499607056379318237e-01,6.684017777442932129e-01,2.211000061035156250e+01,1.729999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.434685707092285156e+01,1.999632567167282104e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.517070472240447998e-01,6.869432330131530762e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.517070472240447998e-01,6.869432330131530762e-01,2.147599983215332031e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.889589691162109375e+01,2.092193067073822021e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.557498812675476074e-01,6.827551126480102539e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.557498812675476074e-01,6.827551126480102539e-01,2.144400024414062500e+01,1.488000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.593697357177734375e+01,2.031286507844924927e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.537929117679595947e-01,6.974722146987915039e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.537929117679595947e-01,6.974722146987915039e-01,2.158600044250488281e+01,1.573999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.333040618896484375e+01,3.008562028408050537e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.385724186897277832e-01,6.639955043792724609e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.385724186897277832e-01,6.639955043792724609e-01,2.207999992370605469e+01,1.585999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,3.788065165281295776e-02,2.806250381469726562e+01,1.923062503337860107e-01,1.000000000000000000e+00,8.252217173576354980e-01,2.434858530759811401e-01,6.872536540031433105e-01,1.000000000000000000e+00,8.252217173576354980e-01,2.434858530759811401e-01,6.872536540031433105e-01,2.079800033569335938e+01,1.768000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,3.111320304870605469e+01,2.119845002889633179e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.520549297332763672e-01,6.705101728439331055e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.520549297332763672e-01,6.705101728439331055e-01,2.140200042724609375e+01,1.636000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.038490676879882812e+01,2.016894370317459106e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.494271248579025269e-01,6.862829923629760742e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.494271248579025269e-01,6.862829923629760742e-01,2.155800056457519531e+01,1.597999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,3.114309501647949219e+01,3.057278096675872803e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.317507565021514893e-01,6.516270041465759277e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.317507565021514893e-01,6.516270041465759277e-01,2.132200050354003906e+01,1.557999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.435439819237217307e-04,3.136240196228027344e+01,2.498195469379425049e-01,1.000000000000000000e+00,9.840480089187622070e-01,2.382114529609680176e-01,6.817828416824340820e-01,1.000000000000000000e+00,9.840480089187622070e-01,2.382114529609680176e-01,6.817828416824340820e-01,2.267600059509277344e+01,1.518000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.376309967041015625e+01,1.956896930932998657e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.507258355617523193e-01,6.906079649925231934e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.507258355617523193e-01,6.906079649925231934e-01,2.189999961853027344e+01,1.464000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.764716720581054688e+01,1.868821084499359131e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.520898282527923584e-01,7.003755569458007812e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.520898282527923584e-01,7.003755569458007812e-01,2.155400085449218750e+01,1.786000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.509486961364746094e+01,1.916469037532806396e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.541963160037994385e-01,6.948997974395751953e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.541963160037994385e-01,6.948997974395751953e-01,2.094799995422363281e+01,1.534000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.679156684875488281e+01,2.181396782398223877e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.508166134357452393e-01,6.851266026496887207e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.508166134357452393e-01,6.851266026496887207e-01,2.110600090026855469e+01,1.356000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.652329635620117188e+01,2.225229591131210327e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.528790235519409180e-01,6.892490386962890625e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.528790235519409180e-01,6.892490386962890625e-01,2.198999977111816406e+01,1.565999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.459251090884208679e-02,2.577269363403320312e+01,2.281517982482910156e-01,1.000000000000000000e+00,8.143110871315002441e-01,2.650015354156494141e-01,6.738142967224121094e-01,1.000000000000000000e+00,8.143110871315002441e-01,2.650015354156494141e-01,6.738142967224121094e-01,2.113400077819824219e+01,1.539999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.913370513916015625e+01,2.948204874992370605e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.494906038045883179e-01,6.601794958114624023e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.494906038045883179e-01,6.601794958114624023e-01,2.111000061035156250e+01,1.647999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.483114624023437500e+01,1.929854601621627808e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.668781876564025879e-01,7.009924650192260742e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.668781876564025879e-01,7.009924650192260742e-01,2.036199951171875000e+01,1.357999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.592904090881347656e+01,1.819259971380233765e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.767887413501739502e-01,7.180962562561035156e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.767887413501739502e-01,7.180962562561035156e-01,2.156599998474121094e+01,1.585999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.268133666992187500e+03,1.941005587577819824e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.659300863742828369e-01,7.038906216621398926e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.659300863742828369e-01,7.038906216621398926e-01,2.158200073242187500e+01,1.493999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.044585800170898438e+01,1.810758858919143677e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.689165472984313965e-01,7.049947381019592285e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.689165472984313965e-01,7.049947381019592285e-01,2.072800064086914062e+01,1.523999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.975997734069824219e+01,1.879809200763702393e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.662532031536102295e-01,7.036354541778564453e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.662532031536102295e-01,7.036354541778564453e-01,2.059399986267089844e+01,1.605999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.064980506896972656e+01,2.163705378770828247e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.537827789783477783e-01,6.943824291229248047e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.537827789783477783e-01,6.943824291229248047e-01,2.186400032043457031e+01,1.621999931335449219e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.401058959960937500e+01,1.943945288658142090e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.838179767131805420e-01,6.991286873817443848e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.838179767131805420e-01,6.991286873817443848e-01,2.101600074768066406e+01,1.576000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,8.914829231798648834e-03,2.510933303833007812e+01,2.027718573808670044e-01,1.000000000000000000e+00,9.084251523017883301e-01,2.763733565807342529e-01,6.938892006874084473e-01,1.000000000000000000e+00,9.084251523017883301e-01,2.763733565807342529e-01,6.938892006874084473e-01,2.057399940490722656e+01,1.502000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.053461647033691406e+01,2.020499110221862793e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.500599920749664307e-01,7.243201136589050293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.500599920749664307e-01,7.243201136589050293e-01,2.241600036621093750e+01,1.679999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.555242919921875000e+01,1.982941180467605591e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.609496116638183594e-01,6.988683938980102539e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.609496116638183594e-01,6.988683938980102539e-01,2.170400047302246094e+01,1.496000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.598755073547363281e+01,1.881841421127319336e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.694931924343109131e-01,6.951184868812561035e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.694931924343109131e-01,6.951184868812561035e-01,2.206599998474121094e+01,1.497999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.419184303283691406e+01,1.764146387577056885e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.602268159389495850e-01,7.165606617927551270e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.602268159389495850e-01,7.165606617927551270e-01,2.164399909973144531e+01,1.572000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.101971054077148438e+01,1.876754015684127808e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.618297338485717773e-01,6.923175454139709473e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.618297338485717773e-01,6.923175454139709473e-01,2.297200012207031250e+01,1.670000076293945312e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.876257133483886719e+01,2.220611572265625000e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.510843276977539062e-01,6.917746663093566895e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.510843276977539062e-01,6.917746663093566895e-01,2.295400047302246094e+01,1.765999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,3.226422119140625000e+03,3.347666263580322266e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.356271147727966309e-01,6.499761343002319336e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.356271147727966309e-01,6.499761343002319336e-01,2.347800064086914062e+01,1.679999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.876290321350097656e+01,1.887172162532806396e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.574349939823150635e-01,7.028787136077880859e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.574349939823150635e-01,7.028787136077880859e-01,2.271599960327148438e+01,1.535999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,7.140300750732421875e+01,1.975173950195312500e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.549225389957427979e-01,6.903566718101501465e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.549225389957427979e-01,6.903566718101501465e-01,2.271999931335449219e+01,1.700000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.779977607727050781e+01,2.065913081169128418e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.585788369178771973e-01,6.852828264236450195e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.585788369178771973e-01,6.852828264236450195e-01,2.218000030517578125e+01,1.569999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.752720642089843750e+01,2.557077705860137939e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.428798973560333252e-01,6.791333556175231934e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.428798973560333252e-01,6.791333556175231934e-01,2.238800048828125000e+01,1.815999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.591721153259277344e+01,1.874539703130722046e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.602694332599639893e-01,6.931648254394531250e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.602694332599639893e-01,6.931648254394531250e-01,2.193799972534179688e+01,1.561999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.131448060274124146e-02,2.876470184326171875e+01,2.322566956281661987e-01,1.000000000000000000e+00,7.934312224388122559e-01,2.565725743770599365e-01,6.777392029762268066e-01,1.000000000000000000e+00,7.934312224388122559e-01,2.565725743770599365e-01,6.777392029762268066e-01,2.204599952697753906e+01,1.573999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.510956001281738281e+01,2.183169871568679810e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.646311223506927490e-01,7.000470161437988281e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.646311223506927490e-01,7.000470161437988281e-01,2.244000053405761719e+01,1.610000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.870281066894531250e+02,1.737281978130340576e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.710506916046142578e-01,7.170230150222778320e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.710506916046142578e-01,7.170230150222778320e-01,2.189599990844726562e+01,1.650000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.785912704467773438e+01,2.087988704442977905e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.577584981918334961e-01,7.025918364524841309e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.577584981918334961e-01,7.025918364524841309e-01,2.190399932861328125e+01,1.823999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.297314697265625000e+03,2.148231565952301025e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.588378190994262695e-01,7.050382494926452637e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.588378190994262695e-01,7.050382494926452637e-01,2.135799980163574219e+01,1.644000053405761719e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.881248855590820312e+01,2.153922319412231445e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.601031064987182617e-01,6.989589929580688477e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.601031064987182617e-01,6.989589929580688477e-01,2.210000038146972656e+01,1.673999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.777267646789550781e+01,1.754252165555953979e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629013359546661377e-01,7.183524370193481445e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629013359546661377e-01,7.183524370193481445e-01,2.113800048828125000e+01,1.629999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.152725219726562500e+01,1.916575282812118530e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.643612325191497803e-01,6.966592073440551758e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.643612325191497803e-01,6.966592073440551758e-01,2.157799911499023438e+01,1.628000068664550781e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.801039505004882812e+01,1.841490119695663452e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.719793617725372314e-01,7.019311785697937012e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.719793617725372314e-01,7.019311785697937012e-01,2.198999977111816406e+01,1.542000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.192203903198242188e+01,1.832364052534103394e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.672675549983978271e-01,7.018957734107971191e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.672675549983978271e-01,7.018957734107971191e-01,2.179599952697753906e+01,1.497999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.501590728759765625e+01,1.894636750221252441e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.733777463436126709e-01,7.065709233283996582e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.733777463436126709e-01,7.065709233283996582e-01,2.207399940490722656e+01,1.572000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.786222839355468750e+01,1.733112186193466187e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.681729495525360107e-01,7.297239899635314941e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.681729495525360107e-01,7.297239899635314941e-01,2.198999977111816406e+01,1.489999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.595599174499511719e+01,1.697437018156051636e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.699039578437805176e-01,7.156883478164672852e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.699039578437805176e-01,7.156883478164672852e-01,2.156999969482421875e+01,1.457999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.029593467712402344e+01,1.781161725521087646e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.736155390739440918e-01,7.217049002647399902e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.736155390739440918e-01,7.217049002647399902e-01,2.225200080871582031e+01,1.731999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.255099487304687500e+01,1.860727816820144653e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.581438422203063965e-01,7.066107392311096191e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.581438422203063965e-01,7.066107392311096191e-01,2.257399940490722656e+01,1.686000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,7.923738303361460567e-05,3.030549430847167969e+01,1.488161087036132812e-01,1.000000000000000000e+00,9.906539320945739746e-01,2.928113341331481934e-01,7.460207343101501465e-01,1.000000000000000000e+00,9.906539320945739746e-01,2.928113341331481934e-01,7.460207343101501465e-01,2.275799942016601562e+01,1.569999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.811665344238281250e+01,1.850233525037765503e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.640508711338043213e-01,7.201116085052490234e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.640508711338043213e-01,7.201116085052490234e-01,2.338999938964843750e+01,1.918000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.050590705871582031e+01,1.694827079772949219e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.652093470096588135e-01,7.397678494453430176e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.652093470096588135e-01,7.397678494453430176e-01,2.303400039672851562e+01,1.631999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.296295928955078125e+01,1.895240396261215210e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.716239988803863525e-01,7.127150893211364746e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.716239988803863525e-01,7.127150893211364746e-01,2.277400016784667969e+01,1.523999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.383711814880371094e+01,1.832874119281768799e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.715053260326385498e-01,7.165782451629638672e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.715053260326385498e-01,7.165782451629638672e-01,2.221400070190429688e+01,1.636000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.817015457153320312e+01,1.427233666181564331e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.836209535598754883e-01,7.590098381042480469e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.836209535598754883e-01,7.590098381042480469e-01,2.228800010681152344e+01,1.904000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.944263267517089844e+01,1.751385927200317383e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.811159491539001465e-01,7.188512682914733887e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.811159491539001465e-01,7.188512682914733887e-01,2.305800056457519531e+01,1.776000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.042741966247558594e+01,1.783594936132431030e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.708344459533691406e-01,7.294782400131225586e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.708344459533691406e-01,7.294782400131225586e-01,2.240399932861328125e+01,1.720000076293945312e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.738439941406250000e+01,1.724100708961486816e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.781793177127838135e-01,7.150074243545532227e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.781793177127838135e-01,7.150074243545532227e-01,2.222800064086914062e+01,1.652000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.659414482116699219e+01,1.896249949932098389e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629842460155487061e-01,7.045724391937255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629842460155487061e-01,7.045724391937255859e-01,2.280200004577636719e+01,1.621999931335449219e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.473661804199218750e+01,2.278435081243515015e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.760916948318481445e-01,6.795936822891235352e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.760916948318481445e-01,6.795936822891235352e-01,2.199600028991699219e+01,1.647999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.491006469726562500e+01,1.816604286432266235e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.689664363861083984e-01,7.177865505218505859e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.689664363861083984e-01,7.177865505218505859e-01,2.179599952697753906e+01,1.615999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.971532249450683594e+01,1.851907968521118164e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.737054824829101562e-01,7.030795216560363770e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.737054824829101562e-01,7.030795216560363770e-01,2.189800071716308594e+01,1.439999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.638009452819824219e+01,1.796478778123855591e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.757616043090820312e-01,7.236315608024597168e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.757616043090820312e-01,7.236315608024597168e-01,2.172999954223632812e+01,1.863999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.692659759521484375e+01,1.747682094573974609e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.792568206787109375e-01,7.231127023696899414e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.792568206787109375e-01,7.231127023696899414e-01,2.229800033569335938e+01,1.547999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.699430656433105469e+01,1.559332311153411865e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.746169865131378174e-01,7.290640473365783691e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.746169865131378174e-01,7.290640473365783691e-01,2.235600090026855469e+01,1.695999908447265625e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.690587960183620453e-02,2.483108901977539062e+01,1.845559179782867432e-01,1.000000000000000000e+00,8.799995183944702148e-01,2.708372175693511963e-01,6.995598077774047852e-01,1.000000000000000000e+00,8.799995183944702148e-01,2.708372175693511963e-01,6.995598077774047852e-01,2.245000076293945312e+01,1.773999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.561134643554687500e+02,1.557252854108810425e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.781929373741149902e-01,7.405400872230529785e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.781929373741149902e-01,7.405400872230529785e-01,2.229400062561035156e+01,1.542000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,6.575422363281250000e+02,2.118799984455108643e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.574332654476165771e-01,7.043730616569519043e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.574332654476165771e-01,7.043730616569519043e-01,2.242200088500976562e+01,1.602000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.498000907897949219e+01,1.972558200359344482e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.694300711154937744e-01,6.935487985610961914e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.694300711154937744e-01,6.935487985610961914e-01,2.266799926757812500e+01,1.776000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.245326423645019531e+01,1.584619879722595215e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.799058258533477783e-01,7.428901791572570801e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.799058258533477783e-01,7.428901791572570801e-01,2.279400062561035156e+01,1.839999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.472548294067382812e+01,1.654994338750839233e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.771235108375549316e-01,7.241303324699401855e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.771235108375549316e-01,7.241303324699401855e-01,2.282999992370605469e+01,1.829999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.273956298828125000e+01,1.756368130445480347e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.800548374652862549e-01,7.134363055229187012e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.800548374652862549e-01,7.134363055229187012e-01,2.301600074768066406e+01,1.729999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.944996643066406250e+01,1.610245108604431152e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.717091441154479980e-01,7.251167297363281250e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.717091441154479980e-01,7.251167297363281250e-01,2.226600074768066406e+01,1.854000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.059422874450683594e+01,2.143021523952484131e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.597740292549133301e-01,7.084358930587768555e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.597740292549133301e-01,7.084358930587768555e-01,2.275000000000000000e+01,1.718000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.703409576416015625e+01,1.447952985763549805e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.902409434318542480e-01,7.633242011070251465e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.902409434318542480e-01,7.633242011070251465e-01,2.212000083923339844e+01,1.676000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.842077827453613281e+01,1.389834135770797729e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.861109972000122070e-01,7.619938254356384277e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.861109972000122070e-01,7.619938254356384277e-01,2.226799964904785156e+01,1.710000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.404227256774902344e+01,1.552847772836685181e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.958112359046936035e-01,7.341772913932800293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.958112359046936035e-01,7.341772913932800293e-01,2.239599990844726562e+01,1.910000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.053177185058593750e+02,1.618027091026306152e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.884835302829742432e-01,7.493279576301574707e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.884835302829742432e-01,7.493279576301574707e-01,2.282600021362304688e+01,1.736000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.485682296752929688e+01,1.571495383977890015e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.944154739379882812e-01,7.374614477157592773e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.944154739379882812e-01,7.374614477157592773e-01,2.194400024414062500e+01,1.589999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.381642761230468750e+02,1.556925326585769653e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.944170832633972168e-01,7.365190982818603516e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.944170832633972168e-01,7.365190982818603516e-01,2.186599922180175781e+01,1.556000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.246875953674316406e+01,1.387762278318405151e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.101200759410858154e-01,7.508991956710815430e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.101200759410858154e-01,7.508991956710815430e-01,2.201799964904785156e+01,1.770000076293945312e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.735186767578125000e+01,1.504170894622802734e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.869532704353332520e-01,7.452915310859680176e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.869532704353332520e-01,7.452915310859680176e-01,2.229800033569335938e+01,1.721999931335449219e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.263438796997070312e+01,1.293502449989318848e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.094721138477325439e-01,7.543138861656188965e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.094721138477325439e-01,7.543138861656188965e-01,2.184199905395507812e+01,1.863999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.072398948669433594e+01,1.294545531272888184e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.121790289878845215e-01,7.619091272354125977e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.121790289878845215e-01,7.619091272354125977e-01,2.183600044250488281e+01,1.723999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.737345123291015625e+01,1.096942648291587830e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.079496026039123535e-01,7.924705147743225098e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.079496026039123535e-01,7.924705147743225098e-01,2.161199951171875000e+01,1.678000068664550781e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.449445152282714844e+01,1.370462030172348022e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.260322511196136475e-01,7.692006826400756836e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.260322511196136475e-01,7.692006826400756836e-01,2.129400062561035156e+01,1.829999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.839093017578125000e+01,1.143380701541900635e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.418641388416290283e-01,7.747923135757446289e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.418641388416290283e-01,7.747923135757446289e-01,2.084600067138671875e+01,1.962000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.009575271606445312e+01,1.365330666303634644e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.430809974670410156e-01,7.924169301986694336e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.430809974670410156e-01,7.924169301986694336e-01,2.055800056457519531e+01,1.836000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.265817260742187500e+02,1.061482205986976624e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.535794317722320557e-01,8.129113912582397461e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.535794317722320557e-01,8.129113912582397461e-01,1.991399955749511719e+01,1.704000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.118346595764160156e+01,7.150626182556152344e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.554516136646270752e-01,8.181348443031311035e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.554516136646270752e-01,8.181348443031311035e-01,1.920199966430664062e+01,1.652000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.111300086975097656e+01,7.108353078365325928e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.686316311359405518e-01,8.231514096260070801e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.686316311359405518e-01,8.231514096260070801e-01,1.976000022888183594e+01,1.837999916076660156e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.383626403808593750e+02,8.388463407754898071e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.533569276332855225e-01,8.280059695243835449e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.533569276332855225e-01,8.280059695243835449e-01,2.015200042724609375e+01,1.655999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.536282444000244141e+01,5.142245814204216003e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.809653520584106445e-01,8.583492636680603027e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.809653520584106445e-01,8.583492636680603027e-01,1.974200057983398438e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,2.068630790710449219e+01,5.771291255950927734e-02,1.000000000000000000e+00,9.788492321968078613e-01,3.683514893054962158e-01,8.470495343208312988e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.683514893054962158e-01,8.470495343208312988e-01,1.973600006103515625e+01,1.721999931335449219e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.139132690429687500e+01,9.434537589550018311e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.549142777919769287e-01,8.066719770431518555e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.549142777919769287e-01,8.066719770431518555e-01,1.982600021362304688e+01,1.770000076293945312e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.369751834869384766e+01,5.927784740924835205e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.875128924846649170e-01,8.463391661643981934e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.875128924846649170e-01,8.463391661643981934e-01,1.942000007629394531e+01,1.605999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.531840896606445312e+01,2.188857272267341614e-02,1.000000000000000000e+00,9.788492321968078613e-01,3.815945684909820557e-01,8.985458612442016602e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.815945684909820557e-01,8.985458612442016602e-01,1.983399963378906250e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.293682575225830078e+01,1.923683099448680878e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.152718484401702881e-01,9.009429216384887695e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.152718484401702881e-01,9.009429216384887695e-01,1.901600074768066406e+01,1.535999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.380187320709228516e+01,1.902937516570091248e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.086601734161376953e-01,8.989058136940002441e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.086601734161376953e-01,8.989058136940002441e-01,1.906800079345703125e+01,1.507999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.435128974914550781e+01,3.421961516141891479e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.887251913547515869e-01,8.680695891380310059e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.887251913547515869e-01,8.680695891380310059e-01,1.817000007629394531e+01,1.552000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.182937622070312500e+01,3.550615534186363220e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.219096302986145020e-01,8.553160429000854492e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.219096302986145020e-01,8.553160429000854492e-01,1.798200035095214844e+01,1.402000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.172690773010253906e+01,1.331104990094900131e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.454973340034484863e-01,9.207071661949157715e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.454973340034484863e-01,9.207071661949157715e-01,1.748800086975097656e+01,1.573999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.073076915740966797e+01,1.357236690819263458e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.444086551666259766e-01,9.175010323524475098e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.444086551666259766e-01,9.175010323524475098e-01,1.762800025939941406e+01,1.353999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.302521514892578125e+01,2.209331095218658447e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.281711876392364502e-01,8.936591744422912598e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.281711876392364502e-01,8.936591744422912598e-01,1.785400009155273438e+01,1.465999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.378364944458007812e+01,1.805956661701202393e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.312054514884948730e-01,9.016211628913879395e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.312054514884948730e-01,9.016211628913879395e-01,1.832399940490722656e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.206244754791259766e+01,1.872382126748561859e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.179496765136718750e-01,9.033598303794860840e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.179496765136718750e-01,9.033598303794860840e-01,1.852199935913085938e+01,1.527999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.319534111022949219e+01,2.478146925568580627e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.127814173698425293e-01,8.833593726158142090e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.127814173698425293e-01,8.833593726158142090e-01,1.878800010681152344e+01,1.612000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.305635452270507812e+01,1.340056210756301880e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.256548285484313965e-01,9.222915768623352051e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.256548285484313965e-01,9.222915768623352051e-01,1.801600074768066406e+01,1.464000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.310015964508056641e+01,1.414520852267742157e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.101583063602447510e-01,9.152373075485229492e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.101583063602447510e-01,9.152373075485229492e-01,1.852400016784667969e+01,1.465999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.286613750457763672e+01,1.239344850182533264e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.199573397636413574e-01,9.189113974571228027e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.199573397636413574e-01,9.189113974571228027e-01,1.824200057983398438e+01,1.297999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.205305862426757812e+01,1.910298876464366913e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.291447997093200684e-01,9.054018855094909668e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.291447997093200684e-01,9.054018855094909668e-01,1.824600028991699219e+01,1.293999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.058254814147949219e+01,1.657645031809806824e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.409120380878448486e-01,9.048457145690917969e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.409120380878448486e-01,9.048457145690917969e-01,1.784799957275390625e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.129233360290527344e+01,1.994854211807250977e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.416371285915374756e-01,9.162329435348510742e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.416371285915374756e-01,9.162329435348510742e-01,1.740800094604492188e+01,1.369999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.277258491516113281e+01,1.340451091527938843e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.449641406536102295e-01,9.174604415893554688e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.449641406536102295e-01,9.174604415893554688e-01,1.751600074768066406e+01,1.310000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.040190124511718750e+01,1.125556975603103638e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.503401815891265869e-01,9.277024269104003906e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.503401815891265869e-01,9.277024269104003906e-01,1.738400077819824219e+01,1.352000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.141169452667236328e+01,4.793930333107709885e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.547225832939147949e-01,9.489749670028686523e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.547225832939147949e-01,9.489749670028686523e-01,1.748399925231933594e+01,1.261999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.374473094940185547e+01,5.700971465557813644e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.402251839637756348e-01,9.429431557655334473e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.402251839637756348e-01,9.429431557655334473e-01,1.725000000000000000e+01,1.384000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.276838588714599609e+01,7.695764768868684769e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.228546619415283203e-01,9.439845085144042969e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.228546619415283203e-01,9.439845085144042969e-01,1.826399993896484375e+01,1.323999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.286509513854980469e+01,1.538916118443012238e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.049683809280395508e-01,9.164202809333801270e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.049683809280395508e-01,9.164202809333801270e-01,1.834600067138671875e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.374013805389404297e+01,7.874268107116222382e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.526740312576293945e-01,9.386625289916992188e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.526740312576293945e-01,9.386625289916992188e-01,1.742600059509277344e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.134979534149169922e+01,7.611222565174102783e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.552335739135742188e-01,9.395192861557006836e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.552335739135742188e-01,9.395192861557006836e-01,1.733600044250488281e+01,1.343999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.037736129760742188e+01,3.864079015329480171e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.613856077194213867e-01,9.532163143157958984e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.613856077194213867e-01,9.532163143157958984e-01,1.698200035095214844e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.087750053405761719e+01,9.685186669230461121e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.613242149353027344e-01,9.298981428146362305e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.613242149353027344e-01,9.298981428146362305e-01,1.665999984741210938e+01,1.419999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.122817993164062500e+00,3.527332330122590065e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.793880283832550049e-01,9.563125967979431152e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.793880283832550049e-01,9.563125967979431152e-01,1.577799987792968750e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.036341381072998047e+01,1.335073821246623993e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.644204676151275635e-01,9.214873909950256348e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.644204676151275635e-01,9.214873909950256348e-01,1.650799942016601562e+01,1.397999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.388652801513671875e+00,4.565052688121795654e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.803009629249572754e-01,9.497202038764953613e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.803009629249572754e-01,9.497202038764953613e-01,1.625000000000000000e+01,1.296000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.807918548583984375e+00,3.721607849001884460e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.579971730709075928e-01,9.548609852790832520e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.579971730709075928e-01,9.548609852790832520e-01,1.667799949645996094e+01,1.265999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.129621028900146484e+01,1.047152327373623848e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.730214178562164307e-01,9.697616100311279297e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.730214178562164307e-01,9.697616100311279297e-01,1.689800071716308594e+01,1.169999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.277604007720947266e+01,1.040240190923213959e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.303325712680816650e-01,9.272806644439697266e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.303325712680816650e-01,9.272806644439697266e-01,1.700000000000000000e+01,1.273999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.097751522064208984e+01,7.917851209640502930e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.432193040847778320e-01,9.364058375358581543e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.432193040847778320e-01,9.364058375358581543e-01,1.744400024414062500e+01,1.253999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.003395557403564453e+01,7.426277734339237213e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.618849754333496094e-01,9.716039299964904785e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.618849754333496094e-01,9.716039299964904785e-01,1.769799995422363281e+01,1.180000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.297948169708251953e+01,5.412827245891094208e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.505136907100677490e-01,9.451057314872741699e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.505136907100677490e-01,9.451057314872741699e-01,1.754800033569335938e+01,1.238000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.075094699859619141e+01,6.243691314011812210e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.463685452938079834e-01,9.430265426635742188e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.463685452938079834e-01,9.430265426635742188e-01,1.727400016784667969e+01,1.303999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.233101081848144531e+01,6.626971298828721046e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.750812649726867676e-01,9.729374647140502930e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.750812649726867676e-01,9.729374647140502930e-01,1.735600090026855469e+01,1.076000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.237541961669921875e+01,8.820553310215473175e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.273710548877716064e-01,9.400129318237304688e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.273710548877716064e-01,9.400129318237304688e-01,1.764399909973144531e+01,1.261999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.113067817687988281e+01,4.423113539814949036e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.559283554553985596e-01,9.533652067184448242e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.559283554553985596e-01,9.533652067184448242e-01,1.748200035095214844e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.097955989837646484e+01,6.154987495392560959e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.576952159404754639e-01,9.433515667915344238e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.576952159404754639e-01,9.433515667915344238e-01,1.706200027465820312e+01,1.343999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.084414100646972656e+01,3.337174421176314354e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.578644037246704102e-01,9.565274119377136230e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.578644037246704102e-01,9.565274119377136230e-01,1.719799995422363281e+01,1.173999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.135423946380615234e+01,2.464776625856757164e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.755339920520782471e-01,9.601686596870422363e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.755339920520782471e-01,9.601686596870422363e-01,1.663199996948242188e+01,1.231999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.215924167633056641e+01,4.910766147077083588e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.617618024349212646e-01,9.476050138473510742e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.617618024349212646e-01,9.476050138473510742e-01,1.693199920654296875e+01,1.272000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,8.954099655151367188e+00,2.932113129645586014e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.922383427619934082e-01,9.592294692993164062e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.922383427619934082e-01,9.592294692993164062e-01,1.663599967956542969e+01,1.197999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.256544685363769531e+01,1.138735795393586159e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.911211133003234863e-01,9.688592553138732910e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.911211133003234863e-01,9.688592553138732910e-01,1.635400009155273438e+01,1.207999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.330948734283447266e+01,1.629349077120423317e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.691685438156127930e-01,9.663695096969604492e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.691685438156127930e-01,9.663695096969604492e-01,1.665999984741210938e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.041521072387695312e+01,1.981548732146620750e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.878521859645843506e-01,9.649569392204284668e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.878521859645843506e-01,9.649569392204284668e-01,1.639200019836425781e+01,1.165999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.228411102294921875e+01,6.930548232048749924e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.615613520145416260e-01,9.388729929924011230e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.615613520145416260e-01,9.388729929924011230e-01,1.710000038146972656e+01,1.293999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.599647521972656250e+00,6.786871235817670822e-04,1.000000000000000000e+00,9.736213684082031250e-01,5.002769231796264648e-01,9.726395010948181152e-01,1.000000000000000000e+00,9.736213684082031250e-01,5.002769231796264648e-01,9.726395010948181152e-01,1.656599998474121094e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.988997459411621094e+00,2.633691299706697464e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.710490405559539795e-01,9.620514512062072754e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.710490405559539795e-01,9.620514512062072754e-01,1.671199989318847656e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.003506278991699219e+01,2.559258136898279190e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.627576768398284912e-01,9.603675007820129395e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.627576768398284912e-01,9.603675007820129395e-01,1.800600051879882812e+01,1.243999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.093703460693359375e+01,3.787658410146832466e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.656613767147064209e-01,9.578397274017333984e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.656613767147064209e-01,9.578397274017333984e-01,1.735600090026855469e+01,1.169999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.153186035156250000e+01,5.355886649340391159e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.545949399471282959e-01,9.443048834800720215e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.545949399471282959e-01,9.443048834800720215e-01,1.745400047302246094e+01,1.335999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.250327491760253906e+01,1.742479042150080204e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.497613608837127686e-01,9.659950137138366699e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.497613608837127686e-01,9.659950137138366699e-01,1.778199958801269531e+01,1.181999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,8.567855834960937500e+00,1.110946410335600376e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.920727014541625977e-01,9.689208269119262695e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.920727014541625977e-01,9.689208269119262695e-01,1.732200050354003906e+01,1.135999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.156103706359863281e+01,5.102264694869518280e-03,1.000000000000000000e+00,9.748692512512207031e-01,4.484462738037109375e-01,9.465669393539428711e-01,1.000000000000000000e+00,9.748692512512207031e-01,4.484462738037109375e-01,9.465669393539428711e-01,1.721400070190429688e+01,1.226000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.350506782531738281e+00,3.402581904083490372e-03,1.000000000000000000e+00,9.748692512512207031e-01,4.719943106174468994e-01,9.561221599578857422e-01,1.000000000000000000e+00,9.748692512512207031e-01,4.719943106174468994e-01,9.561221599578857422e-01,1.696599960327148438e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.129616260528564453e+01,6.506682839244604111e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.699597954750061035e-01,9.731428623199462891e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.699597954750061035e-01,9.731428623199462891e-01,1.700799942016601562e+01,1.084000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,8.928158760070800781e+00,9.800598490983247757e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.917649626731872559e-01,9.703950881958007812e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.917649626731872559e-01,9.703950881958007812e-01,1.715600013732910156e+01,1.188000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.039778327941894531e+01,5.815430544316768646e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.633553624153137207e-01,9.427669644355773926e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.633553624153137207e-01,9.427669644355773926e-01,1.722200012207031250e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.959553909301757812e+01,6.490867817774415016e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.595147669315338135e-01,9.732141494750976562e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.595147669315338135e-01,9.732141494750976562e-01,1.701799964904785156e+01,1.077999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.047196483612060547e+01,6.483196746557950974e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.547526538372039795e-01,9.425283074378967285e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.547526538372039795e-01,9.425283074378967285e-01,1.741200065612792969e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.041673278808593750e+01,7.159057073295116425e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.602925777435302734e-01,9.465681910514831543e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.602925777435302734e-01,9.465681910514831543e-01,1.780200004577636719e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.293094730377197266e+01,7.228413014672696590e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.543329775333404541e-01,9.719102382659912109e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.543329775333404541e-01,9.719102382659912109e-01,1.779599952697753906e+01,1.111999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.145463943481445312e+01,2.876548329368233681e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.555473923683166504e-01,9.596965312957763672e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.555473923683166504e-01,9.596965312957763672e-01,1.790800094604492188e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.117660999298095703e+01,6.274074548855423927e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.779894351959228516e-01,9.735907316207885742e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.779894351959228516e-01,9.735907316207885742e-01,1.747400093078613281e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.278488254547119141e+01,7.955981418490409851e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.280150234699249268e-01,9.430898427963256836e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.280150234699249268e-01,9.430898427963256836e-01,1.841200065612792969e+01,1.219999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.176758480072021484e+01,6.867547635920345783e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.593786001205444336e-01,9.725265502929687500e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.593786001205444336e-01,9.725265502929687500e-01,1.761000061035156250e+01,1.139999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.282615852355957031e+01,7.177732768468558788e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.633481502532958984e-01,9.719778299331665039e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.633481502532958984e-01,9.719778299331665039e-01,1.785799980163574219e+01,1.080000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.076111221313476562e+01,5.003213416785001755e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.633208215236663818e-01,9.479827284812927246e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.633208215236663818e-01,9.479827284812927246e-01,1.766799926757812500e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.056234169006347656e+01,6.370579358190298080e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.677228629589080811e-01,9.734196066856384277e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.677228629589080811e-01,9.734196066856384277e-01,1.713800048828125000e+01,1.123999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.037223625183105469e+01,7.617517258040606976e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.727170169353485107e-01,9.719022512435913086e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.727170169353485107e-01,9.719022512435913086e-01,1.745800018310546875e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.148849105834960938e+01,1.068282220512628555e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.387944340705871582e-01,9.298949241638183594e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.387944340705871582e-01,9.298949241638183594e-01,1.820000076293945312e+01,1.242000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.968050003051757812e+00,7.936351932585239410e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.718974530696868896e-01,9.421495199203491211e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.718974530696868896e-01,9.421495199203491211e-01,1.796599960327148438e+01,1.346000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.313982295989990234e+01,7.541332859545946121e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.592172801494598389e-01,9.396349191665649414e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.592172801494598389e-01,9.396349191665649414e-01,1.781999969482421875e+01,1.288000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.001665973663330078e+01,7.057444308884441853e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.776451885700225830e-01,9.721832871437072754e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.776451885700225830e-01,9.721832871437072754e-01,1.718600082397460938e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.286327075958251953e+01,5.362911615520715714e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.506666362285614014e-01,9.494382143020629883e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.506666362285614014e-01,9.494382143020629883e-01,1.642600059509277344e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.163698673248291016e+01,4.744035191833972931e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.568046331405639648e-01,9.487004876136779785e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.568046331405639648e-01,9.487004876136779785e-01,1.648800086975097656e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.050295829772949219e+01,8.693788549862802029e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.861892759799957275e-01,9.712878465652465820e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.861892759799957275e-01,9.712878465652465820e-01,1.618199920654296875e+01,1.111999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.766219139099121094e+00,6.413290975615382195e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.972207844257354736e-01,9.733150601387023926e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.972207844257354736e-01,9.733150601387023926e-01,1.670599937438964844e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.715566635131835938e+00,4.140957724303007126e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.755437672138214111e-01,9.528952836990356445e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.755437672138214111e-01,9.528952836990356445e-01,1.657799911499023438e+01,1.180000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.079351234436035156e+01,8.873448707163333893e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.695263206958770752e-01,9.334753751754760742e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.695263206958770752e-01,9.334753751754760742e-01,1.676600074768066406e+01,1.272000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.518136978149414062e+00,2.867418574169278145e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.722671210765838623e-01,9.605837464332580566e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.722671210765838623e-01,9.605837464332580566e-01,1.704999923706054688e+01,1.226000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.263083457946777344e+00,1.278034411370754242e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.855144321918487549e-01,9.679664969444274902e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.855144321918487549e-01,9.679664969444274902e-01,1.700600051879882812e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.093296527862548828e+01,2.123620593920350075e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.550877809524536133e-01,9.642581343650817871e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.550877809524536133e-01,9.642581343650817871e-01,1.780200004577636719e+01,1.197999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.134013271331787109e+01,2.905050525441765785e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.458993673324584961e-01,9.602341055870056152e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.458993673324584961e-01,9.602341055870056152e-01,1.768000030517578125e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.057862663269042969e+01,8.835104294121265411e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.566006362438201904e-01,9.365254044532775879e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.566006362438201904e-01,9.365254044532775879e-01,1.775799942016601562e+01,1.376000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.630412483215332031e+01,7.461667992174625397e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.612411260604858398e-01,9.717673659324645996e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.612411260604858398e-01,9.717673659324645996e-01,1.766600036621093750e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.240602207183837891e+01,4.468425642699003220e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.430866539478302002e-01,9.529716372489929199e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.430866539478302002e-01,9.529716372489929199e-01,1.835000038146972656e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.455517578125000000e+01,6.533579435199499130e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.478097856044769287e-01,9.731096029281616211e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.478097856044769287e-01,9.731096029281616211e-01,1.794199943542480469e+01,1.089999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.342806243896484375e+01,4.831365775316953659e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.501104652881622314e-01,9.549133181571960449e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.501104652881622314e-01,9.549133181571960449e-01,1.752000045776367188e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.146550655364990234e+01,1.276949769817292690e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.504894316196441650e-01,9.687676429748535156e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.504894316196441650e-01,9.687676429748535156e-01,1.734199905395507812e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.030124568939208984e+01,9.081724565476179123e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.734014570713043213e-01,9.708358645439147949e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.734014570713043213e-01,9.708358645439147949e-01,1.724799919128417969e+01,1.114000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,8.721698760986328125e+00,9.826722089201211929e-04,1.000000000000000000e+00,9.736213684082031250e-01,5.035037398338317871e-01,9.705884456634521484e-01,1.000000000000000000e+00,9.736213684082031250e-01,5.035037398338317871e-01,9.705884456634521484e-01,1.627000045776367188e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.048410415649414062e+01,3.606668673455715179e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.756071865558624268e-01,9.552258849143981934e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.756071865558624268e-01,9.552258849143981934e-01,1.717399978637695312e+01,1.227999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.106914615631103516e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.995105266571044922e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.995105266571044922e-01,9.736213684082031250e-01,1.690800094604492188e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.997184753417968750e+00,3.241672413423657417e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.806395471096038818e-01,9.563995599746704102e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.806395471096038818e-01,9.563995599746704102e-01,1.694799995422363281e+01,1.273999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.149141120910644531e+01,3.341754432767629623e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.741748273372650146e-01,9.570851325988769531e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.741748273372650146e-01,9.570851325988769531e-01,1.671400070190429688e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.215893173217773438e+01,3.438172861933708191e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.702386260032653809e-01,9.575430154800415039e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.702386260032653809e-01,9.575430154800415039e-01,1.746800041198730469e+01,1.218000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.936758995056152344e+00,2.237526467069983482e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.694020450115203857e-01,9.626713395118713379e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.694020450115203857e-01,9.626713395118713379e-01,1.671800041198730469e+01,1.243999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.292283821105957031e+01,1.729069626890122890e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.751394093036651611e-01,9.664081335067749023e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.751394093036651611e-01,9.664081335067749023e-01,1.729999923706054688e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.966508865356445312e+00,1.304926816374063492e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.749833345413208008e-01,9.689114093780517578e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.749833345413208008e-01,9.689114093780517578e-01,1.704599952697753906e+01,1.211999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.639099121093750000e+00,2.036848803982138634e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.827791750431060791e-01,9.635267257690429688e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.827791750431060791e-01,9.635267257690429688e-01,1.797599983215332031e+01,1.281999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.102681255340576172e+01,2.155411057174205780e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.571193456649780273e-01,9.636715650558471680e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.571193456649780273e-01,9.636715650558471680e-01,1.785799980163574219e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.136988735198974609e+01,3.132375655695796013e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.418239891529083252e-01,9.587460756301879883e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.418239891529083252e-01,9.587460756301879883e-01,1.775000000000000000e+01,1.168000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.454261589050292969e+01,1.959034241735935211e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.604479670524597168e-01,9.658084511756896973e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.604479670524597168e-01,9.658084511756896973e-01,1.769199943542480469e+01,1.169999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.127638435363769531e+01,2.621485153213143349e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.689709842205047607e-01,9.610220193862915039e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.689709842205047607e-01,9.610220193862915039e-01,1.729599952697753906e+01,1.153999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.956217765808105469e+00,3.236641641706228256e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.617677330970764160e-01,9.572062492370605469e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.617677330970764160e-01,9.572062492370605469e-01,1.751000022888183594e+01,1.257999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.228319740295410156e+01,6.130003021098673344e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.732777476310729980e-01,9.738304615020751953e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.732777476310729980e-01,9.738304615020751953e-01,1.720800018310546875e+01,1.065999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.300857734680175781e+01,1.484886161051690578e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.594552218914031982e-01,9.680078625679016113e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.594552218914031982e-01,9.680078625679016113e-01,1.655800056457519531e+01,1.192000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.941719055175781250e+00,9.755792561918497086e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.939160645008087158e-01,9.704376459121704102e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.939160645008087158e-01,9.704376459121704102e-01,1.728800010681152344e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.040452289581298828e+01,5.818591453135013580e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.578935801982879639e-01,9.445411562919616699e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.578935801982879639e-01,9.445411562919616699e-01,1.727199935913085938e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.308369827270507812e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.732027649879455566e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.732027649879455566e-01,9.730050563812255859e-01,1.692399978637695312e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.008154106140136719e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.990879893302917480e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.990879893302917480e-01,9.736213684082031250e-01,1.670800018310546875e+01,1.018000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.012799930572509766e+01,6.867547635920345783e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.788455665111541748e-01,9.725265502929687500e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.788455665111541748e-01,9.725265502929687500e-01,1.692799949645996094e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.447272396087646484e+01,1.555381109938025475e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.547375142574310303e-01,9.684863686561584473e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.547375142574310303e-01,9.684863686561584473e-01,1.729000091552734375e+01,1.139999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.133659076690673828e+01,3.105405485257506371e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.598844051361083984e-01,9.592460393905639648e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.598844051361083984e-01,9.592460393905639648e-01,1.743000030517578125e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.227033138275146484e+01,3.704064525663852692e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.522565603256225586e-01,9.596101641654968262e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.522565603256225586e-01,9.596101641654968262e-01,1.778800010681152344e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.295363712310791016e+01,1.180666615255177021e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.501708149909973145e-01,9.695769548416137695e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.501708149909973145e-01,9.695769548416137695e-01,1.782799911499023438e+01,1.181999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.207722759246826172e+01,2.273029880598187447e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.441390335559844971e-01,9.630412459373474121e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.441390335559844971e-01,9.630412459373474121e-01,1.764599990844726562e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.226931095123291016e+01,2.383350627496838570e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.637415707111358643e-01,9.616100192070007324e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.637415707111358643e-01,9.616100192070007324e-01,1.764999961853027344e+01,1.314000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.108931636810302734e+01,7.097342167980968952e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.733836054801940918e-01,9.721436500549316406e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.733836054801940918e-01,9.721436500549316406e-01,1.726000022888183594e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.275951862335205078e+01,1.006591506302356720e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.326422512531280518e-01,9.359714388847351074e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.326422512531280518e-01,9.359714388847351074e-01,1.755400085449218750e+01,1.211999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.164961624145507812e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.702953994274139404e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.702953994274139404e-01,9.732105135917663574e-01,1.655599975585937500e+01,1.019999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.049758911132812500e+01,3.950302954763174057e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.651527106761932373e-01,9.537062644958496094e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.651527106761932373e-01,9.537062644958496094e-01,1.733600044250488281e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.211437677033245564e-04,1.179844570159912109e+01,6.667179986834526062e-04,1.000000000000000000e+00,9.840153455734252930e-01,4.630124568939208984e-01,9.729399085044860840e-01,1.000000000000000000e+00,9.840153455734252930e-01,4.630124568939208984e-01,9.729399085044860840e-01,1.775200080871582031e+01,1.153999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.313825893402099609e+01,7.255309610627591610e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.816857278347015381e-01,9.718769788742065430e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.816857278347015381e-01,9.718769788742065430e-01,1.746999931335449219e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.159532451629638672e+01,7.038138573989272118e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.623543620109558105e-01,9.722372293472290039e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.623543620109558105e-01,9.722372293472290039e-01,1.839800071716308594e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.099916172027587891e+01,4.449827596545219421e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.511650502681732178e-01,9.511895775794982910e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.511650502681732178e-01,9.511895775794982910e-01,1.804800033569335938e+01,1.365999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.398848342895507812e+01,6.851732614450156689e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.420358538627624512e-01,9.725978374481201172e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.420358538627624512e-01,9.725978374481201172e-01,1.853599929809570312e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.838294982910156250e+01,7.014732691459357738e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.199637472629547119e-01,9.722878336906433105e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.199637472629547119e-01,9.722878336906433105e-01,1.935000038146972656e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.647458648681640625e+01,3.139731241390109062e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.137144386768341064e-01,9.619333148002624512e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.137144386768341064e-01,9.619333148002624512e-01,2.067799949645996094e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.628082656860351562e+01,3.127720206975936890e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.089154303073883057e-01,9.605802893638610840e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.089154303073883057e-01,9.605802893638610840e-01,1.983399963378906250e+01,1.231999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.477853202819824219e+01,1.013395562767982483e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.090038836002349854e-01,9.344603419303894043e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.090038836002349854e-01,9.344603419303894043e-01,1.985799980163574219e+01,1.253999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.529652214050292969e+01,1.064890995621681213e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.184064865112304688e-01,9.348613023757934570e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.184064865112304688e-01,9.348613023757934570e-01,1.975200080871582031e+01,1.281999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.072364234924316406e+01,1.264177076518535614e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.373054206371307373e-01,9.215228557586669922e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.373054206371307373e-01,9.215228557586669922e-01,1.946599960327148438e+01,1.369999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.444562435150146484e+01,3.993732854723930359e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.405578374862670898e-01,9.536785483360290527e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.405578374862670898e-01,9.536785483360290527e-01,1.897200012207031250e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.465691280364990234e+01,3.286635736003518105e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.533939361572265625e-01,9.573528766632080078e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.533939361572265625e-01,9.573528766632080078e-01,1.810400009155273438e+01,1.306000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.299367809295654297e+01,3.610471263527870178e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.390618801116943359e-01,9.553382396697998047e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.390618801116943359e-01,9.553382396697998047e-01,1.825600051879882812e+01,1.246000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.262066745758056641e+01,9.968795813620090485e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.435718059539794922e-01,9.326847791671752930e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.435718059539794922e-01,9.326847791671752930e-01,1.750200080871582031e+01,1.372000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.272764587402343750e+01,9.578868048265576363e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.621824026107788086e-01,9.708401560783386230e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.621824026107788086e-01,9.708401560783386230e-01,1.753599929809570312e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.406497859954833984e+01,1.524120569229125977e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.361896812915802002e-01,9.667538404464721680e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.361896812915802002e-01,9.667538404464721680e-01,1.792200088500976562e+01,1.242000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.242646217346191406e+01,2.713643480092287064e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.584788680076599121e-01,9.610890746116638184e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.584788680076599121e-01,9.610890746116638184e-01,1.777799987792968750e+01,1.203999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.117420101165771484e+01,6.615520687773823738e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.740399718284606934e-01,9.729183912277221680e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.740399718284606934e-01,9.729183912277221680e-01,1.750399971008300781e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.226927566528320312e+01,5.899268202483654022e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.559974074363708496e-01,9.440941810607910156e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.559974074363708496e-01,9.440941810607910156e-01,1.752799987792968750e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.169558525085449219e+01,4.036275669932365417e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.446412026882171631e-01,9.532426595687866211e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.446412026882171631e-01,9.532426595687866211e-01,1.772800064086914062e+01,1.243999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.311876296997070312e+01,4.552944563329219818e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.409480392932891846e-01,9.495767951011657715e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.409480392932891846e-01,9.495767951011657715e-01,1.821800041198730469e+01,1.238000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.210557460784912109e+01,8.477008901536464691e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.454580843448638916e-01,9.368110299110412598e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.454580843448638916e-01,9.368110299110412598e-01,1.881200027465820312e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.463131999969482422e+01,2.704813145101070404e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.265948534011840820e-01,9.607385396957397461e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.265948534011840820e-01,9.607385396957397461e-01,1.849200057983398438e+01,1.234000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.512627315521240234e+01,3.121054964140057564e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.252319931983947754e-01,9.578810930252075195e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.252319931983947754e-01,9.578810930252075195e-01,1.854999923706054688e+01,1.207999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.542328262329101562e+01,3.069950034841895103e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.246066808700561523e-01,9.591447710990905762e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.246066808700561523e-01,9.591447710990905762e-01,1.861599922180175781e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.518701934814453125e+01,4.815029446035623550e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.358792304992675781e-01,9.497394561767578125e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.358792304992675781e-01,9.497394561767578125e-01,1.863400077819824219e+01,1.256000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.312300205230712891e+01,6.293003098107874393e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.449825882911682129e-01,9.735204577445983887e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.449825882911682129e-01,9.735204577445983887e-01,1.839599990844726562e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.069482612609863281e+01,2.886840142309665680e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.247123003005981445e-01,9.580711126327514648e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.247123003005981445e-01,9.580711126327514648e-01,1.872999954223632812e+01,1.323999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.374655723571777344e+01,1.205264125019311905e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.215543568134307861e-01,9.704253077507019043e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.215543568134307861e-01,9.704253077507019043e-01,1.764599990844726562e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.664727592468261719e+01,1.294696587137877941e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.169890582561492920e-01,9.691358804702758789e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.169890582561492920e-01,9.691358804702758789e-01,1.900000000000000000e+01,1.123999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.557522201538085938e+01,1.055698376148939133e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.362680912017822266e-01,9.714192748069763184e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.362680912017822266e-01,9.714192748069763184e-01,1.793799972534179688e+01,1.197999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.405284214019775391e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.431025683879852295e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.431025683879852295e-01,9.736213684082031250e-01,1.762199974060058594e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.271054553985595703e+01,7.340981974266469479e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.514732658863067627e-01,9.717426896095275879e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.514732658863067627e-01,9.717426896095275879e-01,1.749799919128417969e+01,1.184000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.177999114990234375e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.703309535980224609e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.703309535980224609e-01,9.736213684082031250e-01,1.789999961853027344e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.663278961181640625e+01,1.159820938482880592e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.350191652774810791e-01,9.703164696693420410e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.350191652774810791e-01,9.703164696693420410e-01,1.865200042724609375e+01,1.238000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.584830379486083984e+01,6.875138496980071068e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.396265149116516113e-01,9.725472331047058105e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.396265149116516113e-01,9.725472331047058105e-01,1.900799942016601562e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.325550842285156250e+02,6.370579358190298080e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.291744530200958252e-01,9.734196066856384277e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.291744530200958252e-01,9.734196066856384277e-01,1.922599983215332031e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.950119590759277344e+01,1.050684601068496704e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.167197942733764648e-01,9.379346966743469238e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.167197942733764648e-01,9.379346966743469238e-01,1.959000015258789062e+01,1.384000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.790205574035644531e+01,8.118075202219188213e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.136466383934020996e-01,9.718377590179443359e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.136466383934020996e-01,9.718377590179443359e-01,1.917399978637695312e+01,1.193999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.994489669799804688e+01,5.005145911127328873e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.117060899734497070e-01,9.557458162307739258e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.117060899734497070e-01,9.557458162307739258e-01,2.000000000000000000e+01,1.307999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.644413757324218750e+01,1.022267621010541916e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.987364172935485840e-01,9.313381910324096680e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.987364172935485840e-01,9.313381910324096680e-01,2.022800064086914062e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.738019561767578125e+01,6.781238596886396408e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.954655230045318604e-01,9.474909901618957520e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.954655230045318604e-01,9.474909901618957520e-01,2.011599922180175781e+01,1.218000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.529487895965576172e+01,2.256046514958143234e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.326151609420776367e-01,9.649015069007873535e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.326151609420776367e-01,9.649015069007873535e-01,1.971400070190429688e+01,1.284000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.624082946777343750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.358713030815124512e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.358713030815124512e-01,9.736213684082031250e-01,1.879999923706054688e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.662428665161132812e+01,6.786185316741466522e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.080021083354949951e-01,9.402700066566467285e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.080021083354949951e-01,9.402700066566467285e-01,1.913999938964843750e+01,1.368000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.749861335754394531e+01,4.189299885183572769e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.052549004554748535e-01,9.557864069938659668e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.052549004554748535e-01,9.557864069938659668e-01,1.860400009155273438e+01,1.327999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.426374340057373047e+01,3.673476632684469223e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.263652563095092773e-01,9.555443525314331055e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.263652563095092773e-01,9.555443525314331055e-01,1.896800041198730469e+01,1.265999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.508660411834716797e+01,2.222998766228556633e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.205344617366790771e-01,9.632780551910400391e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.205344617366790771e-01,9.632780551910400391e-01,1.877199935913085938e+01,1.230000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.614591789245605469e+01,7.969568832777440548e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.197292923927307129e-01,9.717878699302673340e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.197292923927307129e-01,9.717878699302673340e-01,1.833600044250488281e+01,1.114000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.788200569152832031e+01,3.649458056315779686e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.325949251651763916e-01,9.544180035591125488e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.325949251651763916e-01,9.544180035591125488e-01,1.864399909973144531e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.693783378601074219e+01,1.382198766805231571e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.154533445835113525e-01,9.694746732711791992e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.154533445835113525e-01,9.694746732711791992e-01,1.837400054931640625e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.761897659301757812e+01,8.281075279228389263e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.156343936920166016e-01,9.715277552604675293e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.156343936920166016e-01,9.715277552604675293e-01,1.931999969482421875e+01,1.153999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.780257987976074219e+01,1.973965205252170563e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.137523472309112549e-01,9.648916125297546387e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.137523472309112549e-01,9.648916125297546387e-01,1.901399993896484375e+01,1.319999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.920085906982421875e+01,8.608453907072544098e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.043740332126617432e-01,9.365303516387939453e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.043740332126617432e-01,9.365303516387939453e-01,1.852799987792968750e+01,1.330000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.038312149047851562e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.221098721027374268e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.221098721027374268e-01,9.734159111976623535e-01,1.892399978637695312e+01,1.150000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.782476806640625000e+01,2.549084834754467010e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.020260870456695557e-01,9.617335200309753418e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.020260870456695557e-01,9.617335200309753418e-01,1.963199996948242188e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.764156341552734375e+01,3.516982076689600945e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.997777998447418213e-01,9.594444036483764648e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.997777998447418213e-01,9.594444036483764648e-01,1.946400070190429688e+01,1.211999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.133382415771484375e+01,4.605781286954879761e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.979602158069610596e-01,9.498972892761230469e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.979602158069610596e-01,9.498972892761230469e-01,1.952199935913085938e+01,1.246000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.918620872497558594e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.212619662284851074e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.212619662284851074e-01,9.737259149551391602e-01,1.905999946594238281e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.668973731994628906e+01,1.562805729918181896e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.990359008312225342e-01,9.671455025672912598e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.990359008312225342e-01,9.671455025672912598e-01,1.902599906921386719e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.535394859313964844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.266769886016845703e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.266769886016845703e-01,9.736213684082031250e-01,1.866200065612792969e+01,1.181999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.740690612792968750e+01,4.419101867824792862e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.892138600349426270e-01,9.533177018165588379e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.892138600349426270e-01,9.533177018165588379e-01,1.924200057983398438e+01,1.242000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.741156196594238281e+01,2.350330818444490433e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.053142070770263672e-01,9.620252847671508789e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.053142070770263672e-01,9.620252847671508789e-01,1.858399963378906250e+01,1.207999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.838819885253906250e+01,2.626607194542884827e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.048434793949127197e-01,9.616010785102844238e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.048434793949127197e-01,9.616010785102844238e-01,1.792799949645996094e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.500613784790039062e+01,2.206655219197273254e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.169308543205261230e-01,9.646440744400024414e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.169308543205261230e-01,9.646440744400024414e-01,1.850799942016601562e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.691595268249511719e+01,4.250617232173681259e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.113918244838714600e-01,9.521767497062683105e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.113918244838714600e-01,9.521767497062683105e-01,1.801199913024902344e+01,1.143999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.920794486999511719e+01,4.997853189706802368e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.010767638683319092e-01,9.500793218612670898e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.010767638683319092e-01,9.500793218612670898e-01,1.854400062561035156e+01,1.273999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.638611755371093750e+02,6.266106502152979374e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.137250483036041260e-01,9.735537767410278320e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.137250483036041260e-01,9.735537767410278320e-01,1.837000083923339844e+01,1.135999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.492204761505126953e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.273796081542968750e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.273796081542968750e-01,9.737259149551391602e-01,1.778199958801269531e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.769992828369140625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.295562803745269775e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.295562803745269775e-01,9.736213684082031250e-01,1.827000045776367188e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.859778976440429688e+01,4.151931498199701309e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.009315967559814453e-01,9.543972015380859375e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.009315967559814453e-01,9.543972015380859375e-01,1.809199905395507812e+01,1.285999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.797741889953613281e+01,5.010878667235374451e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.981192111968994141e-01,9.474556446075439453e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.981192111968994141e-01,9.474556446075439453e-01,1.920599937438964844e+01,1.302000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.918025398254394531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.195449352264404297e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.195449352264404297e-01,9.736213684082031250e-01,1.889399909973144531e+01,1.169999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.198223495483398438e+01,6.296382751315832138e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.720885217189788818e-01,9.456591010093688965e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.720885217189788818e-01,9.456591010093688965e-01,2.011599922180175781e+01,1.246000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,6.758186340332031250e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.949556648731231689e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.949556648731231689e-01,9.732105135917663574e-01,1.993400001525878906e+01,1.314000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.946978569030761719e+01,8.922155946493148804e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.713916838169097900e-01,9.398773908615112305e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.713916838169097900e-01,9.398773908615112305e-01,2.006999969482421875e+01,1.323999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.130614089965820312e+01,1.717040780931711197e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.795361518859863281e-01,9.666135907173156738e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.795361518859863281e-01,9.666135907173156738e-01,2.110600090026855469e+01,1.172000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.896665954589843750e+01,1.494285883381962776e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.831757903099060059e-01,9.679515957832336426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.831757903099060059e-01,9.679515957832336426e-01,2.035199928283691406e+01,1.310000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.032818222045898438e+01,5.048166494816541672e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.824220597743988037e-01,9.560252428054809570e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.824220597743988037e-01,9.560252428054809570e-01,2.060799980163574219e+01,1.335999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.126798820495605469e+01,8.040498942136764526e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.754249513149261475e-01,9.719386696815490723e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.754249513149261475e-01,9.719386696815490723e-01,2.016399955749511719e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.110120010375976562e+01,5.955461878329515457e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.613647818565368652e-01,9.472117424011230469e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.613647818565368652e-01,9.472117424011230469e-01,2.080999946594238281e+01,1.273999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.076107406616210938e+01,1.055805012583732605e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.574493527412414551e-01,9.310397505760192871e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.574493527412414551e-01,9.310397505760192871e-01,2.082600021362304688e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.932675743103027344e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.069648683071136475e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.069648683071136475e-01,9.736213684082031250e-01,2.001600074768066406e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.244406127929687500e+01,1.650001970119774342e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.812740445137023926e-01,9.664368033409118652e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.812740445137023926e-01,9.664368033409118652e-01,2.004999923706054688e+01,1.357999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.255286216735839844e+01,6.696579512208700180e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.843637406826019287e-01,9.727995991706848145e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.843637406826019287e-01,9.727995991706848145e-01,1.970400047302246094e+01,1.184000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.110002899169921875e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.809166252613067627e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.809166252613067627e-01,9.732105135917663574e-01,2.020199966430664062e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.173734283447265625e+01,7.974338717758655548e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.566335737705230713e-01,9.420400261878967285e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.566335737705230713e-01,9.420400261878967285e-01,1.987400054931640625e+01,1.407999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.272126388549804688e+01,5.364190787076950073e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.776302337646484375e-01,9.518864750862121582e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.776302337646484375e-01,9.518864750862121582e-01,1.990399932861328125e+01,1.176000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.331721878051757812e+01,6.061937194317579269e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.665112257003784180e-01,9.501538276672363281e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.665112257003784180e-01,9.501538276672363281e-01,2.035799980163574219e+01,1.360000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.958535766601562500e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.068420231342315674e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.068420231342315674e-01,9.737259149551391602e-01,1.939599990844726562e+01,1.139999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.278693237304687500e+03,1.308409497141838074e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.022285342216491699e-01,9.690311551094055176e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.022285342216491699e-01,9.690311551094055176e-01,1.977599906921386719e+01,1.330000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.282262992858886719e+01,2.728337189182639122e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.773978948593139648e-01,9.610438942909240723e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.773978948593139648e-01,9.610438942909240723e-01,1.963599967956542969e+01,1.276000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.931159019470214844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.984659314155578613e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.984659314155578613e-01,9.736213684082031250e-01,2.016600036621093750e+01,1.152000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.945492744445800781e+01,8.281075279228389263e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.827846944332122803e-01,9.715277552604675293e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.827846944332122803e-01,9.715277552604675293e-01,1.967000007629394531e+01,1.169999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.329210472106933594e+01,3.488389076665043831e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.473153114318847656e-01,9.584886431694030762e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.473153114318847656e-01,9.584886431694030762e-01,2.083799934387207031e+01,1.202000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.634005355834960938e+01,1.187114883214235306e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.530250489711761475e-01,9.312829971313476562e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.530250489711761475e-01,9.312829971313476562e-01,2.005800056457519531e+01,1.347999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,2.825455474853515625e+01,4.790405277162790298e-03,1.000000000000000000e+00,9.788492321968078613e-01,3.574030995368957520e-01,9.510827660560607910e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.574030995368957520e-01,9.510827660560607910e-01,2.120000076293945312e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.325699424743652344e+01,2.792705316096544266e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.586528599262237549e-01,9.616076350212097168e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.586528599262237549e-01,9.616076350212097168e-01,2.070000076293945312e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.356049537658691406e+01,1.126988045871257782e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.452567756175994873e-01,9.326281547546386719e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.452567756175994873e-01,9.326281547546386719e-01,2.142799949645996094e+01,1.384000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.297159385681152344e+01,1.752395182847976685e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.841528892517089844e-01,9.662652611732482910e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.841528892517089844e-01,9.662652611732482910e-01,2.127400016784667969e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.073443031311035156e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.822482526302337646e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.822482526302337646e-01,9.734159111976623535e-01,2.022599983215332031e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.999911308288574219e+01,8.040498942136764526e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.747591376304626465e-01,9.719386696815490723e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.747591376304626465e-01,9.719386696815490723e-01,2.005200004577636719e+01,1.285999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.059894180297851562e+01,9.662586380727589130e-04,1.000000000000000000e+00,1.000000000000000000e+00,3.800527453422546387e-01,9.719499945640563965e-01,1.000000000000000000e+00,1.000000000000000000e+00,3.800527453422546387e-01,9.719499945640563965e-01,2.053599929809570312e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.499763870239257812e+01,2.882848726585507393e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.756579756736755371e-01,9.602138996124267578e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.756579756736755371e-01,9.602138996124267578e-01,2.019400024414062500e+01,1.335999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.086568450927734375e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.873026669025421143e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.873026669025421143e-01,9.736213684082031250e-01,1.943000030517578125e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,5.934623336791992188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.686412870883941650e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.686412870883941650e-01,9.736213684082031250e-01,1.976799964904785156e+01,1.226000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.209378623962402344e+01,1.680954359471797943e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.820641934871673584e-01,9.672299027442932129e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.820641934871673584e-01,9.672299027442932129e-01,2.011000061035156250e+01,1.272000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.306385040283203125e+01,6.946374662220478058e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.514374792575836182e-01,9.459498524665832520e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.514374792575836182e-01,9.459498524665832520e-01,2.001600074768066406e+01,1.435999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.355330848693847656e+01,1.055698376148939133e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.579584062099456787e-01,9.714192748069763184e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.579584062099456787e-01,9.714192748069763184e-01,2.015600013732910156e+01,1.250000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.111497497558593750e+01,7.375508081167936325e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.696208000183105469e-01,9.441713094711303711e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.696208000183105469e-01,9.441713094711303711e-01,2.006200027465820312e+01,1.369999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.626765632629394531e+01,3.670332254841923714e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.706131279468536377e-01,9.584611654281616211e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.706131279468536377e-01,9.584611654281616211e-01,1.989200019836425781e+01,1.307999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.183232116699218750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.028301835060119629e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.028301835060119629e-01,9.736213684082031250e-01,1.937400054931640625e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.256299972534179688e+01,2.657322911545634270e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.807550072669982910e-01,9.638611078262329102e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.807550072669982910e-01,9.638611078262329102e-01,2.042399978637695312e+01,1.238000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.523770332336425781e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.915709555149078369e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.915709555149078369e-01,9.736213684082031250e-01,1.968600082397460938e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.440865516662597656e+01,4.096780437976121902e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.526536226272583008e-01,9.532752037048339844e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.526536226272583008e-01,9.532752037048339844e-01,2.051399993896484375e+01,1.346000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.235163497924804688e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.675521910190582275e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.675521910190582275e-01,9.730050563812255859e-01,2.102199935913085938e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.372861480712890625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.839671015739440918e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.839671015739440918e-01,9.736213684082031250e-01,2.025399971008300781e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.324093437194824219e+01,1.178061473183333874e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.612071275711059570e-01,9.707637429237365723e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.612071275711059570e-01,9.707637429237365723e-01,2.028400039672851562e+01,1.292000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.002296257019042969e+01,1.745934365317225456e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.458284139633178711e-01,9.674322009086608887e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.458284139633178711e-01,9.674322009086608887e-01,2.103400039672851562e+01,1.364000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.492068672180175781e+01,1.133496966212987900e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.244052231311798096e-01,9.329009056091308594e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.244052231311798096e-01,9.329009056091308594e-01,2.182200050354003906e+01,1.347999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.675581741333007812e+01,1.380973146297037601e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.367669880390167236e-01,9.690966606140136719e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.367669880390167236e-01,9.690966606140136719e-01,2.165200042724609375e+01,1.319999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,2.424845886230468750e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.621332943439483643e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.621332943439483643e-01,9.737259149551391602e-01,2.233600044250488281e+01,1.288000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.719524383544921875e+01,9.533934295177459717e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.402580022811889648e-01,9.379664063453674316e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.402580022811889648e-01,9.379664063453674316e-01,2.182600021362304688e+01,1.464000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.321511268615722656e+01,4.185364581644535065e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.531608581542968750e-01,9.566456079483032227e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.531608581542968750e-01,9.566456079483032227e-01,2.167799949645996094e+01,1.365999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,2.600643920898437500e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.548218905925750732e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.548218905925750732e-01,9.737259149551391602e-01,2.128599929809570312e+01,1.257999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.644353103637695312e+01,1.038833637721836567e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.446908891201019287e-01,9.703952074050903320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.446908891201019287e-01,9.703952074050903320e-01,2.049600028991699219e+01,1.293999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,2.534421157836914062e+01,1.241350546479225159e-03,1.000000000000000000e+00,9.788492321968078613e-01,3.607606589794158936e-01,9.698089957237243652e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.607606589794158936e-01,9.698089957237243652e-01,2.080999946594238281e+01,1.418000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.683613586425781250e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.802968561649322510e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.802968561649322510e-01,9.732105135917663574e-01,2.063800048828125000e+01,1.193999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.847964859008789062e+01,1.555381109938025475e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.440319299697875977e-01,9.684863686561584473e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.440319299697875977e-01,9.684863686561584473e-01,2.093600082397460938e+01,1.419999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.481596755981445312e+01,1.812095171771943569e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.669089376926422119e-01,9.657649993896484375e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.669089376926422119e-01,9.657649993896484375e-01,2.041200065612792969e+01,1.310000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.674281501770019531e+01,2.395248040556907654e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.491786420345306396e-01,9.628319740295410156e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.491786420345306396e-01,9.628319740295410156e-01,2.087000083923339844e+01,1.360000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.544417381286621094e+01,1.797991106286644936e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.655484318733215332e-01,9.663472771644592285e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.655484318733215332e-01,9.663472771644592285e-01,2.030599975585937500e+01,1.269999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.447084045410156250e+01,1.019611838273704052e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.607170283794403076e-01,9.720355868339538574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.607170283794403076e-01,9.720355868339538574e-01,2.074399948120117188e+01,1.373999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.032330894470214844e+01,2.359161619096994400e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.513205945491790771e-01,9.634482860565185547e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.513205945491790771e-01,9.634482860565185547e-01,2.126399993896484375e+01,1.238000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.278930664062500000e+01,5.249210167676210403e-03,1.000000000000000000e+00,1.000000000000000000e+00,3.644121289253234863e-01,9.518057703971862793e-01,1.000000000000000000e+00,1.000000000000000000e+00,3.644121289253234863e-01,9.518057703971862793e-01,2.020999908447265625e+01,1.353999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.279455757141113281e+01,9.907182538881897926e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.666750788688659668e-01,9.712169766426086426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.666750788688659668e-01,9.712169766426086426e-01,2.136199951171875000e+01,1.203999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.051497268676757812e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.871428072452545166e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.871428072452545166e-01,9.736213684082031250e-01,1.943400001525878906e+01,1.134000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.330785751342773438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.733314275741577148e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.733314275741577148e-01,9.736213684082031250e-01,1.975200080871582031e+01,1.197999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.174813461303710938e+01,1.412845216691493988e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.732711374759674072e-01,9.692202806472778320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.732711374759674072e-01,9.692202806472778320e-01,2.022800064086914062e+01,1.250000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.453083801269531250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.814010024070739746e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.814010024070739746e-01,9.736213684082031250e-01,1.925000000000000000e+01,1.246000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.624155998229980469e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.736148774623870850e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.736148774623870850e-01,9.730050563812255859e-01,2.044599914550781250e+01,1.335999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.463885307312011719e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.656012415885925293e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.656012415885925293e-01,9.736213684082031250e-01,2.034600067138671875e+01,1.207999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,5.983562088012695312e+01,3.004718106240034103e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.522212207317352295e-01,9.603821039199829102e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.522212207317352295e-01,9.603821039199829102e-01,2.051399993896484375e+01,1.276000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.711578559875488281e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.453610539436340332e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.453610539436340332e-01,9.734159111976623535e-01,2.043000030517578125e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.054372215270996094e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.313131034374237061e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.313131034374237061e-01,9.736213684082031250e-01,2.195400047302246094e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.075366210937500000e+01,3.296995302662253380e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.353514671325683594e-01,9.599045515060424805e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.353514671325683594e-01,9.599045515060424805e-01,2.168000030517578125e+01,1.368000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.121623802185058594e+01,2.615024335682392120e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.227806389331817627e-01,9.621889591217041016e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.227806389331817627e-01,9.621889591217041016e-01,2.209199905395507812e+01,1.361999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.750890922546386719e+01,4.294393956661224365e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.107407093048095703e-01,9.014530777931213379e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.107407093048095703e-01,9.014530777931213379e-01,2.164599990844726562e+01,1.400000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.162224578857421875e+01,6.014465820044279099e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.203277587890625000e-01,9.512659311294555664e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.203277587890625000e-01,9.512659311294555664e-01,2.177799987792968750e+01,1.414000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.358482360839843750e+01,1.472772844135761261e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.451687991619110107e-01,9.287726879119873047e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.451687991619110107e-01,9.287726879119873047e-01,2.084199905395507812e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.509079551696777344e+01,1.043669530190527439e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.699715733528137207e-01,9.716246724128723145e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.699715733528137207e-01,9.716246724128723145e-01,2.059199905395507812e+01,1.334000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.406359672546386719e+01,1.031640684232115746e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.638957440853118896e-01,9.718301296234130859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.638957440853118896e-01,9.718301296234130859e-01,2.009600067138671875e+01,1.450000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.131887817382812500e+01,2.371190348640084267e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.695659041404724121e-01,9.632428288459777832e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.695659041404724121e-01,9.632428288459777832e-01,1.955800056457519531e+01,1.514000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,7.551104736328125000e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.791415393352508545e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.791415393352508545e-01,9.736213684082031250e-01,1.931399917602539062e+01,1.230000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.226031494140625000e+01,9.786895243450999260e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.850933313369750977e-01,9.714223742485046387e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.850933313369750977e-01,9.714223742485046387e-01,1.930200004577636719e+01,1.261999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.650078010559082031e+01,7.799922022968530655e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.786540329456329346e-01,9.723495244979858398e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.786540329456329346e-01,9.723495244979858398e-01,1.938599967956542969e+01,1.239999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.004545974731445312e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.933059871196746826e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.933059871196746826e-01,9.736213684082031250e-01,1.938800048828125000e+01,1.360000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.508080101013183594e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.903637230396270752e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.903637230396270752e-01,9.736213684082031250e-01,1.930200004577636719e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.511923980712890625e+01,1.680954359471797943e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.785035908222198486e-01,9.672299027442932129e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.785035908222198486e-01,9.672299027442932129e-01,1.881599998474121094e+01,1.289999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.511120605468750000e+01,3.037368645891547203e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.624267578125000000e-01,9.596666693687438965e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.624267578125000000e-01,9.596666693687438965e-01,2.040999984741210938e+01,1.347999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,8.204579162597656250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.825187683105468750e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.825187683105468750e-01,9.736213684082031250e-01,2.024399948120117188e+01,1.352000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.354535102844238281e+01,4.214113112539052963e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.625918030738830566e-01,9.576179981231689453e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.625918030738830566e-01,9.576179981231689453e-01,2.006399917602539062e+01,1.473999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.413204383850097656e+01,2.383219078183174133e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.579123318195343018e-01,9.630374312400817871e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.579123318195343018e-01,9.630374312400817871e-01,2.050799942016601562e+01,1.285999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.390250015258789062e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.825709223747253418e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.825709223747253418e-01,9.734159111976623535e-01,2.070999908447265625e+01,1.314000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.585787773132324219e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.754150867462158203e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.754150867462158203e-01,9.736213684082031250e-01,2.067000007629394531e+01,1.350000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.345218658447265625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.786207139492034912e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.786207139492034912e-01,9.736213684082031250e-01,2.106999969482421875e+01,1.256000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.556740760803222656e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.672747313976287842e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.672747313976287842e-01,9.736213684082031250e-01,2.058799934387207031e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.835459136962890625e+01,1.007542130537331104e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.559928536415100098e-01,9.710360765457153320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.559928536415100098e-01,9.710360765457153320e-01,2.163400077819824219e+01,1.426000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.783498573303222656e+01,1.347865094430744648e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.424584567546844482e-01,9.690179824829101562e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.424584567546844482e-01,9.690179824829101562e-01,2.172800064086914062e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.848458671569824219e+01,1.827375032007694244e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.533917069435119629e-01,9.661635160446166992e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.533917069435119629e-01,9.661635160446166992e-01,2.229800033569335938e+01,1.426000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.389007186889648438e+01,2.614480676129460335e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.217356801033020020e-01,9.637960791587829590e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.217356801033020020e-01,9.637960791587829590e-01,2.295599937438964844e+01,1.373999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.040681266784667969e+01,2.038101200014352798e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.264195024967193604e-01,9.650309681892395020e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.264195024967193604e-01,9.650309681892395020e-01,2.297200012207031250e+01,1.381999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.802208328247070312e+01,9.666606201790273190e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.231264352798461914e-01,9.716278314590454102e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.231264352798461914e-01,9.716278314590454102e-01,2.238400077819824219e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.998910140991210938e+01,1.721876673400402069e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.264673650264739990e-01,9.678430557250976562e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.264673650264739990e-01,9.678430557250976562e-01,2.309399986267089844e+01,1.473999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.721971511840820312e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.510743677616119385e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.510743677616119385e-01,9.736213684082031250e-01,2.171199989318847656e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.003919792175292969e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.483239710330963135e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.483239710330963135e-01,9.736213684082031250e-01,2.259000015258789062e+01,1.453999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.381946182250976562e+01,1.494285883381962776e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.199249505996704102e-01,9.679515957832336426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.199249505996704102e-01,9.679515957832336426e-01,2.305400085449218750e+01,1.647999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.683759689331054688e+01,1.499080914072692394e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.350994884967803955e-01,9.679761528968811035e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.350994884967803955e-01,9.679761528968811035e-01,2.237800025939941406e+01,1.430000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.961728096008300781e+01,2.156032482162117958e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.223687112331390381e-01,9.656409621238708496e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.223687112331390381e-01,9.656409621238708496e-01,2.244799995422363281e+01,1.343999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.013471794128417969e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.396610915660858154e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.396610915660858154e-01,9.736213684082031250e-01,2.256399917602539062e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.158319854736328125e+01,1.020535640418529510e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.113607168197631836e-01,9.385178685188293457e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.113607168197631836e-01,9.385178685188293457e-01,2.284799957275390625e+01,1.473999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.096643066406250000e+01,1.055698376148939133e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.413725197315216064e-01,9.714192748069763184e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.413725197315216064e-01,9.714192748069763184e-01,2.135799980163574219e+01,1.322000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.605625915527343750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.487028479576110840e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.487028479576110840e-01,9.736213684082031250e-01,2.165999984741210938e+01,1.411999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.824705696105957031e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.383139073848724365e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.383139073848724365e-01,9.732105135917663574e-01,2.122200012207031250e+01,1.361999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.755186462402343750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.429346978664398193e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.429346978664398193e-01,9.736213684082031250e-01,2.148200035095214844e+01,1.393999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.807997131347656250e+01,1.547237159684300423e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.446560502052307129e-01,9.683593511581420898e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.446560502052307129e-01,9.683593511581420898e-01,2.183600044250488281e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.869892501831054688e+01,3.710336517542600632e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.217246830463409424e-01,9.595986604690551758e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.217246830463409424e-01,9.595986604690551758e-01,2.164999961853027344e+01,1.434000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.091621208190917969e+01,1.380138564854860306e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.234651386737823486e-01,9.361402392387390137e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.234651386737823486e-01,9.361402392387390137e-01,2.193199920654296875e+01,1.473999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.683144187927246094e+01,1.835518982261419296e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.296509087085723877e-01,9.662905931472778320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.296509087085723877e-01,9.662905931472778320e-01,2.148999977111816406e+01,1.400000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.588575935363769531e+01,1.993830781430006027e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.440471291542053223e-01,9.658143520355224609e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.440471291542053223e-01,9.658143520355224609e-01,2.054999923706054688e+01,1.300000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.881081771850585938e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.536562919616699219e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.536562919616699219e-01,9.736213684082031250e-01,2.112400054931640625e+01,1.319999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.719978332519531250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.459222316741943359e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.459222316741943359e-01,9.736213684082031250e-01,2.137599945068359375e+01,1.365999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.394950866699218750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.751720786094665527e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.751720786094665527e-01,9.736213684082031250e-01,1.953199958801269531e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.663350105285644531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.676795363426208496e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.676795363426208496e-01,9.736213684082031250e-01,2.055999946594238281e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.873078369140625000e+03,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.611859679222106934e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.611859679222106934e-01,9.736213684082031250e-01,2.042799949645996094e+01,1.439999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.166477775573730469e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.795079290866851807e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.795079290866851807e-01,9.734159111976623535e-01,2.054199981689453125e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.107483673095703125e+01,2.383219078183174133e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.342483639717102051e-01,9.630374312400817871e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.342483639717102051e-01,9.630374312400817871e-01,2.138199996948242188e+01,1.289999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.875467109680175781e+01,1.494285883381962776e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.416104912757873535e-01,9.679515957832336426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.416104912757873535e-01,9.679515957832336426e-01,2.153599929809570312e+01,1.403999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.666944503784179688e+01,1.174176577478647232e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.485216796398162842e-01,9.710962176322937012e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.485216796398162842e-01,9.710962176322937012e-01,2.084399986267089844e+01,1.502000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.064318466186523438e+01,1.680954359471797943e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.398534953594207764e-01,9.672299027442932129e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.398534953594207764e-01,9.672299027442932129e-01,2.156599998474121094e+01,1.447999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.083072090148925781e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.439053297042846680e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.439053297042846680e-01,9.736213684082031250e-01,2.168400001525878906e+01,1.314000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.064797782897949219e+01,7.200018037110567093e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.225175142288208008e-01,9.452794790267944336e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.225175142288208008e-01,9.452794790267944336e-01,2.150399971008300781e+01,1.514000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.375176239013671875e+01,1.002747099846601486e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.069142699241638184e-01,9.710115194320678711e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.069142699241638184e-01,9.710115194320678711e-01,2.201199913024902344e+01,1.600000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.125201606750488281e+01,1.851432723924517632e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.337841033935546875e-01,9.657526612281799316e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.337841033935546875e-01,9.657526612281799316e-01,2.184799957275390625e+01,1.430000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.428218841552734375e+01,1.881589181721210480e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.063121140003204346e-01,9.272831678390502930e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.063121140003204346e-01,9.272831678390502930e-01,2.189399909973144531e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,5.015153503417968750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.323217034339904785e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.323217034339904785e-01,9.736213684082031250e-01,2.212800025939941406e+01,1.356000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.446677780151367188e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.426194787025451660e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.426194787025451660e-01,9.730050563812255859e-01,2.166799926757812500e+01,1.380000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.189432144165039062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.316521048545837402e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.316521048545837402e-01,9.736213684082031250e-01,2.156599998474121094e+01,1.347999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.144220733642578125e+01,5.144273862242698669e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.225860297679901123e-01,9.490129351615905762e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.225860297679901123e-01,9.490129351615905762e-01,2.215800094604492188e+01,1.400000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.360243988037109375e+01,1.482257037423551083e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.180965483188629150e-01,9.681570529937744141e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.180965483188629150e-01,9.681570529937744141e-01,2.155999946594238281e+01,1.407999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.084245109558105469e+01,1.815750380046665668e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.350505232810974121e-01,9.688639640808105469e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.350505232810974121e-01,9.688639640808105469e-01,2.159199905395507812e+01,1.485999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.927823448181152344e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.619822859764099121e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.619822859764099121e-01,9.736213684082031250e-01,2.112599945068359375e+01,1.461999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.927234954833984375e+02,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.354289233684539795e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.354289233684539795e-01,9.736213684082031250e-01,2.135199928283691406e+01,1.342000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.807228088378906250e+01,5.270831752568483353e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.372463881969451904e-01,9.552842974662780762e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.372463881969451904e-01,9.552842974662780762e-01,2.147999954223632812e+01,1.589999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.241162872314453125e+01,1.311778672970831394e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.343327641487121582e-01,9.696342945098876953e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.343327641487121582e-01,9.696342945098876953e-01,2.160799980163574219e+01,1.393999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.369974899291992188e+01,1.681629102677106857e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.229879438877105713e-01,9.674983620643615723e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.229879438877105713e-01,9.674983620643615723e-01,2.164999961853027344e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.806796073913574219e+01,2.757230773568153381e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.439567685127258301e-01,9.618625044822692871e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.439567685127258301e-01,9.618625044822692871e-01,2.101000022888183594e+01,1.419999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.805867576599121094e+01,1.680954359471797943e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.438429534435272217e-01,9.672299027442932129e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.438429534435272217e-01,9.672299027442932129e-01,2.131200027465820312e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.470402526855468750e+01,5.120814591646194458e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.163154423236846924e-01,8.850333094596862793e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.163154423236846924e-01,8.850333094596862793e-01,2.119000053405761719e+01,1.597999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.813700485229492188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.618451654911041260e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.618451654911041260e-01,9.736213684082031250e-01,2.087000083923339844e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.591074180603027344e+01,1.709847943857312202e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.537181913852691650e-01,9.680485129356384277e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.537181913852691650e-01,9.680485129356384277e-01,2.054199981689453125e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.222797393798828125e+01,2.371190348640084267e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.321711421012878418e-01,9.632428288459777832e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.321711421012878418e-01,9.632428288459777832e-01,2.089200019836425781e+01,1.506000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.631878280639648438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.523665666580200195e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.523665666580200195e-01,9.736213684082031250e-01,2.057799911499023438e+01,1.342000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.936792182922363281e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.653230369091033936e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.653230369091033936e-01,9.736213684082031250e-01,2.051199913024902344e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.080993652343750000e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.732474148273468018e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.732474148273468018e-01,9.736213684082031250e-01,2.102199935913085938e+01,1.430000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.732809257507324219e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.703961372375488281e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.703961372375488281e-01,9.736213684082031250e-01,2.058399963378906250e+01,1.560000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.006813240051269531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.545295596122741699e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.545295596122741699e-01,9.736213684082031250e-01,2.075600051879882812e+01,1.485999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.975277709960937500e+01,1.482257037423551083e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.236792087554931641e-01,9.681570529937744141e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.236792087554931641e-01,9.681570529937744141e-01,2.202400016784667969e+01,1.357999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.574863433837890625e+01,2.514707297086715698e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.925101518630981445e-01,9.263061881065368652e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.925101518630981445e-01,9.263061881065368652e-01,2.292799949645996094e+01,1.752000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.975810813903808594e+01,2.383219078183174133e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.277356326580047607e-01,9.630374312400817871e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.277356326580047607e-01,9.630374312400817871e-01,2.236599922180175781e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.199025344848632812e+01,1.839403877966105938e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.375517129898071289e-01,9.659580588340759277e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.375517129898071289e-01,9.659580588340759277e-01,2.189399909973144531e+01,1.514000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.994582748413085938e+01,1.033124048262834549e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.230670094490051270e-01,9.519352316856384277e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.230670094490051270e-01,9.519352316856384277e-01,2.211199951171875000e+01,1.546000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.979261779785156250e+01,2.676060656085610390e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.261481225490570068e-01,9.609046578407287598e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.261481225490570068e-01,9.609046578407287598e-01,2.112999916076660156e+01,1.500000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.954028892517089844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.452787101268768311e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.452787101268768311e-01,9.736213684082031250e-01,2.139800071716308594e+01,1.597999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.548920822143554688e+01,6.091117975302040577e-04,1.000000000000000000e+00,1.000000000000000000e+00,3.595520257949829102e-01,9.741489291191101074e-01,1.000000000000000000e+00,1.000000000000000000e+00,3.595520257949829102e-01,9.741489291191101074e-01,2.027400016784667969e+01,1.311999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.556457519531250000e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.498415648937225342e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.498415648937225342e-01,9.736213684082031250e-01,2.079999923706054688e+01,1.580000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,5.353510665893554688e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.621639609336853027e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.621639609336853027e-01,9.736213684082031250e-01,1.956399917602539062e+01,1.406000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.942016983032226562e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.711458146572113037e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.711458146572113037e-01,9.736213684082031250e-01,1.955999946594238281e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.637836456298828125e+01,2.412112662568688393e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.552141487598419189e-01,9.638560414314270020e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.552141487598419189e-01,9.638560414314270020e-01,2.038400077819824219e+01,1.523999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.553434753417968750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.557839989662170410e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.557839989662170410e-01,9.736213684082031250e-01,2.005800056457519531e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.824765586853027344e+01,1.364729832857847214e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.456086814403533936e-01,9.700420498847961426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.456086814403533936e-01,9.700420498847961426e-01,2.140200042724609375e+01,1.684000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.902962875366210938e+01,2.359161619096994400e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.253328502178192139e-01,9.634482860565185547e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.253328502178192139e-01,9.634482860565185547e-01,2.162999916076660156e+01,1.654000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.774303054809570312e+01,2.692250767722725868e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.383731544017791748e-01,9.616602063179016113e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.383731544017791748e-01,9.616602063179016113e-01,2.137999916076660156e+01,1.573999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.077351760864257812e+01,9.666606201790273190e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.440245687961578369e-01,9.716278314590454102e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.440245687961578369e-01,9.716278314590454102e-01,2.034799957275390625e+01,1.518000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.714328765869140625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.223039209842681885e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.223039209842681885e-01,9.736213684082031250e-01,2.203400039672851562e+01,1.414000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.291829681396484375e+01,2.336783707141876221e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.139167726039886475e-01,9.208045005798339844e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.139167726039886475e-01,9.208045005798339844e-01,2.243799972534179688e+01,1.679999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.558388137817382812e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.249517679214477539e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.249517679214477539e-01,9.736213684082031250e-01,2.205800056457519531e+01,1.600000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.545463180541992188e+01,1.323807518929243088e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.236096501350402832e-01,9.694288969039916992e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.236096501350402832e-01,9.694288969039916992e-01,2.190999984741210938e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.969291496276855469e+01,3.780555911362171173e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.248980939388275146e-01,9.560873508453369141e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.248980939388275146e-01,9.560873508453369141e-01,2.279199981689453125e+01,1.868000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.067319869995117188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.485324382781982422e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.485324382781982422e-01,9.736213684082031250e-01,2.202799987792968750e+01,1.613999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.369778076171875000e+03,9.893162176012992859e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.045544624328613281e-01,9.420229792594909668e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.045544624328613281e-01,9.420229792594909668e-01,2.268799972534179688e+01,1.644000053405761719e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.713568687438964844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.405874967575073242e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.405874967575073242e-01,9.736213684082031250e-01,2.140800094604492188e+01,1.326000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.260775375366210938e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.386374711990356445e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.386374711990356445e-01,9.736213684082031250e-01,2.251799964904785156e+01,1.465999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.183031654357910156e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.315389752388000488e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.315389752388000488e-01,9.736213684082031250e-01,2.258399963378906250e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.213813018798828125e+01,1.161196734756231308e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.173066675662994385e-01,9.697396755218505859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.173066675662994385e-01,9.697396755218505859e-01,2.297599983215332031e+01,1.488000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.782134437561035156e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.392836153507232666e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.392836153507232666e-01,9.736213684082031250e-01,2.260799980163574219e+01,1.353999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.128211593627929688e+01,1.494285883381962776e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.142083585262298584e-01,9.679515957832336426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.142083585262298584e-01,9.679515957832336426e-01,2.268199920654296875e+01,1.684000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.253351593017578125e+01,3.634568070992827415e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.149607479572296143e-01,9.613867998123168945e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.149607479572296143e-01,9.613867998123168945e-01,2.286599922180175781e+01,1.613999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.264027786254882812e+01,3.084747679531574249e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.003186881542205811e-01,9.186649322509765625e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.003186881542205811e-01,9.186649322509765625e-01,2.320999908447265625e+01,1.628000068664550781e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.183939552307128906e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.324439525604248047e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.324439525604248047e-01,9.734159111976623535e-01,2.217000007629394531e+01,1.306000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.193885803222656250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.288978338241577148e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.288978338241577148e-01,9.736213684082031250e-01,2.207600021362304688e+01,1.503999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.972861862182617188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.482580780982971191e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.482580780982971191e-01,9.736213684082031250e-01,2.139599990844726562e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.132676696777343750e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.425418734550476074e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.425418734550476074e-01,9.737259149551391602e-01,2.173800086975097656e+01,1.523999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.795673561096191406e+01,4.066464025527238846e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.315497636795043945e-01,9.570688605308532715e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.315497636795043945e-01,9.570688605308532715e-01,2.150600051879882812e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.969850730895996094e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.352727890014648438e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.352727890014648438e-01,9.736213684082031250e-01,2.173600006103515625e+01,1.550000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.328437423706054688e+01,6.572303827852010727e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.218604028224945068e-01,9.464329481124877930e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.218604028224945068e-01,9.464329481124877930e-01,2.143799972534179688e+01,1.488000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.003092956542968750e+01,3.435438033193349838e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.278439044952392578e-01,9.580808877944946289e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.278439044952392578e-01,9.580808877944946289e-01,2.147400093078613281e+01,1.637999916076660156e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.025202941894531250e+01,2.214643871411681175e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.205349445343017578e-01,9.663987159729003906e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.205349445343017578e-01,9.663987159729003906e-01,2.207200050354003906e+01,1.480000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.214566345214843750e+02,2.347132656723260880e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.283240199089050293e-01,9.636537432670593262e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.283240199089050293e-01,9.636537432670593262e-01,2.123999977111816406e+01,1.302000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.653269577026367188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.605730235576629639e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.605730235576629639e-01,9.736213684082031250e-01,2.062999916076660156e+01,1.439999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.249260330200195312e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.386021554470062256e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.386021554470062256e-01,9.736213684082031250e-01,2.098800086975097656e+01,1.506000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.186631011962890625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.569496572017669678e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.569496572017669678e-01,9.736213684082031250e-01,2.123200035095214844e+01,1.561999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.329179382324218750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.461685478687286377e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.461685478687286377e-01,9.736213684082031250e-01,2.164599990844726562e+01,1.636000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.801934814453125000e+01,5.730961915105581284e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.280184268951416016e-01,9.498832225799560547e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.280184268951416016e-01,9.498832225799560547e-01,2.139599990844726562e+01,1.368000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.853596687316894531e+01,1.786856795661151409e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.349967300891876221e-01,9.680453538894653320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.349967300891876221e-01,9.680453538894653320e-01,2.155400085449218750e+01,1.605999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.576691436767578125e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.486377298831939697e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.486377298831939697e-01,9.736213684082031250e-01,2.141399955749511719e+01,1.534000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.216872024536132812e+01,3.640826791524887085e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.232589364051818848e-01,9.580039978027343750e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.232589364051818848e-01,9.580039978027343750e-01,2.220000076293945312e+01,1.636000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.195900917053222656e+01,3.382486756891012192e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.157687783241271973e-01,9.576731324195861816e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.157687783241271973e-01,9.576731324195861816e-01,2.178400039672851562e+01,1.506000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.860413551330566406e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.302151858806610107e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.302151858806610107e-01,9.736213684082031250e-01,2.177400016784667969e+01,1.318000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.415042114257812500e+01,2.512998413294553757e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.240731656551361084e-01,9.623498320579528809e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.240731656551361084e-01,9.623498320579528809e-01,2.139200019836425781e+01,1.418000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.411209106445312500e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.210390806198120117e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.210390806198120117e-01,9.734159111976623535e-01,2.159399986267089844e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.010670661926269531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.377596139907836914e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.377596139907836914e-01,9.736213684082031250e-01,2.192399978637695312e+01,1.668000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.084389114379882812e+01,7.212157361209392548e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.162924945354461670e-01,9.469977617263793945e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.162924945354461670e-01,9.469977617263793945e-01,2.203199958801269531e+01,1.642000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.923360633850097656e+01,2.769259503111243248e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.318101167678833008e-01,9.616570472717285156e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.318101167678833008e-01,9.616570472717285156e-01,2.185799980163574219e+01,1.581999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.121443748474121094e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.299096524715423584e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.299096524715423584e-01,9.736213684082031250e-01,2.220400047302246094e+01,1.573999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.639469146728515625e+01,9.265298023819923401e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.032850325107574463e-01,9.445770978927612305e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.032850325107574463e-01,9.445770978927612305e-01,2.260600090026855469e+01,1.604000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.502038955688476562e+01,2.260139398276805878e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.879703938961029053e-01,9.280459880828857422e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.879703938961029053e-01,9.280459880828857422e-01,2.248600006103515625e+01,1.612000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.320988082885742188e+01,3.219875972718000412e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.267734348773956299e-01,9.579839706420898438e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.267734348773956299e-01,9.579839706420898438e-01,2.276600074768066406e+01,1.602000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.981179046630859375e+01,2.840751782059669495e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.043718934059143066e-01,9.259921312332153320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.043718934059143066e-01,9.259921312332153320e-01,2.202599906921386719e+01,1.557999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.795663261413574219e+01,1.335836364887654781e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.485151231288909912e-01,9.692234396934509277e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.485151231288909912e-01,9.692234396934509277e-01,2.118000030517578125e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.768586540222167969e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.732662200927734375e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.732662200927734375e-01,9.736213684082031250e-01,1.995400047302246094e+01,1.376000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.633989906311035156e+01,1.178061473183333874e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.549654185771942139e-01,9.707637429237365723e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.549654185771942139e-01,9.707637429237365723e-01,1.995800018310546875e+01,1.560000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.150008201599121094e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.964817225933074951e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.964817225933074951e-01,9.736213684082031250e-01,1.929199981689453125e+01,1.339999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.202823638916015625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.918987512588500977e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.918987512588500977e-01,9.736213684082031250e-01,1.918600082397460938e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.117323684692382812e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.078474938869476318e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.078474938869476318e-01,9.736213684082031250e-01,1.963800048828125000e+01,1.319999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,8.425219726562500000e+01,3.090319922193884850e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.609219789505004883e-01,9.600744247436523438e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.609219789505004883e-01,9.600744247436523438e-01,1.951799964904785156e+01,1.569999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.098230361938476562e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.872752487659454346e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.872752487659454346e-01,9.736213684082031250e-01,1.934399986267089844e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.995515441894531250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.926605880260467529e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.926605880260467529e-01,9.736213684082031250e-01,1.939999961853027344e+01,1.469999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.448505973815917969e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.843812346458435059e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.843812346458435059e-01,9.736213684082031250e-01,1.925799942016601562e+01,1.361999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.726979255676269531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.583475649356842041e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.583475649356842041e-01,9.736213684082031250e-01,2.065600013732910156e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.865531730651855469e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.515719473361968994e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.515719473361968994e-01,9.734159111976623535e-01,2.062599945068359375e+01,1.484000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.747570419311523438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.636254370212554932e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.636254370212554932e-01,9.736213684082031250e-01,2.151199913024902344e+01,1.515999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.325558090209960938e+01,2.359161619096994400e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.263144195079803467e-01,9.634482860565185547e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.263144195079803467e-01,9.634482860565185547e-01,2.178199958801269531e+01,1.755999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.258202362060546875e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.283550739288330078e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.283550739288330078e-01,9.736213684082031250e-01,2.289399909973144531e+01,1.744000053405761719e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.114298057556152344e+01,2.359161619096994400e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.213226199150085449e-01,9.634482860565185547e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.213226199150085449e-01,9.634482860565185547e-01,2.250000000000000000e+01,1.729999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.869772720336914062e+01,2.729873731732368469e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.968122065067291260e-01,9.288147687911987305e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.968122065067291260e-01,9.288147687911987305e-01,2.302000045776367188e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.251794052124023438e+01,3.709317184984683990e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.056231737136840820e-01,9.592678546905517578e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.056231737136840820e-01,9.592678546905517578e-01,2.298399925231933594e+01,1.573999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.535332107543945312e+01,4.113410040736198425e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.860657274723052979e-01,9.130214452743530273e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.860657274723052979e-01,9.130214452743530273e-01,2.329000091552734375e+01,1.697999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.819061660766601562e+01,1.801770762540400028e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.109464645385742188e-01,9.664578437805175781e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.109464645385742188e-01,9.664578437805175781e-01,2.311199951171875000e+01,1.739999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.192453002929687500e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.175473213195800781e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.175473213195800781e-01,9.736213684082031250e-01,2.269599914550781250e+01,1.707999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.803879928588867188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.250184655189514160e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.250184655189514160e-01,9.736213684082031250e-01,2.249600028991699219e+01,1.610000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.164300346374511719e+01,1.031640684232115746e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.072831630706787109e-01,9.718301296234130859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.072831630706787109e-01,9.718301296234130859e-01,2.306599998474121094e+01,1.580000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.152111434936523438e+01,2.347132656723260880e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.114915788173675537e-01,9.636537432670593262e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.114915788173675537e-01,9.636537432670593262e-01,2.259600067138671875e+01,1.560000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.279257583618164062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.146173954010009766e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.146173954010009766e-01,9.736213684082031250e-01,2.235000038146972656e+01,1.422000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.172617721557617188e+01,8.724024519324302673e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.236598372459411621e-01,9.427472352981567383e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.236598372459411621e-01,9.427472352981567383e-01,2.248999977111816406e+01,1.515999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.209814071655273438e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.277809917926788330e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.277809917926788330e-01,9.732105135917663574e-01,2.237000083923339844e+01,1.626000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.509564208984375000e+02,2.603456191718578339e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.068551421165466309e-01,9.265758395195007324e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.068551421165466309e-01,9.265758395195007324e-01,2.291600036621093750e+01,1.731999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.079123497009277344e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.422603905200958252e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.422603905200958252e-01,9.734159111976623535e-01,2.199600028991699219e+01,1.369999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.540963745117187500e+01,2.462353324517607689e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.237854540348052979e-01,9.648278355598449707e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.237854540348052979e-01,9.648278355598449707e-01,2.201600074768066406e+01,1.514000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.043060607910156250e+02,1.726944698020815849e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.362182676792144775e-01,9.677754640579223633e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.362182676792144775e-01,9.677754640579223633e-01,2.154000091552734375e+01,1.288000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.926719284057617188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.444362282752990723e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.444362282752990723e-01,9.736213684082031250e-01,2.116200065612792969e+01,1.211999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.807762336730957031e+01,1.851432723924517632e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.471921384334564209e-01,9.657526612281799316e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.471921384334564209e-01,9.657526612281799316e-01,2.186400032043457031e+01,1.602000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.580360221862792969e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.605189621448516846e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.605189621448516846e-01,9.736213684082031250e-01,2.132200050354003906e+01,1.402000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,3.656308399513363838e-04,2.455734825134277344e+01,6.164244259707629681e-04,1.000000000000000000e+00,9.809807538986206055e-01,3.408997654914855957e-01,9.737685322761535645e-01,1.000000000000000000e+00,9.809807538986206055e-01,3.408997654914855957e-01,9.737685322761535645e-01,2.244599914550781250e+01,1.384000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.116421318054199219e+01,1.995002105832099915e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.248358070850372314e-01,9.350286722183227539e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.248358070850372314e-01,9.350286722183227539e-01,2.176600074768066406e+01,1.418000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.418407440185546875e+01,6.696579512208700180e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.185309767723083496e-01,9.727995991706848145e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.185309767723083496e-01,9.727995991706848145e-01,2.171599960327148438e+01,1.576000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.851077461242675781e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.421872258186340332e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.421872258186340332e-01,9.736213684082031250e-01,2.176399993896484375e+01,1.443999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,2.924690055847167969e+01,6.533579435199499130e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.399361670017242432e-01,9.731096029281616211e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.399361670017242432e-01,9.731096029281616211e-01,2.139999961853027344e+01,1.565999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.003811416625976562e+02,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.574299812316894531e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.574299812316894531e-01,9.736213684082031250e-01,2.166399955749511719e+01,1.468000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.014415740966796875e+01,6.293003098107874393e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.347639739513397217e-01,9.735204577445983887e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.347639739513397217e-01,9.735204577445983887e-01,2.172200012207031250e+01,1.356000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.739944458007812500e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.451787233352661133e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.451787233352661133e-01,9.736213684082031250e-01,2.188599967956542969e+01,1.550000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.275466156005859375e+01,1.002135220915079117e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.275093138217926025e-01,9.713729619979858398e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.275093138217926025e-01,9.713729619979858398e-01,2.245800018310546875e+01,1.492000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.175691223144531250e+01,2.026072237640619278e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.139112293720245361e-01,9.652363657951354980e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.139112293720245361e-01,9.652363657951354980e-01,2.277599906921386719e+01,1.493999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.572514724731445312e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.074579536914825439e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.074579536914825439e-01,9.732105135917663574e-01,2.242000007629394531e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.590195465087890625e+01,2.577669173479080200e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.002255260944366455e-01,9.274144172668457031e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.002255260944366455e-01,9.274144172668457031e-01,2.349399948120117188e+01,1.694000053405761719e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.652920150756835938e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.390911519527435303e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.390911519527435303e-01,9.736213684082031250e-01,2.223999977111816406e+01,1.572000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.198495864868164062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.328272700309753418e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.328272700309753418e-01,9.736213684082031250e-01,2.304999923706054688e+01,1.546000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.790341567993164062e+01,7.839608006179332733e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.885714173316955566e-01,9.561565518379211426e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.885714173316955566e-01,9.561565518379211426e-01,2.310799980163574219e+01,1.665999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.660166931152343750e+01,1.656896667554974556e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.190147578716278076e-01,9.676407575607299805e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.190147578716278076e-01,9.676407575607299805e-01,2.272200012207031250e+01,1.581999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.891843605041503906e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.267578482627868652e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.267578482627868652e-01,9.736213684082031250e-01,2.261400032043457031e+01,1.615999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.114722633361816406e+01,2.205166406929492950e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.135169446468353271e-01,9.331229925155639648e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.135169446468353271e-01,9.331229925155639648e-01,2.254400062561035156e+01,1.564000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.311460876464843750e+01,1.043669530190527439e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.351294398307800293e-01,9.716246724128723145e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.351294398307800293e-01,9.716246724128723145e-01,2.197200012207031250e+01,1.303999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.830307579040527344e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.604626953601837158e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.604626953601837158e-01,9.736213684082031250e-01,2.137999916076660156e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.825327873229980469e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.574867546558380127e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.574867546558380127e-01,9.736213684082031250e-01,2.015600013732910156e+01,1.281999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.745344734191894531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.508733808994293213e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.508733808994293213e-01,9.736213684082031250e-01,2.164399909973144531e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.101904487609863281e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.330773711204528809e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.330773711204528809e-01,9.736213684082031250e-01,2.121599960327148438e+01,1.526000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.487368583679199219e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.556571304798126221e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.556571304798126221e-01,9.736213684082031250e-01,2.116200065612792969e+01,1.560000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.633472824096679688e+01,1.817032694816589355e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.277801573276519775e-01,9.360766410827636719e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.277801573276519775e-01,9.360766410827636719e-01,2.199600028991699219e+01,1.705999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.426603698730468750e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.226883113384246826e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.226883113384246826e-01,9.732105135917663574e-01,2.178000068664550781e+01,1.556000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.042564582824707031e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.285906612873077393e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.285906612873077393e-01,9.736213684082031250e-01,2.167799949645996094e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.311841583251953125e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.203411400318145752e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.203411400318145752e-01,9.736213684082031250e-01,2.197999954223632812e+01,1.468000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.001435661315917969e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.455712795257568359e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.455712795257568359e-01,9.736213684082031250e-01,2.262400054931640625e+01,1.642000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.150729751586914062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.166193664073944092e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.166193664073944092e-01,9.736213684082031250e-01,2.285799980163574219e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.954759597778320312e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.361769914627075195e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.361769914627075195e-01,9.730050563812255859e-01,2.195000076293945312e+01,1.665999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.231270599365234375e+01,1.335836364887654781e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.066618144512176514e-01,9.692234396934509277e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.066618144512176514e-01,9.692234396934509277e-01,2.302199935913085938e+01,1.668000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.237089538574218750e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.122462630271911621e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.122462630271911621e-01,9.734159111976623535e-01,2.326000022888183594e+01,1.450000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.657218170166015625e+01,9.233240783214569092e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.513277828693389893e-01,8.305227160453796387e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.513277828693389893e-01,8.305227160453796387e-01,2.413599967956542969e+01,1.773999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.703154373168945312e+01,5.011427029967308044e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.715003192424774170e-01,8.996013998985290527e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.715003192424774170e-01,8.996013998985290527e-01,2.415800094604492188e+01,1.778000068664550781e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.065032958984375000e+01,7.705890573561191559e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.905624210834503174e-01,9.572860002517700195e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.905624210834503174e-01,9.572860002517700195e-01,2.402199935913085938e+01,1.557999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.471963882446289062e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.137288689613342285e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.137288689613342285e-01,9.730050563812255859e-01,2.316799926757812500e+01,1.364000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.166679954528808594e+01,9.221765212714672089e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.030654788017272949e-01,9.414800405502319336e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.030654788017272949e-01,9.414800405502319336e-01,2.238800048828125000e+01,1.507999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.161492156982421875e+01,2.215255750343203545e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.260502219200134277e-01,9.660372138023376465e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.260502219200134277e-01,9.660372138023376465e-01,2.145800018310546875e+01,1.326000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.332783889770507812e+01,1.121225301176309586e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.566859364509582520e-01,9.706885218620300293e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.566859364509582520e-01,9.706885218620300293e-01,2.113199996948242188e+01,1.300000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.382895088195800781e+01,1.733905519358813763e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.584758341312408447e-01,9.676376581192016602e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.584758341312408447e-01,9.676376581192016602e-01,2.016399955749511719e+01,1.628000068664550781e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.217517089843750000e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.016188383102416992e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.016188383102416992e-01,9.736213684082031250e-01,1.904599952697753906e+01,1.346000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.328961944580078125e+02,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.945471644401550293e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.945471644401550293e-01,9.736213684082031250e-01,1.862599945068359375e+01,1.357999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.959569740295410156e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.958173394203186035e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.958173394203186035e-01,9.736213684082031250e-01,1.918199920654296875e+01,1.565999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,7.017424011230468750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.012089073657989502e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.012089073657989502e-01,9.736213684082031250e-01,1.879199981689453125e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.257993530273437500e+03,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.098280668258666992e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.098280668258666992e-01,9.736213684082031250e-01,1.895999908447265625e+01,1.352000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.188255119323730469e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.077587425708770752e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.077587425708770752e-01,9.736213684082031250e-01,1.842799949645996094e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.813771057128906250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.691386878490447998e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.691386878490447998e-01,9.736213684082031250e-01,1.889200019836425781e+01,1.418000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.594683265686035156e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.656358718872070312e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.656358718872070312e-01,9.736213684082031250e-01,1.938599967956542969e+01,1.426000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.424917030334472656e+01,3.727604635059833527e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.463470339775085449e-01,9.556796550750732422e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.463470339775085449e-01,9.556796550750732422e-01,1.953599929809570312e+01,1.484000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.433089637756347656e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.636808693408966064e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.636808693408966064e-01,9.736213684082031250e-01,1.942399978637695312e+01,1.461999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.903574562072753906e+01,9.666606201790273190e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.758927285671234131e-01,9.716278314590454102e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.758927285671234131e-01,9.716278314590454102e-01,1.888400077819824219e+01,1.342000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.537748146057128906e+01,8.698379620909690857e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.442547917366027832e-01,9.416733384132385254e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.442547917366027832e-01,9.416733384132385254e-01,1.990800094604492188e+01,1.543999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.599035644531250000e+01,1.323807518929243088e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.484975993633270264e-01,9.694288969039916992e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.484975993633270264e-01,9.694288969039916992e-01,2.045000076293945312e+01,1.568000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.881017875671386719e+01,2.347132656723260880e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.341228961944580078e-01,9.636537432670593262e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.341228961944580078e-01,9.636537432670593262e-01,2.042200088500976562e+01,1.660000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.056683158874511719e+01,1.668925513513386250e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.399975895881652832e-01,9.674353599548339844e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.399975895881652832e-01,9.674353599548339844e-01,2.088400077819824219e+01,1.581999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.864506530761718750e+01,1.417681109160184860e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.361406922340393066e-01,9.704498052597045898e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.361406922340393066e-01,9.704498052597045898e-01,2.076600074768066406e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.713897514343261719e+01,3.792584873735904694e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.470241427421569824e-01,9.558819532394409180e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.470241427421569824e-01,9.558819532394409180e-01,2.077799987792968750e+01,1.447999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.153811073303222656e+01,9.907182538881897926e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.336485624313354492e-01,9.712169766426086426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.336485624313354492e-01,9.712169766426086426e-01,2.153400039672851562e+01,1.450000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.390912246704101562e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.454424738883972168e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.454424738883972168e-01,9.736213684082031250e-01,2.133600044250488281e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.110015487670898438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.284634053707122803e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.284634053707122803e-01,9.736213684082031250e-01,2.251199913024902344e+01,1.585999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.313030624389648438e+01,2.704279497265815735e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.033931851387023926e-01,9.614547491073608398e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.033931851387023926e-01,9.614547491073608398e-01,2.198999977111816406e+01,1.518000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.848935699462890625e+01,1.323807518929243088e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.196576833724975586e-01,9.694288969039916992e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.196576833724975586e-01,9.694288969039916992e-01,2.204999923706054688e+01,1.615999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.142389106750488281e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.324094116687774658e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.324094116687774658e-01,9.734159111976623535e-01,2.260799980163574219e+01,1.469999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.095122718811035156e+01,2.358126081526279449e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.938720285892486572e-01,9.366884231567382812e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.938720285892486572e-01,9.366884231567382812e-01,2.342799949645996094e+01,1.742000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.376315307617187500e+01,3.283679950982332230e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.132801949977874756e-01,9.602029919624328613e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.132801949977874756e-01,9.602029919624328613e-01,2.298999977111816406e+01,1.781999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.675146865844726562e+01,6.160636432468891144e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.949412167072296143e-01,9.517086148262023926e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.949412167072296143e-01,9.517086148262023926e-01,2.279800033569335938e+01,1.484000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.449139022827148438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.349273204803466797e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.349273204803466797e-01,9.736213684082031250e-01,2.231599998474121094e+01,1.585999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.212322616577148438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.159763216972351074e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.159763216972351074e-01,9.736213684082031250e-01,2.234600067138671875e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.682485198974609375e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.748629391193389893e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.748629391193389893e-01,9.736213684082031250e-01,2.210600090026855469e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.388949584960937500e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.428021371364593506e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.428021371364593506e-01,9.736213684082031250e-01,2.275000000000000000e+01,1.602000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.341049194335937500e+01,1.019611838273704052e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.261899054050445557e-01,9.720355868339538574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.261899054050445557e-01,9.720355868339538574e-01,2.187800025939941406e+01,1.322000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.516991424560546875e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.271640241146087646e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.271640241146087646e-01,9.736213684082031250e-01,2.232399940490722656e+01,1.550000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.352298355102539062e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.163375258445739746e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.163375258445739746e-01,9.732105135917663574e-01,2.315600013732910156e+01,1.485999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.531371688842773438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.284806311130523682e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.284806311130523682e-01,9.736213684082031250e-01,2.263999938964843750e+01,1.572000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.392790985107421875e+01,6.865048315376043320e-03,1.000000000000000000e+00,9.788492321968078613e-01,3.135176599025726318e-01,9.475978612899780273e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.135176599025726318e-01,9.475978612899780273e-01,2.274600028991699219e+01,1.639999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.152551460266113281e+01,1.347865094430744648e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.254642486572265625e-01,9.690179824829101562e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.254642486572265625e-01,9.690179824829101562e-01,2.283600044250488281e+01,1.581999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.785945892333984375e+01,2.704279497265815735e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.079928457736968994e-01,9.614547491073608398e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.079928457736968994e-01,9.614547491073608398e-01,2.321999931335449219e+01,1.702000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.394973754882812500e+01,1.892355154268443584e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.150903284549713135e-01,9.663658142089843750e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.150903284549713135e-01,9.663658142089843750e-01,2.341600036621093750e+01,1.443999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.180838203430175781e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.170098662376403809e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.170098662376403809e-01,9.736213684082031250e-01,2.294400024414062500e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.461446380615234375e+01,1.347865094430744648e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.139503598213195801e-01,9.690179824829101562e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.139503598213195801e-01,9.690179824829101562e-01,2.341399955749511719e+01,1.552000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.512239837646484375e+01,7.070643361657857895e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.982572317123413086e-01,9.539273381233215332e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.982572317123413086e-01,9.539273381233215332e-01,2.303000068664550781e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.177323722839355469e+01,1.137139042839407921e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.257801234722137451e-01,9.701505899429321289e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.257801234722137451e-01,9.701505899429321289e-01,2.265600013732910156e+01,1.461999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.308013916015625000e+01,5.431665573269128799e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.164626955986022949e-01,9.533798694610595703e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.164626955986022949e-01,9.533798694610595703e-01,2.189800071716308594e+01,1.695999908447265625e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.980170822143554688e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.474661409854888916e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.474661409854888916e-01,9.736213684082031250e-01,2.148999977111816406e+01,1.460000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.987846374511718750e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.325868248939514160e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.325868248939514160e-01,9.734159111976623535e-01,2.140600013732910156e+01,1.522000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.380340576171875000e+01,9.666606201790273190e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.263322412967681885e-01,9.716278314590454102e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.263322412967681885e-01,9.716278314590454102e-01,2.143600082397460938e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.655452537536621094e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.554265797138214111e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.554265797138214111e-01,9.736213684082031250e-01,2.073600006103515625e+01,1.507999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.850535392761230469e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.615583777427673340e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.615583777427673340e-01,9.736213684082031250e-01,2.018000030517578125e+01,1.443999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.719151687622070312e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.735327422618865967e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.735327422618865967e-01,9.736213684082031250e-01,2.044199943542480469e+01,1.338000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.666477775573730469e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.646689057350158691e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.646689057350158691e-01,9.736213684082031250e-01,2.119599914550781250e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.036054229736328125e+02,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.503139615058898926e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.503139615058898926e-01,9.736213684082031250e-01,2.084600067138671875e+01,1.507999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.969235801696777344e+01,1.656896667554974556e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.475875258445739746e-01,9.676407575607299805e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.475875258445739746e-01,9.676407575607299805e-01,2.085600090026855469e+01,1.564000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.949925422668457031e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.625357747077941895e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.625357747077941895e-01,9.736213684082031250e-01,2.050000000000000000e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.566363906860351562e+01,5.921709537506103516e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.000478446483612061e-01,8.951033949851989746e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.000478446483612061e-01,8.951033949851989746e-01,2.193600082397460938e+01,1.729999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.489804458618164062e+01,1.668925513513386250e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.148608207702636719e-01,9.674353599548339844e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.148608207702636719e-01,9.674353599548339844e-01,2.152199935913085938e+01,1.506000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.467953491210937500e+01,7.461242377758026123e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.885805964469909668e-01,8.625303506851196289e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.885805964469909668e-01,8.625303506851196289e-01,2.165600013732910156e+01,1.523999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.386896896362304688e+01,8.825640194118022919e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.987977266311645508e-01,9.461520910263061523e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.987977266311645508e-01,9.461520910263061523e-01,2.259199905395507812e+01,1.813999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.323405075073242188e+01,2.692250767722725868e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.342622816562652588e-01,9.616602063179016113e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.342622816562652588e-01,9.616602063179016113e-01,2.115399932861328125e+01,1.539999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.657826423645019531e+01,1.125110196880996227e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.409961462020874023e-01,9.703559875488281250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.409961462020874023e-01,9.703559875488281250e-01,2.054400062561035156e+01,1.593999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.976888465881347656e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.698143661022186279e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.698143661022186279e-01,9.736213684082031250e-01,2.116399955749511719e+01,1.552000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.715235900878906250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.539780676364898682e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.539780676364898682e-01,9.736213684082031250e-01,2.147599983215332031e+01,1.522000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.693646812438964844e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.444994688034057617e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.444994688034057617e-01,9.734159111976623535e-01,2.073399925231933594e+01,1.381999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.931470298767089844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.480934202671051025e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.480934202671051025e-01,9.736213684082031250e-01,2.011199951171875000e+01,1.476000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.781152915954589844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.539423346519470215e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.539423346519470215e-01,9.736213684082031250e-01,2.203599929809570312e+01,1.642000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.995268440246582031e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.332463800907135010e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.332463800907135010e-01,9.736213684082031250e-01,2.190200042724609375e+01,1.431999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.227911758422851562e+01,2.172493143007159233e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.074817359447479248e-01,9.641699790954589844e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.074817359447479248e-01,9.641699790954589844e-01,2.292399978637695312e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.360738372802734375e+01,7.397556677460670471e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.127951920032501221e-01,9.507601261138916016e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.127951920032501221e-01,9.507601261138916016e-01,2.212999916076660156e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.499258422851562500e+01,1.364729832857847214e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.186660706996917725e-01,9.700420498847961426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.186660706996917725e-01,9.700420498847961426e-01,2.248200035095214844e+01,1.402000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.130464363098144531e+01,7.920210482552647591e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.275720477104187012e-01,9.721440672874450684e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.275720477104187012e-01,9.721440672874450684e-01,2.204599952697753906e+01,1.361999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.226810073852539062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.695726096630096436e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.695726096630096436e-01,9.736213684082031250e-01,2.174200057983398438e+01,1.665999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.022088623046875000e+01,2.716308459639549255e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.292454481124877930e-01,9.612493515014648438e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.292454481124877930e-01,9.612493515014648438e-01,2.195400047302246094e+01,1.422000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.014517593383789062e+02,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.402339518070220947e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.402339518070220947e-01,9.736213684082031250e-01,2.224399948120117188e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.834200477600097656e+01,1.656896667554974556e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.290926516056060791e-01,9.676407575607299805e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.290926516056060791e-01,9.676407575607299805e-01,2.262000083923339844e+01,1.503999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.907899093627929688e+01,9.786895243450999260e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.316721022129058838e-01,9.714223742485046387e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.316721022129058838e-01,9.714223742485046387e-01,2.184000015258789062e+01,1.397999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.910289573669433594e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.423901200294494629e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.423901200294494629e-01,9.736213684082031250e-01,2.192000007629394531e+01,1.497999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.284928894042968750e+01,4.012142773717641830e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.115252256393432617e-01,9.585161805152893066e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.115252256393432617e-01,9.585161805152893066e-01,2.191600036621093750e+01,1.695999908447265625e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.476177978515625000e+01,2.939173718914389610e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.129819333553314209e-01,9.618350267410278320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.129819333553314209e-01,9.618350267410278320e-01,2.261199951171875000e+01,1.557999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.315219497680664062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.527765274047851562e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.527765274047851562e-01,9.736213684082031250e-01,2.202199935913085938e+01,1.702000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.986253547668457031e+01,1.376758678816258907e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.230631351470947266e-01,9.698365926742553711e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.230631351470947266e-01,9.698365926742553711e-01,2.226199913024902344e+01,1.577999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.223104095458984375e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.302195370197296143e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.302195370197296143e-01,9.730050563812255859e-01,2.256800079345703125e+01,1.907999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.895104408264160156e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.515053093433380127e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.515053093433380127e-01,9.736213684082031250e-01,2.171800041198730469e+01,1.686000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.051906013488769531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.416321277618408203e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.416321277618408203e-01,9.736213684082031250e-01,2.154199981689453125e+01,1.346000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.211423492431640625e+01,3.361684037372469902e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.207761943340301514e-01,9.570909142494201660e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.207761943340301514e-01,9.570909142494201660e-01,2.297200012207031250e+01,1.605999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.266361999511718750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.214382231235504150e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.214382231235504150e-01,9.736213684082031250e-01,2.282600021362304688e+01,1.721999931335449219e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.329474258422851562e+01,4.161306656897068024e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.110169172286987305e-01,9.570564627647399902e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.110169172286987305e-01,9.570564627647399902e-01,2.247400093078613281e+01,1.613999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.238962936401367188e+01,2.536315936595201492e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.195900917053222656e-01,9.644545912742614746e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.195900917053222656e-01,9.644545912742614746e-01,2.288199996948242188e+01,1.710000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.559242630004882812e+01,2.225444419309496880e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.018840551376342773e-01,9.645777344703674316e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.018840551376342773e-01,9.645777344703674316e-01,2.331800079345703125e+01,1.715999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.828765487670898438e+01,1.378753501921892166e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.978439033031463623e-01,9.462158083915710449e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.978439033031463623e-01,9.462158083915710449e-01,2.294799995422363281e+01,1.831999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.390339279174804688e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.205125033855438232e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.205125033855438232e-01,9.736213684082031250e-01,2.286199951171875000e+01,1.679999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.453904724121093750e+01,2.867776202037930489e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.005412817001342773e-01,9.601185321807861328e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.005412817001342773e-01,9.601185321807861328e-01,2.314399909973144531e+01,1.886000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.301644515991210938e+01,2.066994784399867058e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.161149919033050537e-01,9.658495783805847168e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.161149919033050537e-01,9.658495783805847168e-01,2.304999923706054688e+01,1.757999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.993143081665039062e+01,3.061426337808370590e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.257904350757598877e-01,9.592558145523071289e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.257904350757598877e-01,9.592558145523071289e-01,2.229400062561035156e+01,1.500000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.385649108886718750e+01,1.323807518929243088e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.139553368091583252e-01,9.694288969039916992e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.139553368091583252e-01,9.694288969039916992e-01,2.275799942016601562e+01,1.564000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.040879821777343750e+01,2.692250767722725868e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.174215257167816162e-01,9.616602063179016113e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.174215257167816162e-01,9.616602063179016113e-01,2.248200035095214844e+01,1.636000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.271668243408203125e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.525104820728302002e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.525104820728302002e-01,9.737259149551391602e-01,2.213199996948242188e+01,1.342000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.170927238464355469e+01,3.292960580438375473e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.241643309593200684e-01,9.644418954849243164e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.241643309593200684e-01,9.644418954849243164e-01,2.225000000000000000e+01,1.636000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.000161552429199219e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.536606132984161377e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.536606132984161377e-01,9.736213684082031250e-01,2.151600074768066406e+01,1.453999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,6.593824768066406250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.563082814216613770e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.563082814216613770e-01,9.736213684082031250e-01,2.233799934387207031e+01,1.564000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.492798614501953125e+01,3.943599760532379150e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.086405098438262939e-01,9.600095748901367188e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.086405098438262939e-01,9.600095748901367188e-01,2.325200080871582031e+01,1.763999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.308463287353515625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.195540606975555420e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.195540606975555420e-01,9.736213684082031250e-01,2.287199974060058594e+01,1.604000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.243560791015625000e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.356374204158782959e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.356374204158782959e-01,9.736213684082031250e-01,2.233399963378906250e+01,1.481999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.348064422607421875e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.098102807998657227e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.098102807998657227e-01,9.734159111976623535e-01,2.331399917602539062e+01,1.763999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.959397888183593750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.150028288364410400e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.150028288364410400e-01,9.736213684082031250e-01,2.346400070190429688e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.311184692382812500e+01,7.199406158179044724e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.023760616779327393e-01,9.456409811973571777e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.023760616779327393e-01,9.456409811973571777e-01,2.337999916076660156e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.651057052612304688e+01,1.730384118854999542e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.943854928016662598e-01,9.406124949455261230e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.943854928016662598e-01,9.406124949455261230e-01,2.361400032043457031e+01,1.527999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.574206542968750000e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.131559193134307861e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.131559193134307861e-01,9.736213684082031250e-01,2.390800094604492188e+01,1.604000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.178632736206054688e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.457536697387695312e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.457536697387695312e-01,9.736213684082031250e-01,2.227199935913085938e+01,1.568000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.183800315856933594e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.411993384361267090e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.411993384361267090e-01,9.736213684082031250e-01,2.288599967956542969e+01,1.652000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.885019683837890625e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.004744350910186768e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.004744350910186768e-01,9.734159111976623535e-01,2.264399909973144531e+01,1.580000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.453130340576171875e+01,2.079023513942956924e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.066690564155578613e-01,9.656441211700439453e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.066690564155578613e-01,9.656441211700439453e-01,2.334799957275390625e+01,1.593999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.445149230957031250e+01,4.780304152518510818e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.976216077804565430e-01,9.562498927116394043e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.976216077804565430e-01,9.562498927116394043e-01,2.267399978637695312e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.043944931030273438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.476152122020721436e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.476152122020721436e-01,9.736213684082031250e-01,2.231200027465820312e+01,1.585999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.334209823608398438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.210976421833038330e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.210976421833038330e-01,9.736213684082031250e-01,2.286599922180175781e+01,1.518000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.836612701416015625e+01,5.553807597607374191e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.051287829875946045e-01,9.488769173622131348e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.051287829875946045e-01,9.488769173622131348e-01,2.368799972534179688e+01,1.747999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.261105957031250000e+02,2.079023513942956924e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.056713342666625977e-01,9.656441211700439453e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.056713342666625977e-01,9.656441211700439453e-01,2.327400016784667969e+01,1.762000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.384590911865234375e+01,2.461937628686428070e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.891612648963928223e-01,9.295593500137329102e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.891612648963928223e-01,9.295593500137329102e-01,2.312000083923339844e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.431491851806640625e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.325954377651214600e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.325954377651214600e-01,9.734159111976623535e-01,2.222400093078613281e+01,1.438000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.609990310668945312e+01,9.786895243450999260e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.089629113674163818e-01,9.714223742485046387e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.089629113674163818e-01,9.714223742485046387e-01,2.253400039672851562e+01,1.645999908447265625e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.054522514343261719e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.335833549499511719e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.335833549499511719e-01,9.736213684082031250e-01,2.248999977111816406e+01,1.553999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.096010208129882812e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.284168541431427002e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.284168541431427002e-01,9.736213684082031250e-01,2.243799972534179688e+01,1.465999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.182567596435546875e+01,2.184926066547632217e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.159659206867218018e-01,9.664595723152160645e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.159659206867218018e-01,9.664595723152160645e-01,2.225399971008300781e+01,1.419999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.842123794555664062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.563469648361206055e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.563469648361206055e-01,9.736213684082031250e-01,2.111000061035156250e+01,1.481999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.467937088012695312e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.279574215412139893e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.279574215412139893e-01,9.734159111976623535e-01,2.213599967956542969e+01,1.500000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.096574783325195312e+01,3.061426337808370590e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.303312957286834717e-01,9.592558145523071289e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.303312957286834717e-01,9.592558145523071289e-01,2.228199958801269531e+01,1.715999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.516894531250000000e+01,1.335836364887654781e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.127284646034240723e-01,9.692234396934509277e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.127284646034240723e-01,9.692234396934509277e-01,2.198800086975097656e+01,1.637999916076660156e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.477623367309570312e+01,1.596680143848061562e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.125928342342376709e-01,9.670322537422180176e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.125928342342376709e-01,9.670322537422180176e-01,2.266799926757812500e+01,1.647999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.062684059143066406e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.447378277778625488e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.447378277778625488e-01,9.736213684082031250e-01,2.196800041198730469e+01,1.631999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.802898788452148438e+01,2.188151888549327850e-02,1.000000000000000000e+00,9.788492321968078613e-01,2.851538956165313721e-01,9.347953796386718750e-01,1.000000000000000000e+00,9.788492321968078613e-01,2.851538956165313721e-01,9.347953796386718750e-01,2.305200004577636719e+01,1.629999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.631251907348632812e+01,2.852769382297992706e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.923585772514343262e-01,9.259743690490722656e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.923585772514343262e-01,9.259743690490722656e-01,2.244400024414062500e+01,1.507999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.405192947387695312e+01,6.293003098107874393e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.187086880207061768e-01,9.735204577445983887e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.187086880207061768e-01,9.735204577445983887e-01,2.196999931335449219e+01,1.629999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.843846130371093750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.484349548816680908e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.484349548816680908e-01,9.736213684082031250e-01,2.174600028991699219e+01,1.639999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.616248130798339844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.627173900604248047e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.627173900604248047e-01,9.736213684082031250e-01,2.116799926757812500e+01,1.493999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.062310218811035156e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.384456932544708252e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.384456932544708252e-01,9.736213684082031250e-01,2.111599922180175781e+01,1.406000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.931484985351562500e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.419086337089538574e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.419086337089538574e-01,9.736213684082031250e-01,2.163400077819824219e+01,1.684000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.625700187683105469e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.384611308574676514e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.384611308574676514e-01,9.736213684082031250e-01,2.200200080871582031e+01,1.469999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.255927658081054688e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.430715501308441162e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.430715501308441162e-01,9.736213684082031250e-01,2.165800094604492188e+01,1.534000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.752052879333496094e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.434762954711914062e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.434762954711914062e-01,9.736213684082031250e-01,2.247800064086914062e+01,1.543999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.123384475708007812e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.180676400661468506e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.180676400661468506e-01,9.736213684082031250e-01,2.235199928283691406e+01,1.535999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.294521331787109375e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.199678063392639160e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.199678063392639160e-01,9.736213684082031250e-01,2.352400016784667969e+01,1.473999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.753097152709960938e+01,4.575948044657707214e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.746641039848327637e-01,8.941598534584045410e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.746641039848327637e-01,8.941598534584045410e-01,2.368000030517578125e+01,1.621999931335449219e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.698285293579101562e+01,1.636821776628494263e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.905370593070983887e-01,9.672176837921142578e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.905370593070983887e-01,9.672176837921142578e-01,2.361000061035156250e+01,1.745999908447265625e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.933977127075195312e+01,1.623195596039295197e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.933334112167358398e-01,9.299747943878173828e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.933334112167358398e-01,9.299747943878173828e-01,2.363199996948242188e+01,1.694000053405761719e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.457263946533203125e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.079051077365875244e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.079051077365875244e-01,9.736213684082031250e-01,2.361400032043457031e+01,1.645999908447265625e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.239269638061523438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.247267603874206543e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.247267603874206543e-01,9.736213684082031250e-01,2.273600006103515625e+01,1.492000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.182571029663085938e+01,5.045467056334018707e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.016755580902099609e-01,9.515427350997924805e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.016755580902099609e-01,9.515427350997924805e-01,2.335600090026855469e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.835467910766601562e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.150388002395629883e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.150388002395629883e-01,9.734159111976623535e-01,2.270599937438964844e+01,1.450000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.478367996215820312e+01,4.985824227333068848e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.015377223491668701e-01,9.502847790718078613e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.015377223491668701e-01,9.502847790718078613e-01,2.318199920654296875e+01,1.618000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.507952499389648438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.268116414546966553e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.268116414546966553e-01,9.736213684082031250e-01,2.254800033569335938e+01,1.631999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.724396514892578125e+01,2.769259503111243248e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.073591887950897217e-01,9.616570472717285156e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.073591887950897217e-01,9.616570472717285156e-01,2.252199935913085938e+01,1.593999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.158105850219726562e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.400423228740692139e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.400423228740692139e-01,9.732105135917663574e-01,2.197999954223632812e+01,1.577999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.111070632934570312e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.126745820045471191e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.126745820045471191e-01,9.734159111976623535e-01,2.250799942016601562e+01,1.476000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.377737045288085938e+01,1.815346302464604378e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.200109004974365234e-01,9.663689732551574707e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.200109004974365234e-01,9.663689732551574707e-01,2.273600006103515625e+01,1.618000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.421030807495117188e+01,2.002014778554439545e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.101641237735748291e-01,9.656472802162170410e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.101641237735748291e-01,9.656472802162170410e-01,2.249200057983398438e+01,1.612000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.948833274841308594e+01,6.683784537017345428e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.139306604862213135e-01,9.480074644088745117e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.139306604862213135e-01,9.480074644088745117e-01,2.138199996948242188e+01,1.452000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.131084632873535156e+01,3.061426337808370590e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.208880722522735596e-01,9.592558145523071289e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.208880722522735596e-01,9.592558145523071289e-01,2.214200019836425781e+01,1.581999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.853315544128417969e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.374231755733489990e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.374231755733489990e-01,9.734159111976623535e-01,2.191799926757812500e+01,1.634000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.352967834472656250e+01,1.125110196880996227e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.330101966857910156e-01,9.703559875488281250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.330101966857910156e-01,9.703559875488281250e-01,2.265999984741210938e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.758446502685546875e+01,2.066994784399867058e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.120619654655456543e-01,9.658495783805847168e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.120619654655456543e-01,9.658495783805847168e-01,2.233200073242187500e+01,1.612000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.928156471252441406e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.180509209632873535e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.180509209632873535e-01,9.736213684082031250e-01,2.205800056457519531e+01,1.388000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.916744613647460938e+01,8.478258736431598663e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.052754104137420654e-01,9.452500939369201660e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.052754104137420654e-01,9.452500939369201660e-01,2.219199943542480469e+01,1.812000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.221553802490234375e+01,2.014043508097529411e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.168683052062988281e-01,9.654418230056762695e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.168683052062988281e-01,9.654418230056762695e-01,2.230200004577636719e+01,1.581999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.486866760253906250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.348454236984252930e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.348454236984252930e-01,9.736213684082031250e-01,2.239200019836425781e+01,1.477999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.084129714965820312e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.319529294967651367e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.319529294967651367e-01,9.736213684082031250e-01,2.120199966430664062e+01,1.439999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.354865646362304688e+01,1.940447837114334106e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.094791769981384277e-01,9.327936768531799316e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.094791769981384277e-01,9.327936768531799316e-01,2.192000007629394531e+01,1.626000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.026106834411621094e+01,2.014043508097529411e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.201099038124084473e-01,9.654418230056762695e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.201099038124084473e-01,9.654418230056762695e-01,2.223800086975097656e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.126061248779296875e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.312417566776275635e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.312417566776275635e-01,9.736213684082031250e-01,2.133799934387207031e+01,1.531999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.150986289978027344e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.278427124023437500e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.278427124023437500e-01,9.736213684082031250e-01,2.252799987792968750e+01,1.423999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.232902069091796875e+02,2.721103373914957047e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.199158310890197754e-01,9.612738490104675293e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.199158310890197754e-01,9.612738490104675293e-01,2.265399932861328125e+01,1.744000053405761719e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.533155441284179688e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.375622034072875977e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.375622034072875977e-01,9.736213684082031250e-01,2.238400077819824219e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.373936080932617188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.191057443618774414e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.191057443618774414e-01,9.736213684082031250e-01,2.238800048828125000e+01,1.547999954223632812e+01,-1.000000000000000000e+00 diff --git a/demo-web/data/dsr_Nguyen-5_0_all_r.npy b/demo-web/data/dsr_Nguyen-5_0_all_r.npy deleted file mode 100644 index b5202bc1..00000000 Binary files a/demo-web/data/dsr_Nguyen-5_0_all_r.npy and /dev/null differ diff --git a/demo-web/data/traversals.txt b/demo-web/data/traversals.txt deleted file mode 100644 index 1dc082c1..00000000 --- a/demo-web/data/traversals.txt +++ /dev/null @@ -1,2000 +0,0 @@ -sub,x1,add,cos,add,exp,mul,x1,mul,add,x1,log,mul,mul,div,x1,add,log,div,div,exp,x1,x1,x1,x1,x1,x1,x1,x1,x1 -sub,cos,sub,exp,div,x1,mul,div,sub,x1,x1,exp,x1,sub,div,div,div,add,div,mul,x1,x1,x1,x1,x1,x1,x1,x1,x1,x1 -sub,cos,sub,exp,div,x1,mul,div,sub,x1,x1,exp,x1,sub,div,div,div,add,div,mul,x1,x1,x1,x1,x1,x1,x1,x1,x1,x1 -sub,sub,x1,sub,add,mul,sub,div,cos,exp,div,mul,exp,x1,mul,sub,log,mul,x1,log,x1,x1,x1,x1,x1,x1,x1,x1,x1,x1 -cos,exp,exp,div,exp,x1,exp,add,exp,sub,exp,exp,add,exp,exp,div,exp,exp,sub,add,sub,log,x1,x1,x1,x1,x1,x1,x1,x1 -cos,exp,exp,div,exp,x1,exp,add,exp,sub,exp,exp,add,exp,exp,div,exp,exp,sub,add,sub,log,x1,x1,x1,x1,x1,x1,x1,x1 -cos,exp,exp,div,exp,x1,exp,add,exp,sub,exp,exp,add,exp,exp,div,exp,exp,sub,add,sub,log,x1,x1,x1,x1,x1,x1,x1,x1 -cos,exp,exp,div,exp,x1,exp,add,exp,sub,exp,exp,add,exp,exp,div,exp,exp,sub,add,sub,log,x1,x1,x1,x1,x1,x1,x1,x1 -cos,exp,exp,div,exp,x1,exp,add,exp,sub,exp,exp,add,exp,exp,div,exp,exp,sub,add,sub,log,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -sub,mul,sin,x1,mul,sin,x1,cos,sub,x1,exp,x1,cos,x1 -sub,mul,sin,x1,mul,sin,x1,cos,sub,x1,exp,x1,cos,x1 -sub,mul,sin,x1,mul,sin,x1,cos,sub,x1,exp,x1,cos,x1 -sub,mul,sin,x1,mul,sin,x1,cos,sub,x1,exp,x1,cos,x1 -sub,mul,sin,x1,mul,sin,x1,cos,sub,x1,exp,x1,cos,x1 -sub,mul,sin,x1,mul,sin,x1,cos,sub,x1,exp,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 \ No newline at end of file diff --git a/demo-web/plot.py b/demo-web/plot.py deleted file mode 100755 index 169d1a8c..00000000 --- a/demo-web/plot.py +++ /dev/null @@ -1,167 +0,0 @@ -import json - -import numpy as np -import pandas as pd -import plotly -import plotly.graph_objs as go -from scipy.stats import gaussian_kde - -from dsr.program import Program -from data import demo_utils - -RESOLUTION = 200 # Number of points in KDE estimate - -class MainPlot: - def __init__(self): - self.data_points = None - self.data_range = [-1,1,0.5] - - self.done = False - self.step = 0 - self.step_before = 0 - self.best_expr = None - self.expr_info = {'expression': None, 'fitness': None} - # self.diagnostics = [] - - # Load offline data files - with open("./data/traversals.txt", "r") as f: - self.traversal_text = f.readlines() - self.all_rewards = np.load("./data/dsr_Nguyen-5_0_all_r.npy") - pd_all_tinfo = pd.read_csv("./data/dsr_Nguyen-5_0.csv") - self.all_training_info = pd_all_tinfo.to_numpy() - - def scatter_data_points(self, data): - self.data_points = data - demo_utils.configure_program("./data/demo.json") - - data_x = Program.X_train.ravel() - data_y = Program.y_train - - x_min = np.amin(data_x) - x_max = np.amax(data_x) - self.data_range = [x_min, x_max, x_max-x_min] - - scatter_data = [ - go.Scatter( - x=data_x, - y=data_y, - mode='markers', - marker=dict( - # color='#8c6bb1', - color='#1a76b3', - size=12, - line=dict(width=1.2, - color='#efedf5') - # color='#efedf5') - ) - ) - ] - - graphJSON = json.dumps(scatter_data, cls=plotly.utils.PlotlyJSONEncoder) - - return graphJSON - - def line_expression(self, expr_program): - # Plot data points - N = 1000 - x = np.linspace(self.data_range[0]-self.data_range[2]*0.1, self.data_range[1]+self.data_range[2]*0.1, N) - y = expr_program.execute(x.reshape(N, -1)) - self.expr_info['expression'] = repr(expr_program.sympy_expr) - self.expr_info['fitness'] = expr_program.r - - line = [ - go.Scatter( - x=x, - y=y, - mode='lines', - name=self.expr_info['expression'], - line=dict(color='#3f007d', width=2.5) - ) - ] - - graphJSON = json.dumps(line, cls=plotly.utils.PlotlyJSONEncoder) - - return graphJSON - - def data_subplot(self): - rng = range(self.step_before, self.step) - best = self.all_training_info[rng,4] # base_r_best - top = self.all_training_info[rng,7] # r_best - mean = self.all_training_info[rng,6] # r_best - reward = self.all_rewards[self.step] # Shape: (batch_size,) - complexity = self.all_training_info[rng,12] # l_avg_full - - # Compute KDE for reward distribution - kernel = gaussian_kde(reward, bw_method=0.25) - reward_dist_x = np.linspace(0, 1, RESOLUTION) - reward_dist_y = kernel(reward_dist_x) - - reward_dist_line = [ - go.Scatter( - x=reward_dist_x, - y=reward_dist_y, - mode='lines', - name=self.step, - line=dict(color='#000', width=2) - ) - ] - graphJSON_reward_dist_line = json.dumps(reward_dist_line, cls=plotly.utils.PlotlyJSONEncoder) - - return { - 'subplot1': { - 'data': { - 'x': [list(rng), list(rng), list(rng)], - 'y': [best.tolist(), top.tolist(), mean.tolist()] - } - }, - 'subplot2': [{ - 'reward': { - 'data': { - 'x': [reward_dist_x.tolist()], - 'y': [reward_dist_y.tolist()], - 'line': graphJSON_reward_dist_line - } - } - }], - 'subplot3': { - 'data': { - 'x': [list(rng)], - 'y': [complexity.tolist()] - } - } - } - - def plot_main_lines(self): - try: - if self.best_expr != self.traversal_text[self.step]: - self.best_expr = self.traversal_text[self.step] - best_p = demo_utils.make_program(self.traversal_text, self.step) - - response = { - 'warn': False, - 'done': self.done, - 'plot': self.line_expression(best_p), - 'info': self.expr_info, - 'update': True - } - - else: - response = { - 'warn': False, - 'done': self.done, - 'plot': None, - 'update': False - } - except: - self.done = True - response = { - 'warn': False, - 'done': self.done, - 'plot': None, - 'update': False - } - - response['subplot'] = self.data_subplot() - self.step_before = self.step - - return json.dumps(response) \ No newline at end of file diff --git a/demo-web/requirements.txt b/demo-web/requirements.txt deleted file mode 100644 index 04440557..00000000 --- a/demo-web/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -Flask -plotly \ No newline at end of file diff --git a/demo-web/static/css/bootstrap-theme.min.css b/demo-web/static/css/bootstrap-theme.min.css deleted file mode 100644 index ac8dd550..00000000 --- a/demo-web/static/css/bootstrap-theme.min.css +++ /dev/null @@ -1,5 +0,0 @@ -/*! - * Bootstrap v3.3.2 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default:disabled,.btn-default[disabled]{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary:disabled,.btn-primary[disabled]{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success:disabled,.btn-success[disabled]{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info:disabled,.btn-info[disabled]{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning:disabled,.btn-warning[disabled]{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger:disabled,.btn-danger[disabled]{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} \ No newline at end of file diff --git a/demo-web/static/css/bootstrap.css.map b/demo-web/static/css/bootstrap.css.map deleted file mode 100644 index ff579ff5..00000000 --- a/demo-web/static/css/bootstrap.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["bootstrap.css","less/normalize.less","less/print.less","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"AAAA,6DAA4D;ACQ5D;EACE,yBAAA;EACA,4BAAA;EACA,gCAAA;EDND;ACaD;EACE,WAAA;EDXD;ACwBD;;;;;;;;;;;;;EAaE,gBAAA;EDtBD;AC8BD;;;;EAIE,uBAAA;EACA,0BAAA;ED5BD;ACoCD;EACE,eAAA;EACA,WAAA;EDlCD;AC0CD;;EAEE,eAAA;EDxCD;ACkDD;EACE,+BAAA;EDhDD;ACuDD;;EAEE,YAAA;EDrDD;AC+DD;EACE,2BAAA;ED7DD;ACoED;;EAEE,mBAAA;EDlED;ACyED;EACE,oBAAA;EDvED;AC+ED;EACE,gBAAA;EACA,kBAAA;ED7ED;ACoFD;EACE,kBAAA;EACA,aAAA;EDlFD;ACyFD;EACE,gBAAA;EDvFD;AC8FD;;EAEE,gBAAA;EACA,gBAAA;EACA,oBAAA;EACA,0BAAA;ED5FD;AC+FD;EACE,aAAA;ED7FD;ACgGD;EACE,iBAAA;ED9FD;ACwGD;EACE,WAAA;EDtGD;AC6GD;EACE,kBAAA;ED3GD;ACqHD;EACE,kBAAA;EDnHD;AC0HD;EACE,8BAAA;EACA,iCAAA;UAAA,yBAAA;EACA,WAAA;EDxHD;AC+HD;EACE,gBAAA;ED7HD;ACoID;;;;EAIE,mCAAA;EACA,gBAAA;EDlID;ACoJD;;;;;EAKE,gBAAA;EACA,eAAA;EACA,WAAA;EDlJD;ACyJD;EACE,mBAAA;EDvJD;ACiKD;;EAEE,sBAAA;ED/JD;AC0KD;;;;EAIE,4BAAA;EACA,iBAAA;EDxKD;AC+KD;;EAEE,iBAAA;ED7KD;ACoLD;;EAEE,WAAA;EACA,YAAA;EDlLD;AC0LD;EACE,qBAAA;EDxLD;ACmMD;;EAEE,gCAAA;KAAA,6BAAA;UAAA,wBAAA;EACA,YAAA;EDjMD;AC0MD;;EAEE,cAAA;EDxMD;ACiND;EACE,+BAAA;EACA,8BAAA;EACA,iCAAA;EACA,yBAAA;ED/MD;ACwND;;EAEE,0BAAA;EDtND;AC6ND;EACE,2BAAA;EACA,eAAA;EACA,gCAAA;ED3ND;ACmOD;EACE,WAAA;EACA,YAAA;EDjOD;ACwOD;EACE,gBAAA;EDtOD;AC8OD;EACE,mBAAA;ED5OD;ACsPD;EACE,2BAAA;EACA,mBAAA;EDpPD;ACuPD;;EAEE,YAAA;EDrPD;AACD,sFAAqF;AE1ErF;EAnGI;;;IAGI,oCAAA;IACA,wBAAA;IACA,qCAAA;YAAA,6BAAA;IACA,8BAAA;IFgLL;EE7KC;;IAEI,4BAAA;IF+KL;EE5KC;IACI,8BAAA;IF8KL;EE3KC;IACI,+BAAA;IF6KL;EExKC;;IAEI,aAAA;IF0KL;EEvKC;;IAEI,wBAAA;IACA,0BAAA;IFyKL;EEtKC;IACI,6BAAA;IFwKL;EErKC;;IAEI,0BAAA;IFuKL;EEpKC;IACI,4BAAA;IFsKL;EEnKC;;;IAGI,YAAA;IACA,WAAA;IFqKL;EElKC;;IAEI,yBAAA;IFoKL;EE7JC;IACI,6BAAA;IF+JL;EE3JC;IACI,eAAA;IF6JL;EE3JC;;IAGQ,mCAAA;IF4JT;EEzJC;IACI,wBAAA;IF2JL;EExJC;IACI,sCAAA;IF0JL;EE3JC;;IAKQ,mCAAA;IF0JT;EEvJC;;IAGQ,mCAAA;IFwJT;EACF;AGpPD;EACE,qCAAA;EACA,uDAAA;EACA,iYAAA;EHsPD;AG9OD;EACE,oBAAA;EACA,UAAA;EACA,uBAAA;EACA,qCAAA;EACA,oBAAA;EACA,qBAAA;EACA,gBAAA;EACA,qCAAA;EACA,oCAAA;EHgPD;AG5OmC;EAAW,gBAAA;EH+O9C;AG9OmC;EAAW,gBAAA;EHiP9C;AG/OmC;;EAAW,kBAAA;EHmP9C;AGlPmC;EAAW,kBAAA;EHqP9C;AGpPmC;EAAW,kBAAA;EHuP9C;AGtPmC;EAAW,kBAAA;EHyP9C;AGxPmC;EAAW,kBAAA;EH2P9C;AG1PmC;EAAW,kBAAA;EH6P9C;AG5PmC;EAAW,kBAAA;EH+P9C;AG9PmC;EAAW,kBAAA;EHiQ9C;AGhQmC;EAAW,kBAAA;EHmQ9C;AGlQmC;EAAW,kBAAA;EHqQ9C;AGpQmC;EAAW,kBAAA;EHuQ9C;AGtQmC;EAAW,kBAAA;EHyQ9C;AGxQmC;EAAW,kBAAA;EH2Q9C;AG1QmC;EAAW,kBAAA;EH6Q9C;AG5QmC;EAAW,kBAAA;EH+Q9C;AG9QmC;EAAW,kBAAA;EHiR9C;AGhRmC;EAAW,kBAAA;EHmR9C;AGlRmC;EAAW,kBAAA;EHqR9C;AGpRmC;EAAW,kBAAA;EHuR9C;AGtRmC;EAAW,kBAAA;EHyR9C;AGxRmC;EAAW,kBAAA;EH2R9C;AG1RmC;EAAW,kBAAA;EH6R9C;AG5RmC;EAAW,kBAAA;EH+R9C;AG9RmC;EAAW,kBAAA;EHiS9C;AGhSmC;EAAW,kBAAA;EHmS9C;AGlSmC;EAAW,kBAAA;EHqS9C;AGpSmC;EAAW,kBAAA;EHuS9C;AGtSmC;EAAW,kBAAA;EHyS9C;AGxSmC;EAAW,kBAAA;EH2S9C;AG1SmC;EAAW,kBAAA;EH6S9C;AG5SmC;EAAW,kBAAA;EH+S9C;AG9SmC;EAAW,kBAAA;EHiT9C;AGhTmC;EAAW,kBAAA;EHmT9C;AGlTmC;EAAW,kBAAA;EHqT9C;AGpTmC;EAAW,kBAAA;EHuT9C;AGtTmC;EAAW,kBAAA;EHyT9C;AGxTmC;EAAW,kBAAA;EH2T9C;AG1TmC;EAAW,kBAAA;EH6T9C;AG5TmC;EAAW,kBAAA;EH+T9C;AG9TmC;EAAW,kBAAA;EHiU9C;AGhUmC;EAAW,kBAAA;EHmU9C;AGlUmC;EAAW,kBAAA;EHqU9C;AGpUmC;EAAW,kBAAA;EHuU9C;AGtUmC;EAAW,kBAAA;EHyU9C;AGxUmC;EAAW,kBAAA;EH2U9C;AG1UmC;EAAW,kBAAA;EH6U9C;AG5UmC;EAAW,kBAAA;EH+U9C;AG9UmC;EAAW,kBAAA;EHiV9C;AGhVmC;EAAW,kBAAA;EHmV9C;AGlVmC;EAAW,kBAAA;EHqV9C;AGpVmC;EAAW,kBAAA;EHuV9C;AGtVmC;EAAW,kBAAA;EHyV9C;AGxVmC;EAAW,kBAAA;EH2V9C;AG1VmC;EAAW,kBAAA;EH6V9C;AG5VmC;EAAW,kBAAA;EH+V9C;AG9VmC;EAAW,kBAAA;EHiW9C;AGhWmC;EAAW,kBAAA;EHmW9C;AGlWmC;EAAW,kBAAA;EHqW9C;AGpWmC;EAAW,kBAAA;EHuW9C;AGtWmC;EAAW,kBAAA;EHyW9C;AGxWmC;EAAW,kBAAA;EH2W9C;AG1WmC;EAAW,kBAAA;EH6W9C;AG5WmC;EAAW,kBAAA;EH+W9C;AG9WmC;EAAW,kBAAA;EHiX9C;AGhXmC;EAAW,kBAAA;EHmX9C;AGlXmC;EAAW,kBAAA;EHqX9C;AGpXmC;EAAW,kBAAA;EHuX9C;AGtXmC;EAAW,kBAAA;EHyX9C;AGxXmC;EAAW,kBAAA;EH2X9C;AG1XmC;EAAW,kBAAA;EH6X9C;AG5XmC;EAAW,kBAAA;EH+X9C;AG9XmC;EAAW,kBAAA;EHiY9C;AGhYmC;EAAW,kBAAA;EHmY9C;AGlYmC;EAAW,kBAAA;EHqY9C;AGpYmC;EAAW,kBAAA;EHuY9C;AGtYmC;EAAW,kBAAA;EHyY9C;AGxYmC;EAAW,kBAAA;EH2Y9C;AG1YmC;EAAW,kBAAA;EH6Y9C;AG5YmC;EAAW,kBAAA;EH+Y9C;AG9YmC;EAAW,kBAAA;EHiZ9C;AGhZmC;EAAW,kBAAA;EHmZ9C;AGlZmC;EAAW,kBAAA;EHqZ9C;AGpZmC;EAAW,kBAAA;EHuZ9C;AGtZmC;EAAW,kBAAA;EHyZ9C;AGxZmC;EAAW,kBAAA;EH2Z9C;AG1ZmC;EAAW,kBAAA;EH6Z9C;AG5ZmC;EAAW,kBAAA;EH+Z9C;AG9ZmC;EAAW,kBAAA;EHia9C;AGhamC;EAAW,kBAAA;EHma9C;AGlamC;EAAW,kBAAA;EHqa9C;AGpamC;EAAW,kBAAA;EHua9C;AGtamC;EAAW,kBAAA;EHya9C;AGxamC;EAAW,kBAAA;EH2a9C;AG1amC;EAAW,kBAAA;EH6a9C;AG5amC;EAAW,kBAAA;EH+a9C;AG9amC;EAAW,kBAAA;EHib9C;AGhbmC;EAAW,kBAAA;EHmb9C;AGlbmC;EAAW,kBAAA;EHqb9C;AGpbmC;EAAW,kBAAA;EHub9C;AGtbmC;EAAW,kBAAA;EHyb9C;AGxbmC;EAAW,kBAAA;EH2b9C;AG1bmC;EAAW,kBAAA;EH6b9C;AG5bmC;EAAW,kBAAA;EH+b9C;AG9bmC;EAAW,kBAAA;EHic9C;AGhcmC;EAAW,kBAAA;EHmc9C;AGlcmC;EAAW,kBAAA;EHqc9C;AGpcmC;EAAW,kBAAA;EHuc9C;AGtcmC;EAAW,kBAAA;EHyc9C;AGxcmC;EAAW,kBAAA;EH2c9C;AG1cmC;EAAW,kBAAA;EH6c9C;AG5cmC;EAAW,kBAAA;EH+c9C;AG9cmC;EAAW,kBAAA;EHid9C;AGhdmC;EAAW,kBAAA;EHmd9C;AGldmC;EAAW,kBAAA;EHqd9C;AGpdmC;EAAW,kBAAA;EHud9C;AGtdmC;EAAW,kBAAA;EHyd9C;AGxdmC;EAAW,kBAAA;EH2d9C;AG1dmC;EAAW,kBAAA;EH6d9C;AG5dmC;EAAW,kBAAA;EH+d9C;AG9dmC;EAAW,kBAAA;EHie9C;AGhemC;EAAW,kBAAA;EHme9C;AGlemC;EAAW,kBAAA;EHqe9C;AGpemC;EAAW,kBAAA;EHue9C;AGtemC;EAAW,kBAAA;EHye9C;AGxemC;EAAW,kBAAA;EH2e9C;AG1emC;EAAW,kBAAA;EH6e9C;AG5emC;EAAW,kBAAA;EH+e9C;AG9emC;EAAW,kBAAA;EHif9C;AGhfmC;EAAW,kBAAA;EHmf9C;AGlfmC;EAAW,kBAAA;EHqf9C;AGpfmC;EAAW,kBAAA;EHuf9C;AGtfmC;EAAW,kBAAA;EHyf9C;AGxfmC;EAAW,kBAAA;EH2f9C;AG1fmC;EAAW,kBAAA;EH6f9C;AG5fmC;EAAW,kBAAA;EH+f9C;AG9fmC;EAAW,kBAAA;EHigB9C;AGhgBmC;EAAW,kBAAA;EHmgB9C;AGlgBmC;EAAW,kBAAA;EHqgB9C;AGpgBmC;EAAW,kBAAA;EHugB9C;AGtgBmC;EAAW,kBAAA;EHygB9C;AGxgBmC;EAAW,kBAAA;EH2gB9C;AG1gBmC;EAAW,kBAAA;EH6gB9C;AG5gBmC;EAAW,kBAAA;EH+gB9C;AG9gBmC;EAAW,kBAAA;EHihB9C;AGhhBmC;EAAW,kBAAA;EHmhB9C;AGlhBmC;EAAW,kBAAA;EHqhB9C;AGphBmC;EAAW,kBAAA;EHuhB9C;AGthBmC;EAAW,kBAAA;EHyhB9C;AGxhBmC;EAAW,kBAAA;EH2hB9C;AG1hBmC;EAAW,kBAAA;EH6hB9C;AG5hBmC;EAAW,kBAAA;EH+hB9C;AG9hBmC;EAAW,kBAAA;EHiiB9C;AGhiBmC;EAAW,kBAAA;EHmiB9C;AGliBmC;EAAW,kBAAA;EHqiB9C;AGpiBmC;EAAW,kBAAA;EHuiB9C;AGtiBmC;EAAW,kBAAA;EHyiB9C;AGxiBmC;EAAW,kBAAA;EH2iB9C;AG1iBmC;EAAW,kBAAA;EH6iB9C;AG5iBmC;EAAW,kBAAA;EH+iB9C;AG9iBmC;EAAW,kBAAA;EHijB9C;AGhjBmC;EAAW,kBAAA;EHmjB9C;AGljBmC;EAAW,kBAAA;EHqjB9C;AGpjBmC;EAAW,kBAAA;EHujB9C;AGtjBmC;EAAW,kBAAA;EHyjB9C;AGxjBmC;EAAW,kBAAA;EH2jB9C;AG1jBmC;EAAW,kBAAA;EH6jB9C;AG5jBmC;EAAW,kBAAA;EH+jB9C;AG9jBmC;EAAW,kBAAA;EHikB9C;AGhkBmC;EAAW,kBAAA;EHmkB9C;AGlkBmC;EAAW,kBAAA;EHqkB9C;AGpkBmC;EAAW,kBAAA;EHukB9C;AGtkBmC;EAAW,kBAAA;EHykB9C;AGxkBmC;EAAW,kBAAA;EH2kB9C;AG1kBmC;EAAW,kBAAA;EH6kB9C;AG5kBmC;EAAW,kBAAA;EH+kB9C;AG9kBmC;EAAW,kBAAA;EHilB9C;AGhlBmC;EAAW,kBAAA;EHmlB9C;AGllBmC;EAAW,kBAAA;EHqlB9C;AGplBmC;EAAW,kBAAA;EHulB9C;AGtlBmC;EAAW,kBAAA;EHylB9C;AGxlBmC;EAAW,kBAAA;EH2lB9C;AG1lBmC;EAAW,kBAAA;EH6lB9C;AG5lBmC;EAAW,kBAAA;EH+lB9C;AG9lBmC;EAAW,kBAAA;EHimB9C;AGhmBmC;EAAW,kBAAA;EHmmB9C;AGlmBmC;EAAW,kBAAA;EHqmB9C;AGpmBmC;EAAW,kBAAA;EHumB9C;AGtmBmC;EAAW,kBAAA;EHymB9C;AGxmBmC;EAAW,kBAAA;EH2mB9C;AG1mBmC;EAAW,kBAAA;EH6mB9C;AG5mBmC;EAAW,kBAAA;EH+mB9C;AG9mBmC;EAAW,kBAAA;EHinB9C;AGhnBmC;EAAW,kBAAA;EHmnB9C;AGlnBmC;EAAW,kBAAA;EHqnB9C;AGpnBmC;EAAW,kBAAA;EHunB9C;AGtnBmC;EAAW,kBAAA;EHynB9C;AGxnBmC;EAAW,kBAAA;EH2nB9C;AG1nBmC;EAAW,kBAAA;EH6nB9C;AG5nBmC;EAAW,kBAAA;EH+nB9C;AG9nBmC;EAAW,kBAAA;EHioB9C;AGhoBmC;EAAW,kBAAA;EHmoB9C;AGloBmC;EAAW,kBAAA;EHqoB9C;AGpoBmC;EAAW,kBAAA;EHuoB9C;AGtoBmC;EAAW,kBAAA;EHyoB9C;AGhoBmC;EAAW,kBAAA;EHmoB9C;AGloBmC;EAAW,kBAAA;EHqoB9C;AGpoBmC;EAAW,kBAAA;EHuoB9C;AGtoBmC;EAAW,kBAAA;EHyoB9C;AGxoBmC;EAAW,kBAAA;EH2oB9C;AG1oBmC;EAAW,kBAAA;EH6oB9C;AG5oBmC;EAAW,kBAAA;EH+oB9C;AG9oBmC;EAAW,kBAAA;EHipB9C;AGhpBmC;EAAW,kBAAA;EHmpB9C;AGlpBmC;EAAW,kBAAA;EHqpB9C;AGppBmC;EAAW,kBAAA;EHupB9C;AGtpBmC;EAAW,kBAAA;EHypB9C;AGxpBmC;EAAW,kBAAA;EH2pB9C;AG1pBmC;EAAW,kBAAA;EH6pB9C;AG5pBmC;EAAW,kBAAA;EH+pB9C;AG9pBmC;EAAW,kBAAA;EHiqB9C;AGhqBmC;EAAW,kBAAA;EHmqB9C;AGlqBmC;EAAW,kBAAA;EHqqB9C;AGpqBmC;EAAW,kBAAA;EHuqB9C;AGtqBmC;EAAW,kBAAA;EHyqB9C;AGxqBmC;EAAW,kBAAA;EH2qB9C;AG1qBmC;EAAW,kBAAA;EH6qB9C;AG5qBmC;EAAW,kBAAA;EH+qB9C;AG9qBmC;EAAW,kBAAA;EHirB9C;AGhrBmC;EAAW,kBAAA;EHmrB9C;AGlrBmC;EAAW,kBAAA;EHqrB9C;AGprBmC;EAAW,kBAAA;EHurB9C;AGtrBmC;EAAW,kBAAA;EHyrB9C;AGxrBmC;EAAW,kBAAA;EH2rB9C;AG1rBmC;EAAW,kBAAA;EH6rB9C;AG5rBmC;EAAW,kBAAA;EH+rB9C;AG9rBmC;EAAW,kBAAA;EHisB9C;AGhsBmC;EAAW,kBAAA;EHmsB9C;AGlsBmC;EAAW,kBAAA;EHqsB9C;AGpsBmC;EAAW,kBAAA;EHusB9C;AGtsBmC;EAAW,kBAAA;EHysB9C;AGxsBmC;EAAW,kBAAA;EH2sB9C;AG1sBmC;EAAW,kBAAA;EH6sB9C;AG5sBmC;EAAW,kBAAA;EH+sB9C;AG9sBmC;EAAW,kBAAA;EHitB9C;AGhtBmC;EAAW,kBAAA;EHmtB9C;AGltBmC;EAAW,kBAAA;EHqtB9C;AGptBmC;EAAW,kBAAA;EHutB9C;AGttBmC;EAAW,kBAAA;EHytB9C;AGxtBmC;EAAW,kBAAA;EH2tB9C;AG1tBmC;EAAW,kBAAA;EH6tB9C;AG5tBmC;EAAW,kBAAA;EH+tB9C;AG9tBmC;EAAW,kBAAA;EHiuB9C;AGhuBmC;EAAW,kBAAA;EHmuB9C;AGluBmC;EAAW,kBAAA;EHquB9C;AGpuBmC;EAAW,kBAAA;EHuuB9C;AGtuBmC;EAAW,kBAAA;EHyuB9C;AI3gCD;ECgEE,gCAAA;EACG,6BAAA;EACK,wBAAA;EL88BT;AI7gCD;;EC6DE,gCAAA;EACG,6BAAA;EACK,wBAAA;ELo9BT;AI3gCD;EACE,iBAAA;EACA,+CAAA;EJ6gCD;AI1gCD;EACE,6DAAA;EACA,iBAAA;EACA,yBAAA;EACA,gBAAA;EACA,2BAAA;EJ4gCD;AIxgCD;;;;EAIE,sBAAA;EACA,oBAAA;EACA,sBAAA;EJ0gCD;AIpgCD;EACE,gBAAA;EACA,uBAAA;EJsgCD;AIpgCC;;EAEE,gBAAA;EACA,4BAAA;EJsgCH;AIngCC;EErDA,sBAAA;EAEA,4CAAA;EACA,sBAAA;EN0jCD;AI7/BD;EACE,WAAA;EJ+/BD;AIz/BD;EACE,wBAAA;EJ2/BD;AIv/BD;;;;;EGvEE,gBAAA;EACA,iBAAA;EACA,cAAA;EPqkCD;AI3/BD;EACE,oBAAA;EJ6/BD;AIv/BD;EACE,cAAA;EACA,yBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;EC6FA,0CAAA;EACK,qCAAA;EACG,kCAAA;EEvLR,uBAAA;EACA,iBAAA;EACA,cAAA;EPqlCD;AIv/BD;EACE,oBAAA;EJy/BD;AIn/BD;EACE,kBAAA;EACA,qBAAA;EACA,WAAA;EACA,+BAAA;EJq/BD;AI7+BD;EACE,oBAAA;EACA,YAAA;EACA,aAAA;EACA,cAAA;EACA,YAAA;EACA,kBAAA;EACA,wBAAA;EACA,WAAA;EJ++BD;AIv+BC;;EAEE,kBAAA;EACA,aAAA;EACA,cAAA;EACA,WAAA;EACA,mBAAA;EACA,YAAA;EJy+BH;AQpnCD;;;;;;;;;;;;EAEE,sBAAA;EACA,kBAAA;EACA,kBAAA;EACA,gBAAA;ERgoCD;AQroCD;;;;;;;;;;;;;;;;;;;;;;;;EASI,qBAAA;EACA,gBAAA;EACA,gBAAA;ERspCH;AQlpCD;;;;;;EAGE,kBAAA;EACA,qBAAA;ERupCD;AQ3pCD;;;;;;;;;;;;EAQI,gBAAA;ERiqCH;AQ9pCD;;;;;;EAGE,kBAAA;EACA,qBAAA;ERmqCD;AQvqCD;;;;;;;;;;;;EAQI,gBAAA;ER6qCH;AQzqCD;;EAAU,iBAAA;ER6qCT;AQ5qCD;;EAAU,iBAAA;ERgrCT;AQ/qCD;;EAAU,iBAAA;ERmrCT;AQlrCD;;EAAU,iBAAA;ERsrCT;AQrrCD;;EAAU,iBAAA;ERyrCT;AQxrCD;;EAAU,iBAAA;ER4rCT;AQtrCD;EACE,kBAAA;ERwrCD;AQrrCD;EACE,qBAAA;EACA,iBAAA;EACA,kBAAA;EACA,kBAAA;ERurCD;AQlrCD;EAAA;IAFI,iBAAA;IRwrCD;EACF;AQhrCD;;EAEE,gBAAA;ERkrCD;AQ/qCD;;EAEE,2BAAA;EACA,eAAA;ERirCD;AQ7qCD;EAAuB,kBAAA;ERgrCtB;AQ/qCD;EAAuB,mBAAA;ERkrCtB;AQjrCD;EAAuB,oBAAA;ERorCtB;AQnrCD;EAAuB,qBAAA;ERsrCtB;AQrrCD;EAAuB,qBAAA;ERwrCtB;AQrrCD;EAAuB,2BAAA;ERwrCtB;AQvrCD;EAAuB,2BAAA;ER0rCtB;AQzrCD;EAAuB,4BAAA;ER4rCtB;AQzrCD;EACE,gBAAA;ER2rCD;AQzrCD;ECrGE,gBAAA;ETiyCD;AShyCC;EACE,gBAAA;ETkyCH;AQ5rCD;ECxGE,gBAAA;ETuyCD;AStyCC;EACE,gBAAA;ETwyCH;AQ/rCD;EC3GE,gBAAA;ET6yCD;AS5yCC;EACE,gBAAA;ET8yCH;AQlsCD;EC9GE,gBAAA;ETmzCD;ASlzCC;EACE,gBAAA;ETozCH;AQrsCD;ECjHE,gBAAA;ETyzCD;ASxzCC;EACE,gBAAA;ET0zCH;AQpsCD;EAGE,aAAA;EE3HA,2BAAA;EVg0CD;AU/zCC;EACE,2BAAA;EVi0CH;AQrsCD;EE9HE,2BAAA;EVs0CD;AUr0CC;EACE,2BAAA;EVu0CH;AQxsCD;EEjIE,2BAAA;EV40CD;AU30CC;EACE,2BAAA;EV60CH;AQ3sCD;EEpIE,2BAAA;EVk1CD;AUj1CC;EACE,2BAAA;EVm1CH;AQ9sCD;EEvIE,2BAAA;EVw1CD;AUv1CC;EACE,2BAAA;EVy1CH;AQ5sCD;EACE,qBAAA;EACA,qBAAA;EACA,kCAAA;ER8sCD;AQtsCD;;EAEE,eAAA;EACA,qBAAA;ERwsCD;AQ3sCD;;;;EAMI,kBAAA;ER2sCH;AQpsCD;EACE,iBAAA;EACA,kBAAA;ERssCD;AQlsCD;EALE,iBAAA;EACA,kBAAA;EAMA,mBAAA;ERqsCD;AQvsCD;EAKI,uBAAA;EACA,mBAAA;EACA,oBAAA;ERqsCH;AQhsCD;EACE,eAAA;EACA,qBAAA;ERksCD;AQhsCD;;EAEE,yBAAA;ERksCD;AQhsCD;EACE,mBAAA;ERksCD;AQhsCD;EACE,gBAAA;ERksCD;AQzqCD;EAAA;IAVM,aAAA;IACA,cAAA;IACA,aAAA;IACA,mBAAA;IGtNJ,kBAAA;IACA,yBAAA;IACA,qBAAA;IX84CC;EQnrCH;IAHM,oBAAA;IRyrCH;EACF;AQhrCD;;EAGE,cAAA;EACA,mCAAA;ERirCD;AQ/qCD;EACE,gBAAA;EACA,2BAAA;ERirCD;AQ7qCD;EACE,oBAAA;EACA,kBAAA;EACA,mBAAA;EACA,gCAAA;ER+qCD;AQ1qCG;;;EACE,kBAAA;ER8qCL;AQxrCD;;;EAmBI,gBAAA;EACA,gBAAA;EACA,yBAAA;EACA,gBAAA;ER0qCH;AQxqCG;;;EACE,wBAAA;ER4qCL;AQpqCD;;EAEE,qBAAA;EACA,iBAAA;EACA,iCAAA;EACA,gBAAA;EACA,mBAAA;ERsqCD;AQhqCG;;;;;;EAAW,aAAA;ERwqCd;AQvqCG;;;;;;EACE,wBAAA;ER8qCL;AQxqCD;EACE,qBAAA;EACA,oBAAA;EACA,yBAAA;ER0qCD;AYh9CD;;;;EAIE,gEAAA;EZk9CD;AY98CD;EACE,kBAAA;EACA,gBAAA;EACA,gBAAA;EACA,2BAAA;EACA,oBAAA;EZg9CD;AY58CD;EACE,kBAAA;EACA,gBAAA;EACA,gBAAA;EACA,2BAAA;EACA,oBAAA;EACA,wDAAA;UAAA,gDAAA;EZ88CD;AYp9CD;EASI,YAAA;EACA,iBAAA;EACA,mBAAA;EACA,0BAAA;UAAA,kBAAA;EZ88CH;AYz8CD;EACE,gBAAA;EACA,gBAAA;EACA,kBAAA;EACA,iBAAA;EACA,yBAAA;EACA,uBAAA;EACA,uBAAA;EACA,gBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;EZ28CD;AYt9CD;EAeI,YAAA;EACA,oBAAA;EACA,gBAAA;EACA,uBAAA;EACA,+BAAA;EACA,kBAAA;EZ08CH;AYr8CD;EACE,mBAAA;EACA,oBAAA;EZu8CD;AajgDD;ECHE,oBAAA;EACA,mBAAA;EACA,oBAAA;EACA,qBAAA;EdugDD;AajgDC;EAAA;IAFE,cAAA;IbugDD;EACF;AangDC;EAAA;IAFE,cAAA;IbygDD;EACF;AargDD;EAAA;IAFI,eAAA;Ib2gDD;EACF;AalgDD;ECvBE,oBAAA;EACA,mBAAA;EACA,oBAAA;EACA,qBAAA;Ed4hDD;Aa//CD;ECvBE,oBAAA;EACA,qBAAA;EdyhDD;AezhDG;EACE,oBAAA;EAEA,iBAAA;EAEA,oBAAA;EACA,qBAAA;EfyhDL;AezgDG;EACE,aAAA;Ef2gDL;AepgDC;EACE,aAAA;EfsgDH;AevgDC;EACE,qBAAA;EfygDH;Ae1gDC;EACE,qBAAA;Ef4gDH;Ae7gDC;EACE,YAAA;Ef+gDH;AehhDC;EACE,qBAAA;EfkhDH;AenhDC;EACE,qBAAA;EfqhDH;AethDC;EACE,YAAA;EfwhDH;AezhDC;EACE,qBAAA;Ef2hDH;Ae5hDC;EACE,qBAAA;Ef8hDH;Ae/hDC;EACE,YAAA;EfiiDH;AeliDC;EACE,qBAAA;EfoiDH;AeriDC;EACE,oBAAA;EfuiDH;AezhDC;EACE,aAAA;Ef2hDH;Ae5hDC;EACE,qBAAA;Ef8hDH;Ae/hDC;EACE,qBAAA;EfiiDH;AeliDC;EACE,YAAA;EfoiDH;AeriDC;EACE,qBAAA;EfuiDH;AexiDC;EACE,qBAAA;Ef0iDH;Ae3iDC;EACE,YAAA;Ef6iDH;Ae9iDC;EACE,qBAAA;EfgjDH;AejjDC;EACE,qBAAA;EfmjDH;AepjDC;EACE,YAAA;EfsjDH;AevjDC;EACE,qBAAA;EfyjDH;Ae1jDC;EACE,oBAAA;Ef4jDH;AexjDC;EACE,aAAA;Ef0jDH;Ae1kDC;EACE,YAAA;Ef4kDH;Ae7kDC;EACE,oBAAA;Ef+kDH;AehlDC;EACE,oBAAA;EfklDH;AenlDC;EACE,WAAA;EfqlDH;AetlDC;EACE,oBAAA;EfwlDH;AezlDC;EACE,oBAAA;Ef2lDH;Ae5lDC;EACE,WAAA;Ef8lDH;Ae/lDC;EACE,oBAAA;EfimDH;AelmDC;EACE,oBAAA;EfomDH;AermDC;EACE,WAAA;EfumDH;AexmDC;EACE,oBAAA;Ef0mDH;Ae3mDC;EACE,mBAAA;Ef6mDH;AezmDC;EACE,YAAA;Ef2mDH;Ae7lDC;EACE,mBAAA;Ef+lDH;AehmDC;EACE,2BAAA;EfkmDH;AenmDC;EACE,2BAAA;EfqmDH;AetmDC;EACE,kBAAA;EfwmDH;AezmDC;EACE,2BAAA;Ef2mDH;Ae5mDC;EACE,2BAAA;Ef8mDH;Ae/mDC;EACE,kBAAA;EfinDH;AelnDC;EACE,2BAAA;EfonDH;AernDC;EACE,2BAAA;EfunDH;AexnDC;EACE,kBAAA;Ef0nDH;Ae3nDC;EACE,2BAAA;Ef6nDH;Ae9nDC;EACE,0BAAA;EfgoDH;AejoDC;EACE,iBAAA;EfmoDH;AanoDD;EElCI;IACE,aAAA;IfwqDH;EejqDD;IACE,aAAA;IfmqDD;EepqDD;IACE,qBAAA;IfsqDD;EevqDD;IACE,qBAAA;IfyqDD;Ee1qDD;IACE,YAAA;If4qDD;Ee7qDD;IACE,qBAAA;If+qDD;EehrDD;IACE,qBAAA;IfkrDD;EenrDD;IACE,YAAA;IfqrDD;EetrDD;IACE,qBAAA;IfwrDD;EezrDD;IACE,qBAAA;If2rDD;Ee5rDD;IACE,YAAA;If8rDD;Ee/rDD;IACE,qBAAA;IfisDD;EelsDD;IACE,oBAAA;IfosDD;EetrDD;IACE,aAAA;IfwrDD;EezrDD;IACE,qBAAA;If2rDD;Ee5rDD;IACE,qBAAA;If8rDD;Ee/rDD;IACE,YAAA;IfisDD;EelsDD;IACE,qBAAA;IfosDD;EersDD;IACE,qBAAA;IfusDD;EexsDD;IACE,YAAA;If0sDD;Ee3sDD;IACE,qBAAA;If6sDD;Ee9sDD;IACE,qBAAA;IfgtDD;EejtDD;IACE,YAAA;IfmtDD;EeptDD;IACE,qBAAA;IfstDD;EevtDD;IACE,oBAAA;IfytDD;EertDD;IACE,aAAA;IfutDD;EevuDD;IACE,YAAA;IfyuDD;Ee1uDD;IACE,oBAAA;If4uDD;Ee7uDD;IACE,oBAAA;If+uDD;EehvDD;IACE,WAAA;IfkvDD;EenvDD;IACE,oBAAA;IfqvDD;EetvDD;IACE,oBAAA;IfwvDD;EezvDD;IACE,WAAA;If2vDD;Ee5vDD;IACE,oBAAA;If8vDD;Ee/vDD;IACE,oBAAA;IfiwDD;EelwDD;IACE,WAAA;IfowDD;EerwDD;IACE,oBAAA;IfuwDD;EexwDD;IACE,mBAAA;If0wDD;EetwDD;IACE,YAAA;IfwwDD;Ee1vDD;IACE,mBAAA;If4vDD;Ee7vDD;IACE,2BAAA;If+vDD;EehwDD;IACE,2BAAA;IfkwDD;EenwDD;IACE,kBAAA;IfqwDD;EetwDD;IACE,2BAAA;IfwwDD;EezwDD;IACE,2BAAA;If2wDD;Ee5wDD;IACE,kBAAA;If8wDD;Ee/wDD;IACE,2BAAA;IfixDD;EelxDD;IACE,2BAAA;IfoxDD;EerxDD;IACE,kBAAA;IfuxDD;EexxDD;IACE,2BAAA;If0xDD;Ee3xDD;IACE,0BAAA;If6xDD;Ee9xDD;IACE,iBAAA;IfgyDD;EACF;AaxxDD;EE3CI;IACE,aAAA;Ifs0DH;Ee/zDD;IACE,aAAA;Ifi0DD;Eel0DD;IACE,qBAAA;Ifo0DD;Eer0DD;IACE,qBAAA;Ifu0DD;Eex0DD;IACE,YAAA;If00DD;Ee30DD;IACE,qBAAA;If60DD;Ee90DD;IACE,qBAAA;Ifg1DD;Eej1DD;IACE,YAAA;Ifm1DD;Eep1DD;IACE,qBAAA;Ifs1DD;Eev1DD;IACE,qBAAA;Ify1DD;Ee11DD;IACE,YAAA;If41DD;Ee71DD;IACE,qBAAA;If+1DD;Eeh2DD;IACE,oBAAA;Ifk2DD;Eep1DD;IACE,aAAA;Ifs1DD;Eev1DD;IACE,qBAAA;Ify1DD;Ee11DD;IACE,qBAAA;If41DD;Ee71DD;IACE,YAAA;If+1DD;Eeh2DD;IACE,qBAAA;Ifk2DD;Een2DD;IACE,qBAAA;Ifq2DD;Eet2DD;IACE,YAAA;Ifw2DD;Eez2DD;IACE,qBAAA;If22DD;Ee52DD;IACE,qBAAA;If82DD;Ee/2DD;IACE,YAAA;Ifi3DD;Eel3DD;IACE,qBAAA;Ifo3DD;Eer3DD;IACE,oBAAA;Ifu3DD;Een3DD;IACE,aAAA;Ifq3DD;Eer4DD;IACE,YAAA;Ifu4DD;Eex4DD;IACE,oBAAA;If04DD;Ee34DD;IACE,oBAAA;If64DD;Ee94DD;IACE,WAAA;Ifg5DD;Eej5DD;IACE,oBAAA;Ifm5DD;Eep5DD;IACE,oBAAA;Ifs5DD;Eev5DD;IACE,WAAA;Ify5DD;Ee15DD;IACE,oBAAA;If45DD;Ee75DD;IACE,oBAAA;If+5DD;Eeh6DD;IACE,WAAA;Ifk6DD;Een6DD;IACE,oBAAA;Ifq6DD;Eet6DD;IACE,mBAAA;Ifw6DD;Eep6DD;IACE,YAAA;Ifs6DD;Eex5DD;IACE,mBAAA;If05DD;Ee35DD;IACE,2BAAA;If65DD;Ee95DD;IACE,2BAAA;Ifg6DD;Eej6DD;IACE,kBAAA;Ifm6DD;Eep6DD;IACE,2BAAA;Ifs6DD;Eev6DD;IACE,2BAAA;Ify6DD;Ee16DD;IACE,kBAAA;If46DD;Ee76DD;IACE,2BAAA;If+6DD;Eeh7DD;IACE,2BAAA;Ifk7DD;Een7DD;IACE,kBAAA;Ifq7DD;Eet7DD;IACE,2BAAA;Ifw7DD;Eez7DD;IACE,0BAAA;If27DD;Ee57DD;IACE,iBAAA;If87DD;EACF;Aan7DD;EE9CI;IACE,aAAA;Ifo+DH;Ee79DD;IACE,aAAA;If+9DD;Eeh+DD;IACE,qBAAA;Ifk+DD;Een+DD;IACE,qBAAA;Ifq+DD;Eet+DD;IACE,YAAA;Ifw+DD;Eez+DD;IACE,qBAAA;If2+DD;Ee5+DD;IACE,qBAAA;If8+DD;Ee/+DD;IACE,YAAA;Ifi/DD;Eel/DD;IACE,qBAAA;Ifo/DD;Eer/DD;IACE,qBAAA;Ifu/DD;Eex/DD;IACE,YAAA;If0/DD;Ee3/DD;IACE,qBAAA;If6/DD;Ee9/DD;IACE,oBAAA;IfggED;Eel/DD;IACE,aAAA;Ifo/DD;Eer/DD;IACE,qBAAA;Ifu/DD;Eex/DD;IACE,qBAAA;If0/DD;Ee3/DD;IACE,YAAA;If6/DD;Ee9/DD;IACE,qBAAA;IfggED;EejgED;IACE,qBAAA;IfmgED;EepgED;IACE,YAAA;IfsgED;EevgED;IACE,qBAAA;IfygED;Ee1gED;IACE,qBAAA;If4gED;Ee7gED;IACE,YAAA;If+gED;EehhED;IACE,qBAAA;IfkhED;EenhED;IACE,oBAAA;IfqhED;EejhED;IACE,aAAA;IfmhED;EeniED;IACE,YAAA;IfqiED;EetiED;IACE,oBAAA;IfwiED;EeziED;IACE,oBAAA;If2iED;Ee5iED;IACE,WAAA;If8iED;Ee/iED;IACE,oBAAA;IfijED;EeljED;IACE,oBAAA;IfojED;EerjED;IACE,WAAA;IfujED;EexjED;IACE,oBAAA;If0jED;Ee3jED;IACE,oBAAA;If6jED;Ee9jED;IACE,WAAA;IfgkED;EejkED;IACE,oBAAA;IfmkED;EepkED;IACE,mBAAA;IfskED;EelkED;IACE,YAAA;IfokED;EetjED;IACE,mBAAA;IfwjED;EezjED;IACE,2BAAA;If2jED;Ee5jED;IACE,2BAAA;If8jED;Ee/jED;IACE,kBAAA;IfikED;EelkED;IACE,2BAAA;IfokED;EerkED;IACE,2BAAA;IfukED;EexkED;IACE,kBAAA;If0kED;Ee3kED;IACE,2BAAA;If6kED;Ee9kED;IACE,2BAAA;IfglED;EejlED;IACE,kBAAA;IfmlED;EeplED;IACE,2BAAA;IfslED;EevlED;IACE,0BAAA;IfylED;Ee1lED;IACE,iBAAA;If4lED;EACF;AgBhqED;EACE,+BAAA;EhBkqED;AgBhqED;EACE,kBAAA;EACA,qBAAA;EACA,gBAAA;EACA,kBAAA;EhBkqED;AgBhqED;EACE,kBAAA;EhBkqED;AgB5pED;EACE,aAAA;EACA,iBAAA;EACA,qBAAA;EhB8pED;AgBjqED;;;;;;EAWQ,cAAA;EACA,yBAAA;EACA,qBAAA;EACA,+BAAA;EhB8pEP;AgB5qED;EAoBI,wBAAA;EACA,kCAAA;EhB2pEH;AgBhrED;;;;;;EA8BQ,eAAA;EhB0pEP;AgBxrED;EAoCI,+BAAA;EhBupEH;AgB3rED;EAyCI,2BAAA;EhBqpEH;AgB9oED;;;;;;EAOQ,cAAA;EhB+oEP;AgBpoED;EACE,2BAAA;EhBsoED;AgBvoED;;;;;;EAQQ,2BAAA;EhBuoEP;AgB/oED;;EAeM,0BAAA;EhBooEL;AgB1nED;EAEI,2BAAA;EhB2nEH;AgBlnED;EAEI,2BAAA;EhBmnEH;AgB1mED;EACE,kBAAA;EACA,aAAA;EACA,uBAAA;EhB4mED;AgBvmEG;;EACE,kBAAA;EACA,aAAA;EACA,qBAAA;EhB0mEL;AiBtvEC;;;;;;;;;;;;EAOI,2BAAA;EjB6vEL;AiBvvEC;;;;;EAMI,2BAAA;EjBwvEL;AiB3wEC;;;;;;;;;;;;EAOI,2BAAA;EjBkxEL;AiB5wEC;;;;;EAMI,2BAAA;EjB6wEL;AiBhyEC;;;;;;;;;;;;EAOI,2BAAA;EjBuyEL;AiBjyEC;;;;;EAMI,2BAAA;EjBkyEL;AiBrzEC;;;;;;;;;;;;EAOI,2BAAA;EjB4zEL;AiBtzEC;;;;;EAMI,2BAAA;EjBuzEL;AiB10EC;;;;;;;;;;;;EAOI,2BAAA;EjBi1EL;AiB30EC;;;;;EAMI,2BAAA;EjB40EL;AgB1rED;EACE,kBAAA;EACA,mBAAA;EhB4rED;AgB/nED;EAAA;IA1DI,aAAA;IACA,qBAAA;IACA,oBAAA;IACA,8CAAA;IACA,2BAAA;IhB6rED;EgBvoEH;IAlDM,kBAAA;IhB4rEH;EgB1oEH;;;;;;IAzCY,qBAAA;IhB2rET;EgBlpEH;IAjCM,WAAA;IhBsrEH;EgBrpEH;;;;;;IAxBY,gBAAA;IhBqrET;EgB7pEH;;;;;;IApBY,iBAAA;IhByrET;EgBrqEH;;;;IAPY,kBAAA;IhBkrET;EACF;AkB54ED;EACE,YAAA;EACA,WAAA;EACA,WAAA;EAIA,cAAA;ElB24ED;AkBx4ED;EACE,gBAAA;EACA,aAAA;EACA,YAAA;EACA,qBAAA;EACA,iBAAA;EACA,sBAAA;EACA,gBAAA;EACA,WAAA;EACA,kCAAA;ElB04ED;AkBv4ED;EACE,uBAAA;EACA,iBAAA;EACA,oBAAA;EACA,mBAAA;ElBy4ED;AkB93ED;Eb4BE,gCAAA;EACG,6BAAA;EACK,wBAAA;ELq2ET;AkB93ED;;EAEE,iBAAA;EACA,oBAAA;EACA,qBAAA;ElBg4ED;AkB53ED;EACE,gBAAA;ElB83ED;AkB13ED;EACE,gBAAA;EACA,aAAA;ElB43ED;AkBx3ED;;EAEE,cAAA;ElB03ED;AkBt3ED;;;EZxEE,sBAAA;EAEA,4CAAA;EACA,sBAAA;ENk8ED;AkBt3ED;EACE,gBAAA;EACA,kBAAA;EACA,iBAAA;EACA,yBAAA;EACA,gBAAA;ElBw3ED;AkB91ED;EACE,gBAAA;EACA,aAAA;EACA,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,yBAAA;EACA,gBAAA;EACA,2BAAA;EACA,wBAAA;EACA,2BAAA;EACA,oBAAA;EbzDA,0DAAA;EACQ,kDAAA;EAyHR,wFAAA;EACK,2EAAA;EACG,wEAAA;ELkyET;AmB16EC;EACE,uBAAA;EACA,YAAA;EdUF,wFAAA;EACQ,gFAAA;ELm6ET;AKl4EC;EACE,gBAAA;EACA,YAAA;ELo4EH;AKl4EC;EAA0B,gBAAA;ELq4E3B;AKp4EC;EAAgC,gBAAA;ELu4EjC;AkBt2EC;;;EAGE,qBAAA;EACA,2BAAA;EACA,YAAA;ElBw2EH;AkBp2EC;EACE,cAAA;ElBs2EH;AkB11ED;EACE,0BAAA;ElB41ED;AkBxzED;EAxBE;;;;IAIE,mBAAA;IlBm1ED;EkBj1EC;;;;;;;;IAEE,mBAAA;IlBy1EH;EkBt1EC;;;;;;;;IAEE,mBAAA;IlB81EH;EACF;AkBp1ED;EACE,qBAAA;ElBs1ED;AkB90ED;;EAEE,oBAAA;EACA,gBAAA;EACA,kBAAA;EACA,qBAAA;ElBg1ED;AkBr1ED;;EAQI,kBAAA;EACA,oBAAA;EACA,kBAAA;EACA,qBAAA;EACA,iBAAA;ElBi1EH;AkB90ED;;;;EAIE,oBAAA;EACA,oBAAA;EACA,oBAAA;ElBg1ED;AkB70ED;;EAEE,kBAAA;ElB+0ED;AkB30ED;;EAEE,uBAAA;EACA,oBAAA;EACA,kBAAA;EACA,wBAAA;EACA,qBAAA;EACA,iBAAA;ElB60ED;AkB30ED;;EAEE,eAAA;EACA,mBAAA;ElB60ED;AkBp0EC;;;;;;EAGE,qBAAA;ElBy0EH;AkBn0EC;;;;EAEE,qBAAA;ElBu0EH;AkBj0EC;;;;EAGI,qBAAA;ElBo0EL;AkBzzED;EAEE,kBAAA;EACA,qBAAA;EAEA,kBAAA;ElByzED;AkBvzEC;;EAEE,iBAAA;EACA,kBAAA;ElByzEH;AkB5yED;ECpPE,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;EnBmiFD;AmBjiFC;EACE,cAAA;EACA,mBAAA;EnBmiFH;AmBhiFC;;EAEE,cAAA;EnBkiFH;AkBxzED;ECvPE,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;EnBkjFD;AmBhjFC;EACE,cAAA;EACA,mBAAA;EnBkjFH;AmB/iFC;;EAEE,cAAA;EnBijFH;AkBv0ED;EAKI,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;ElBq0EH;AkBj0ED;ECnQE,cAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,oBAAA;EnBukFD;AmBrkFC;EACE,cAAA;EACA,mBAAA;EnBukFH;AmBpkFC;;EAEE,cAAA;EnBskFH;AkB70ED;ECtQE,cAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,oBAAA;EnBslFD;AmBplFC;EACE,cAAA;EACA,mBAAA;EnBslFH;AmBnlFC;;EAEE,cAAA;EnBqlFH;AkB51ED;EAKI,cAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;ElB01EH;AkBj1ED;EAEE,oBAAA;ElBk1ED;AkBp1ED;EAMI,uBAAA;ElBi1EH;AkB70ED;EACE,oBAAA;EACA,QAAA;EACA,UAAA;EACA,YAAA;EACA,gBAAA;EACA,aAAA;EACA,cAAA;EACA,mBAAA;EACA,oBAAA;EACA,sBAAA;ElB+0ED;AkB70ED;EACE,aAAA;EACA,cAAA;EACA,mBAAA;ElB+0ED;AkB70ED;EACE,aAAA;EACA,cAAA;EACA,mBAAA;ElB+0ED;AkB30ED;;;;;;;;;;EC7WI,gBAAA;EnBosFH;AkBv1ED;ECzWI,uBAAA;Ed+CF,0DAAA;EACQ,kDAAA;ELqpFT;AmBnsFG;EACE,uBAAA;Ed4CJ,2EAAA;EACQ,mEAAA;EL0pFT;AkBj2ED;EC/VI,gBAAA;EACA,uBAAA;EACA,2BAAA;EnBmsFH;AkBt2ED;ECzVI,gBAAA;EnBksFH;AkBt2ED;;;;;;;;;;EChXI,gBAAA;EnBkuFH;AkBl3ED;EC5WI,uBAAA;Ed+CF,0DAAA;EACQ,kDAAA;ELmrFT;AmBjuFG;EACE,uBAAA;Ed4CJ,2EAAA;EACQ,mEAAA;ELwrFT;AkB53ED;EClWI,gBAAA;EACA,uBAAA;EACA,2BAAA;EnBiuFH;AkBj4ED;EC5VI,gBAAA;EnBguFH;AkBj4ED;;;;;;;;;;ECnXI,gBAAA;EnBgwFH;AkB74ED;EC/WI,uBAAA;Ed+CF,0DAAA;EACQ,kDAAA;ELitFT;AmB/vFG;EACE,uBAAA;Ed4CJ,2EAAA;EACQ,mEAAA;ELstFT;AkBv5ED;ECrWI,gBAAA;EACA,uBAAA;EACA,2BAAA;EnB+vFH;AkB55ED;EC/VI,gBAAA;EnB8vFH;AkBx5EC;EACG,WAAA;ElB05EJ;AkBx5EC;EACG,QAAA;ElB05EJ;AkBh5ED;EACE,gBAAA;EACA,iBAAA;EACA,qBAAA;EACA,gBAAA;ElBk5ED;AkB/zED;EAAA;IA9DM,uBAAA;IACA,kBAAA;IACA,wBAAA;IlBi4EH;EkBr0EH;IAvDM,uBAAA;IACA,aAAA;IACA,wBAAA;IlB+3EH;EkB10EH;IAhDM,uBAAA;IlB63EH;EkB70EH;IA5CM,uBAAA;IACA,wBAAA;IlB43EH;EkBj1EH;;;IAtCQ,aAAA;IlB43EL;EkBt1EH;IAhCM,aAAA;IlBy3EH;EkBz1EH;IA5BM,kBAAA;IACA,wBAAA;IlBw3EH;EkB71EH;;IApBM,uBAAA;IACA,eAAA;IACA,kBAAA;IACA,wBAAA;IlBq3EH;EkBp2EH;;IAdQ,iBAAA;IlBs3EL;EkBx2EH;;IATM,oBAAA;IACA,gBAAA;IlBq3EH;EkB72EH;IAHM,QAAA;IlBm3EH;EACF;AkBz2ED;;;;EASI,eAAA;EACA,kBAAA;EACA,kBAAA;ElBs2EH;AkBj3ED;;EAiBI,kBAAA;ElBo2EH;AkBr3ED;EJzeE,oBAAA;EACA,qBAAA;Edi2FD;AkBl1EC;EAAA;IAVI,mBAAA;IACA,kBAAA;IACA,kBAAA;IlBg2EH;EACF;AkBh4ED;EAwCI,aAAA;ElB21EH;AkB90EC;EAAA;IAHM,0BAAA;IlBq1EL;EACF;AkB50EC;EAAA;IAHM,kBAAA;IlBm1EL;EACF;AoB73FD;EACE,uBAAA;EACA,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,wBAAA;EACA,gCAAA;MAAA,4BAAA;EACA,iBAAA;EACA,wBAAA;EACA,+BAAA;EACA,qBAAA;EC6BA,mBAAA;EACA,iBAAA;EACA,yBAAA;EACA,oBAAA;EhB4KA,2BAAA;EACG,wBAAA;EACC,uBAAA;EACI,mBAAA;ELwrFT;AoBh4FG;;;;;;EdrBF,sBAAA;EAEA,4CAAA;EACA,sBAAA;EN45FD;AoBp4FC;;;EAGE,gBAAA;EACA,uBAAA;EpBs4FH;AoBn4FC;;EAEE,YAAA;EACA,wBAAA;Ef2BF,0DAAA;EACQ,kDAAA;EL22FT;AoBn4FC;;;EAGE,qBAAA;EACA,sBAAA;EE9CF,eAAA;EAGA,2BAAA;EjB8DA,0BAAA;EACQ,kBAAA;ELq3FT;AoB/3FD;ECrDE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErBu7FD;AqBr7FC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErBu7FP;AqBr7FC;;;EAGE,wBAAA;ErBu7FH;AqBl7FG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErBg8FT;AoBx6FD;ECnBI,gBAAA;EACA,2BAAA;ErB87FH;AoBz6FD;ECxDE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErBo+FD;AqBl+FC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErBo+FP;AqBl+FC;;;EAGE,wBAAA;ErBo+FH;AqB/9FG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErB6+FT;AoBl9FD;ECtBI,gBAAA;EACA,2BAAA;ErB2+FH;AoBl9FD;EC5DE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErBihGD;AqB/gGC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErBihGP;AqB/gGC;;;EAGE,wBAAA;ErBihGH;AqB5gGG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErB0hGT;AoB3/FD;EC1BI,gBAAA;EACA,2BAAA;ErBwhGH;AoB3/FD;EChEE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErB8jGD;AqB5jGC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErB8jGP;AqB5jGC;;;EAGE,wBAAA;ErB8jGH;AqBzjGG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErBukGT;AoBpiGD;EC9BI,gBAAA;EACA,2BAAA;ErBqkGH;AoBpiGD;ECpEE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErB2mGD;AqBzmGC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErB2mGP;AqBzmGC;;;EAGE,wBAAA;ErB2mGH;AqBtmGG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErBonGT;AoB7kGD;EClCI,gBAAA;EACA,2BAAA;ErBknGH;AoB7kGD;ECxEE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErBwpGD;AqBtpGC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErBwpGP;AqBtpGC;;;EAGE,wBAAA;ErBwpGH;AqBnpGG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErBiqGT;AoBtnGD;ECtCI,gBAAA;EACA,2BAAA;ErB+pGH;AoBjnGD;EACE,gBAAA;EACA,qBAAA;EACA,kBAAA;EpBmnGD;AoBjnGC;;;;;EAKE,+BAAA;Ef7BF,0BAAA;EACQ,kBAAA;ELipGT;AoBlnGC;;;;EAIE,2BAAA;EpBonGH;AoBlnGC;;EAEE,gBAAA;EACA,4BAAA;EACA,+BAAA;EpBonGH;AoBhnGG;;;;EAEE,gBAAA;EACA,uBAAA;EpBonGL;AoB3mGD;;EC/EE,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,oBAAA;ErB8rGD;AoB9mGD;;ECnFE,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;ErBqsGD;AoBjnGD;;ECvFE,kBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;ErB4sGD;AoBhnGD;EACE,gBAAA;EACA,aAAA;EpBknGD;AoB9mGD;EACE,iBAAA;EpBgnGD;AoBzmGC;;;EACE,aAAA;EpB6mGH;AuBjwGD;EACE,YAAA;ElBoLA,0CAAA;EACK,qCAAA;EACG,kCAAA;ELglGT;AuBpwGC;EACE,YAAA;EvBswGH;AuBlwGD;EACE,eAAA;EACA,oBAAA;EvBowGD;AuBlwGC;EAAY,gBAAA;EAAgB,qBAAA;EvBswG7B;AuBrwGC;EAAY,oBAAA;EvBwwGb;AuBvwGC;EAAY,0BAAA;EvB0wGb;AuBvwGD;EACE,oBAAA;EACA,WAAA;EACA,kBAAA;ElBsKA,iDAAA;EACQ,4CAAA;KAAA,yCAAA;EAOR,oCAAA;EACQ,+BAAA;KAAA,4BAAA;EAGR,0CAAA;EACQ,qCAAA;KAAA,kCAAA;EL4lGT;AwBtyGD;EACE,uBAAA;EACA,UAAA;EACA,WAAA;EACA,kBAAA;EACA,wBAAA;EACA,uBAAA;EACA,qCAAA;EACA,oCAAA;ExBwyGD;AwBpyGD;;EAEE,oBAAA;ExBsyGD;AwBlyGD;EACE,YAAA;ExBoyGD;AwBhyGD;EACE,oBAAA;EACA,WAAA;EACA,SAAA;EACA,eAAA;EACA,eAAA;EACA,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,kBAAA;EACA,iBAAA;EACA,kBAAA;EACA,2BAAA;EACA,2BAAA;EACA,uCAAA;EACA,oBAAA;EnBuBA,qDAAA;EACQ,6CAAA;EmBtBR,sCAAA;UAAA,8BAAA;ExBmyGD;AwB9xGC;EACE,UAAA;EACA,YAAA;ExBgyGH;AwBzzGD;ECxBE,aAAA;EACA,eAAA;EACA,kBAAA;EACA,2BAAA;EzBo1GD;AwB/zGD;EAmCI,gBAAA;EACA,mBAAA;EACA,aAAA;EACA,qBAAA;EACA,yBAAA;EACA,gBAAA;EACA,qBAAA;ExB+xGH;AwBzxGC;;EAEE,uBAAA;EACA,gBAAA;EACA,2BAAA;ExB2xGH;AwBrxGC;;;EAGE,gBAAA;EACA,uBAAA;EACA,YAAA;EACA,2BAAA;ExBuxGH;AwB9wGC;;;EAGE,gBAAA;ExBgxGH;AwB5wGC;;EAEE,uBAAA;EACA,+BAAA;EACA,wBAAA;EE1GF,qEAAA;EF4GE,qBAAA;ExB8wGH;AwBzwGD;EAGI,gBAAA;ExBywGH;AwB5wGD;EAQI,YAAA;ExBuwGH;AwB/vGD;EACE,YAAA;EACA,UAAA;ExBiwGD;AwBzvGD;EACE,SAAA;EACA,aAAA;ExB2vGD;AwBvvGD;EACE,gBAAA;EACA,mBAAA;EACA,iBAAA;EACA,yBAAA;EACA,gBAAA;EACA,qBAAA;ExByvGD;AwBrvGD;EACE,iBAAA;EACA,SAAA;EACA,UAAA;EACA,WAAA;EACA,QAAA;EACA,cAAA;ExBuvGD;AwBnvGD;EACE,UAAA;EACA,YAAA;ExBqvGD;AwB7uGD;;EAII,eAAA;EACA,0BAAA;EACA,aAAA;ExB6uGH;AwBnvGD;;EAUI,WAAA;EACA,cAAA;EACA,oBAAA;ExB6uGH;AwBxtGD;EAXE;IAnEA,YAAA;IACA,UAAA;IxB0yGC;EwBxuGD;IAzDA,SAAA;IACA,aAAA;IxBoyGC;EACF;A2Bn7GD;;EAEE,oBAAA;EACA,uBAAA;EACA,wBAAA;E3Bq7GD;A2Bz7GD;;EAMI,oBAAA;EACA,aAAA;E3Bu7GH;A2Br7GG;;;;;;;;EAIE,YAAA;E3B27GL;A2Br7GD;;;;EAKI,mBAAA;E3Bs7GH;A2Bj7GD;EACE,mBAAA;E3Bm7GD;A2Bp7GD;;EAMI,aAAA;E3Bk7GH;A2Bx7GD;;;EAWI,kBAAA;E3Bk7GH;A2B96GD;EACE,kBAAA;E3Bg7GD;A2B56GD;EACE,gBAAA;E3B86GD;A2B76GC;ECjDA,+BAAA;EACG,4BAAA;E5Bi+GJ;A2B56GD;;EC9CE,8BAAA;EACG,2BAAA;E5B89GJ;A2B36GD;EACE,aAAA;E3B66GD;A2B36GD;EACE,kBAAA;E3B66GD;A2B36GD;;EClEE,+BAAA;EACG,4BAAA;E5Bi/GJ;A2B16GD;EChEE,8BAAA;EACG,2BAAA;E5B6+GJ;A2Bz6GD;;EAEE,YAAA;E3B26GD;A2B15GD;EACE,mBAAA;EACA,oBAAA;E3B45GD;A2B15GD;EACE,oBAAA;EACA,qBAAA;E3B45GD;A2Bv5GD;EtB9CE,0DAAA;EACQ,kDAAA;ELw8GT;A2Bv5GC;EtBlDA,0BAAA;EACQ,kBAAA;EL48GT;A2Bp5GD;EACE,gBAAA;E3Bs5GD;A2Bn5GD;EACE,yBAAA;EACA,wBAAA;E3Bq5GD;A2Bl5GD;EACE,yBAAA;E3Bo5GD;A2B74GD;;;EAII,gBAAA;EACA,aAAA;EACA,aAAA;EACA,iBAAA;E3B84GH;A2Br5GD;EAcM,aAAA;E3B04GL;A2Bx5GD;;;;EAsBI,kBAAA;EACA,gBAAA;E3Bw4GH;A2Bn4GC;EACE,kBAAA;E3Bq4GH;A2Bn4GC;EACE,8BAAA;ECnKF,+BAAA;EACC,8BAAA;E5ByiHF;A2Bp4GC;EACE,gCAAA;EC/KF,4BAAA;EACC,2BAAA;E5BsjHF;A2Bp4GD;EACE,kBAAA;E3Bs4GD;A2Bp4GD;;EC9KE,+BAAA;EACC,8BAAA;E5BsjHF;A2Bn4GD;EC5LE,4BAAA;EACC,2BAAA;E5BkkHF;A2B/3GD;EACE,gBAAA;EACA,aAAA;EACA,qBAAA;EACA,2BAAA;E3Bi4GD;A2Br4GD;;EAOI,aAAA;EACA,qBAAA;EACA,WAAA;E3Bk4GH;A2B34GD;EAYI,aAAA;E3Bk4GH;A2B94GD;EAgBI,YAAA;E3Bi4GH;A2Bh3GD;;;;EAKM,oBAAA;EACA,wBAAA;EACA,sBAAA;E3Bi3GL;A6B1lHD;EACE,oBAAA;EACA,gBAAA;EACA,2BAAA;E7B4lHD;A6BzlHC;EACE,aAAA;EACA,iBAAA;EACA,kBAAA;E7B2lHH;A6BpmHD;EAeI,oBAAA;EACA,YAAA;EAKA,aAAA;EAEA,aAAA;EACA,kBAAA;E7BmlHH;A6B1kHD;;;EV8BE,cAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,oBAAA;EnBijHD;AmB/iHC;;;EACE,cAAA;EACA,mBAAA;EnBmjHH;AmBhjHC;;;;;;EAEE,cAAA;EnBsjHH;A6B5lHD;;;EVyBE,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;EnBwkHD;AmBtkHC;;;EACE,cAAA;EACA,mBAAA;EnB0kHH;AmBvkHC;;;;;;EAEE,cAAA;EnB6kHH;A6B1mHD;;;EAGE,qBAAA;E7B4mHD;A6B1mHC;;;EACE,kBAAA;E7B8mHH;A6B1mHD;;EAEE,WAAA;EACA,qBAAA;EACA,wBAAA;E7B4mHD;A6BvmHD;EACE,mBAAA;EACA,iBAAA;EACA,qBAAA;EACA,gBAAA;EACA,gBAAA;EACA,oBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;E7BymHD;A6BtmHC;EACE,mBAAA;EACA,iBAAA;EACA,oBAAA;E7BwmHH;A6BtmHC;EACE,oBAAA;EACA,iBAAA;EACA,oBAAA;E7BwmHH;A6B5nHD;;EA0BI,eAAA;E7BsmHH;A6BjmHD;;;;;;;EDhGE,+BAAA;EACG,4BAAA;E5B0sHJ;A6BlmHD;EACE,iBAAA;E7BomHD;A6BlmHD;;;;;;;EDpGE,8BAAA;EACG,2BAAA;E5B+sHJ;A6BnmHD;EACE,gBAAA;E7BqmHD;A6BhmHD;EACE,oBAAA;EAGA,cAAA;EACA,qBAAA;E7BgmHD;A6BrmHD;EAUI,oBAAA;E7B8lHH;A6BxmHD;EAYM,mBAAA;E7B+lHL;A6B5lHG;;;EAGE,YAAA;E7B8lHL;A6BzlHC;;EAGI,oBAAA;E7B0lHL;A6BvlHC;;EAGI,mBAAA;E7BwlHL;A8BlvHD;EACE,kBAAA;EACA,iBAAA;EACA,kBAAA;E9BovHD;A8BvvHD;EAOI,oBAAA;EACA,gBAAA;E9BmvHH;A8B3vHD;EAWM,oBAAA;EACA,gBAAA;EACA,oBAAA;E9BmvHL;A8BlvHK;;EAEE,uBAAA;EACA,2BAAA;E9BovHP;A8B/uHG;EACE,gBAAA;E9BivHL;A8B/uHK;;EAEE,gBAAA;EACA,uBAAA;EACA,+BAAA;EACA,qBAAA;E9BivHP;A8B1uHG;;;EAGE,2BAAA;EACA,uBAAA;E9B4uHL;A8BrxHD;ELHE,aAAA;EACA,eAAA;EACA,kBAAA;EACA,2BAAA;EzB2xHD;A8B3xHD;EA0DI,iBAAA;E9BouHH;A8B3tHD;EACE,kCAAA;E9B6tHD;A8B9tHD;EAGI,aAAA;EAEA,qBAAA;E9B6tHH;A8BluHD;EASM,mBAAA;EACA,yBAAA;EACA,+BAAA;EACA,4BAAA;E9B4tHL;A8B3tHK;EACE,uCAAA;E9B6tHP;A8BvtHK;;;EAGE,gBAAA;EACA,2BAAA;EACA,2BAAA;EACA,kCAAA;EACA,iBAAA;E9BytHP;A8BptHC;EAqDA,aAAA;EA8BA,kBAAA;E9BqoHD;A8BxtHC;EAwDE,aAAA;E9BmqHH;A8B3tHC;EA0DI,oBAAA;EACA,oBAAA;E9BoqHL;A8B/tHC;EAgEE,WAAA;EACA,YAAA;E9BkqHH;A8BtpHD;EAAA;IAPM,qBAAA;IACA,WAAA;I9BiqHH;E8B3pHH;IAJQ,kBAAA;I9BkqHL;EACF;A8B5uHC;EAuFE,iBAAA;EACA,oBAAA;E9BwpHH;A8BhvHC;;;EA8FE,2BAAA;E9BupHH;A8BzoHD;EAAA;IATM,kCAAA;IACA,4BAAA;I9BspHH;E8B9oHH;;;IAHM,8BAAA;I9BspHH;EACF;A8BvvHD;EAEI,aAAA;E9BwvHH;A8B1vHD;EAMM,oBAAA;E9BuvHL;A8B7vHD;EASM,kBAAA;E9BuvHL;A8BlvHK;;;EAGE,gBAAA;EACA,2BAAA;E9BovHP;A8B5uHD;EAEI,aAAA;E9B6uHH;A8B/uHD;EAIM,iBAAA;EACA,gBAAA;E9B8uHL;A8BluHD;EACE,aAAA;E9BouHD;A8BruHD;EAII,aAAA;E9BouHH;A8BxuHD;EAMM,oBAAA;EACA,oBAAA;E9BquHL;A8B5uHD;EAYI,WAAA;EACA,YAAA;E9BmuHH;A8BvtHD;EAAA;IAPM,qBAAA;IACA,WAAA;I9BkuHH;E8B5tHH;IAJQ,kBAAA;I9BmuHL;EACF;A8B3tHD;EACE,kBAAA;E9B6tHD;A8B9tHD;EAKI,iBAAA;EACA,oBAAA;E9B4tHH;A8BluHD;;;EAYI,2BAAA;E9B2tHH;A8B7sHD;EAAA;IATM,kCAAA;IACA,4BAAA;I9B0tHH;E8BltHH;;;IAHM,8BAAA;I9B0tHH;EACF;A8BjtHD;EAEI,eAAA;EACA,oBAAA;E9BktHH;A8BrtHD;EAMI,gBAAA;EACA,qBAAA;E9BktHH;A8BzsHD;EAEE,kBAAA;EF7OA,4BAAA;EACC,2BAAA;E5Bw7HF;A+Bl7HD;EACE,oBAAA;EACA,kBAAA;EACA,qBAAA;EACA,+BAAA;E/Bo7HD;A+B56HD;EAAA;IAFI,oBAAA;I/Bk7HD;EACF;A+Bn6HD;EAAA;IAFI,aAAA;I/By6HD;EACF;A+B35HD;EACE,qBAAA;EACA,qBAAA;EACA,oBAAA;EACA,mCAAA;EACA,4DAAA;UAAA,oDAAA;EAEA,mCAAA;E/B45HD;A+B15HC;EACE,kBAAA;E/B45HH;A+B/3HD;EAAA;IAzBI,aAAA;IACA,eAAA;IACA,0BAAA;YAAA,kBAAA;I/B45HD;E+B15HC;IACE,2BAAA;IACA,gCAAA;IACA,yBAAA;IACA,mBAAA;IACA,8BAAA;I/B45HH;E+Bz5HC;IACE,qBAAA;I/B25HH;E+Bt5HC;;;IAGE,iBAAA;IACA,kBAAA;I/Bw5HH;EACF;A+Bp5HD;;EAGI,mBAAA;E/Bq5HH;A+Bh5HC;EAAA;;IAFI,mBAAA;I/Bu5HH;EACF;A+B94HD;;;;EAII,qBAAA;EACA,oBAAA;E/Bg5HH;A+B14HC;EAAA;;;;IAHI,iBAAA;IACA,gBAAA;I/Bo5HH;EACF;A+Bx4HD;EACE,eAAA;EACA,uBAAA;E/B04HD;A+Br4HD;EAAA;IAFI,kBAAA;I/B24HD;EACF;A+Bv4HD;;EAEE,iBAAA;EACA,UAAA;EACA,SAAA;EACA,eAAA;E/By4HD;A+Bn4HD;EAAA;;IAFI,kBAAA;I/B04HD;EACF;A+Bx4HD;EACE,QAAA;EACA,uBAAA;E/B04HD;A+Bx4HD;EACE,WAAA;EACA,kBAAA;EACA,uBAAA;E/B04HD;A+Bp4HD;EACE,aAAA;EACA,oBAAA;EACA,iBAAA;EACA,mBAAA;EACA,cAAA;E/Bs4HD;A+Bp4HC;;EAEE,uBAAA;E/Bs4HH;A+B/4HD;EAaI,gBAAA;E/Bq4HH;A+B53HD;EALI;;IAEE,oBAAA;I/Bo4HH;EACF;A+B13HD;EACE,oBAAA;EACA,cAAA;EACA,oBAAA;EACA,mBAAA;EC/LA,iBAAA;EACA,oBAAA;EDgMA,+BAAA;EACA,wBAAA;EACA,+BAAA;EACA,oBAAA;E/B63HD;A+Bz3HC;EACE,YAAA;E/B23HH;A+Bz4HD;EAmBI,gBAAA;EACA,aAAA;EACA,aAAA;EACA,oBAAA;E/By3HH;A+B/4HD;EAyBI,iBAAA;E/By3HH;A+Bn3HD;EAAA;IAFI,eAAA;I/By3HD;EACF;A+Bh3HD;EACE,qBAAA;E/Bk3HD;A+Bn3HD;EAII,mBAAA;EACA,sBAAA;EACA,mBAAA;E/Bk3HH;A+Bt1HC;EAAA;IAtBI,kBAAA;IACA,aAAA;IACA,aAAA;IACA,eAAA;IACA,+BAAA;IACA,WAAA;IACA,0BAAA;YAAA,kBAAA;I/Bg3HH;E+Bh2HD;;IAbM,4BAAA;I/Bi3HL;E+Bp2HD;IAVM,mBAAA;I/Bi3HL;E+Bh3HK;;IAEE,wBAAA;I/Bk3HP;EACF;A+Bh2HD;EAAA;IAXI,aAAA;IACA,WAAA;I/B+2HD;E+Br2HH;IAPM,aAAA;I/B+2HH;E+Bx2HH;IALQ,mBAAA;IACA,sBAAA;I/Bg3HL;EACF;A+Br2HD;EACE,oBAAA;EACA,qBAAA;EACA,oBAAA;EACA,mCAAA;EACA,sCAAA;E1B/NA,8FAAA;EACQ,sFAAA;E2B/DR,iBAAA;EACA,oBAAA;EhCuoID;AkB9pHD;EAAA;IA9DM,uBAAA;IACA,kBAAA;IACA,wBAAA;IlBguHH;EkBpqHH;IAvDM,uBAAA;IACA,aAAA;IACA,wBAAA;IlB8tHH;EkBzqHH;IAhDM,uBAAA;IlB4tHH;EkB5qHH;IA5CM,uBAAA;IACA,wBAAA;IlB2tHH;EkBhrHH;;;IAtCQ,aAAA;IlB2tHL;EkBrrHH;IAhCM,aAAA;IlBwtHH;EkBxrHH;IA5BM,kBAAA;IACA,wBAAA;IlButHH;EkB5rHH;;IApBM,uBAAA;IACA,eAAA;IACA,kBAAA;IACA,wBAAA;IlBotHH;EkBnsHH;;IAdQ,iBAAA;IlBqtHL;EkBvsHH;;IATM,oBAAA;IACA,gBAAA;IlBotHH;EkB5sHH;IAHM,QAAA;IlBktHH;EACF;A+B94HC;EAAA;IANI,oBAAA;I/Bw5HH;E+Bt5HG;IACE,kBAAA;I/Bw5HL;EACF;A+Bv4HD;EAAA;IARI,aAAA;IACA,WAAA;IACA,gBAAA;IACA,iBAAA;IACA,gBAAA;IACA,mBAAA;I1B1PF,0BAAA;IACQ,kBAAA;IL8oIP;EACF;A+B74HD;EACE,eAAA;EHrUA,4BAAA;EACC,2BAAA;E5BqtIF;A+B74HD;EACE,kBAAA;EH1UA,8BAAA;EACC,6BAAA;EAOD,+BAAA;EACC,8BAAA;E5BotIF;A+Bz4HD;ECjVE,iBAAA;EACA,oBAAA;EhC6tID;A+B14HC;ECpVA,kBAAA;EACA,qBAAA;EhCiuID;A+B34HC;ECvVA,kBAAA;EACA,qBAAA;EhCquID;A+Br4HD;ECjWE,kBAAA;EACA,qBAAA;EhCyuID;A+Bj4HD;EAAA;IAJI,aAAA;IACA,mBAAA;IACA,oBAAA;I/By4HD;EACF;A+B52HD;EAhBE;IEzWA,wBAAA;IjCyuIC;E+B/3HD;IE7WA,yBAAA;IF+WE,qBAAA;I/Bi4HD;E+Bn4HD;IAKI,iBAAA;I/Bi4HH;EACF;A+Bx3HD;EACE,2BAAA;EACA,uBAAA;E/B03HD;A+B53HD;EAKI,gBAAA;E/B03HH;A+Bz3HG;;EAEE,gBAAA;EACA,+BAAA;E/B23HL;A+Bp4HD;EAcI,gBAAA;E/By3HH;A+Bv4HD;EAmBM,gBAAA;E/Bu3HL;A+Br3HK;;EAEE,gBAAA;EACA,+BAAA;E/Bu3HP;A+Bn3HK;;;EAGE,gBAAA;EACA,2BAAA;E/Bq3HP;A+Bj3HK;;;EAGE,gBAAA;EACA,+BAAA;E/Bm3HP;A+B35HD;EA8CI,uBAAA;E/Bg3HH;A+B/2HG;;EAEE,2BAAA;E/Bi3HL;A+Bl6HD;EAoDM,2BAAA;E/Bi3HL;A+Br6HD;;EA0DI,uBAAA;E/B+2HH;A+Bx2HK;;;EAGE,2BAAA;EACA,gBAAA;E/B02HP;A+Bz0HC;EAAA;IAzBQ,gBAAA;I/Bs2HP;E+Br2HO;;IAEE,gBAAA;IACA,+BAAA;I/Bu2HT;E+Bn2HO;;;IAGE,gBAAA;IACA,2BAAA;I/Bq2HT;E+Bj2HO;;;IAGE,gBAAA;IACA,+BAAA;I/Bm2HT;EACF;A+Br8HD;EA8GI,gBAAA;E/B01HH;A+Bz1HG;EACE,gBAAA;E/B21HL;A+B38HD;EAqHI,gBAAA;E/By1HH;A+Bx1HG;;EAEE,gBAAA;E/B01HL;A+Bt1HK;;;;EAEE,gBAAA;E/B01HP;A+Bl1HD;EACE,2BAAA;EACA,uBAAA;E/Bo1HD;A+Bt1HD;EAKI,gBAAA;E/Bo1HH;A+Bn1HG;;EAEE,gBAAA;EACA,+BAAA;E/Bq1HL;A+B91HD;EAcI,gBAAA;E/Bm1HH;A+Bj2HD;EAmBM,gBAAA;E/Bi1HL;A+B/0HK;;EAEE,gBAAA;EACA,+BAAA;E/Bi1HP;A+B70HK;;;EAGE,gBAAA;EACA,2BAAA;E/B+0HP;A+B30HK;;;EAGE,gBAAA;EACA,+BAAA;E/B60HP;A+Br3HD;EA+CI,uBAAA;E/By0HH;A+Bx0HG;;EAEE,2BAAA;E/B00HL;A+B53HD;EAqDM,2BAAA;E/B00HL;A+B/3HD;;EA2DI,uBAAA;E/Bw0HH;A+Bl0HK;;;EAGE,2BAAA;EACA,gBAAA;E/Bo0HP;A+B7xHC;EAAA;IA/BQ,uBAAA;I/Bg0HP;E+BjyHD;IA5BQ,2BAAA;I/Bg0HP;E+BpyHD;IAzBQ,gBAAA;I/Bg0HP;E+B/zHO;;IAEE,gBAAA;IACA,+BAAA;I/Bi0HT;E+B7zHO;;;IAGE,gBAAA;IACA,2BAAA;I/B+zHT;E+B3zHO;;;IAGE,gBAAA;IACA,+BAAA;I/B6zHT;EACF;A+Br6HD;EA+GI,gBAAA;E/ByzHH;A+BxzHG;EACE,gBAAA;E/B0zHL;A+B36HD;EAsHI,gBAAA;E/BwzHH;A+BvzHG;;EAEE,gBAAA;E/ByzHL;A+BrzHK;;;;EAEE,gBAAA;E/ByzHP;AkCp8ID;EACE,mBAAA;EACA,qBAAA;EACA,kBAAA;EACA,2BAAA;EACA,oBAAA;ElCs8ID;AkC38ID;EAQI,uBAAA;ElCs8IH;AkC98ID;EAWM,mBAAA;EACA,gBAAA;EACA,gBAAA;ElCs8IL;AkCn9ID;EAkBI,gBAAA;ElCo8IH;AmCx9ID;EACE,uBAAA;EACA,iBAAA;EACA,gBAAA;EACA,oBAAA;EnC09ID;AmC99ID;EAOI,iBAAA;EnC09IH;AmCj+ID;;EAUM,oBAAA;EACA,aAAA;EACA,mBAAA;EACA,yBAAA;EACA,uBAAA;EACA,gBAAA;EACA,2BAAA;EACA,2BAAA;EACA,mBAAA;EnC29IL;AmCz9IG;;EAGI,gBAAA;EPXN,gCAAA;EACG,6BAAA;E5Bs+IJ;AmCx9IG;;EPvBF,iCAAA;EACG,8BAAA;E5Bm/IJ;AmCn9IG;;;;EAEE,gBAAA;EACA,2BAAA;EACA,uBAAA;EnCu9IL;AmCj9IG;;;;;;EAGE,YAAA;EACA,gBAAA;EACA,2BAAA;EACA,uBAAA;EACA,iBAAA;EnCs9IL;AmC5gJD;;;;;;EAiEM,gBAAA;EACA,2BAAA;EACA,uBAAA;EACA,qBAAA;EnCm9IL;AmC18ID;;EC1EM,oBAAA;EACA,iBAAA;EpCwhJL;AoCthJG;;ERMF,gCAAA;EACG,6BAAA;E5BohJJ;AoCrhJG;;ERRF,iCAAA;EACG,8BAAA;E5BiiJJ;AmCp9ID;;EC/EM,mBAAA;EACA,iBAAA;EpCuiJL;AoCriJG;;ERMF,gCAAA;EACG,6BAAA;E5BmiJJ;AoCpiJG;;ERRF,iCAAA;EACG,8BAAA;E5BgjJJ;AqCnjJD;EACE,iBAAA;EACA,gBAAA;EACA,kBAAA;EACA,oBAAA;ErCqjJD;AqCzjJD;EAOI,iBAAA;ErCqjJH;AqC5jJD;;EAUM,uBAAA;EACA,mBAAA;EACA,2BAAA;EACA,2BAAA;EACA,qBAAA;ErCsjJL;AqCpkJD;;EAmBM,uBAAA;EACA,2BAAA;ErCqjJL;AqCzkJD;;EA2BM,cAAA;ErCkjJL;AqC7kJD;;EAkCM,aAAA;ErC+iJL;AqCjlJD;;;;EA2CM,gBAAA;EACA,2BAAA;EACA,qBAAA;ErC4iJL;AsC1lJD;EACE,iBAAA;EACA,yBAAA;EACA,gBAAA;EACA,mBAAA;EACA,gBAAA;EACA,gBAAA;EACA,oBAAA;EACA,qBAAA;EACA,0BAAA;EACA,sBAAA;EtC4lJD;AsCxlJG;;EAEE,gBAAA;EACA,uBAAA;EACA,iBAAA;EtC0lJL;AsCrlJC;EACE,eAAA;EtCulJH;AsCnlJC;EACE,oBAAA;EACA,WAAA;EtCqlJH;AsC9kJD;ECtCE,2BAAA;EvCunJD;AuCpnJG;;EAEE,2BAAA;EvCsnJL;AsCjlJD;EC1CE,2BAAA;EvC8nJD;AuC3nJG;;EAEE,2BAAA;EvC6nJL;AsCplJD;EC9CE,2BAAA;EvCqoJD;AuCloJG;;EAEE,2BAAA;EvCooJL;AsCvlJD;EClDE,2BAAA;EvC4oJD;AuCzoJG;;EAEE,2BAAA;EvC2oJL;AsC1lJD;ECtDE,2BAAA;EvCmpJD;AuChpJG;;EAEE,2BAAA;EvCkpJL;AsC7lJD;EC1DE,2BAAA;EvC0pJD;AuCvpJG;;EAEE,2BAAA;EvCypJL;AwC3pJD;EACE,uBAAA;EACA,iBAAA;EACA,kBAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,gBAAA;EACA,0BAAA;EACA,qBAAA;EACA,oBAAA;EACA,2BAAA;EACA,qBAAA;ExC6pJD;AwC1pJC;EACE,eAAA;ExC4pJH;AwCxpJC;EACE,oBAAA;EACA,WAAA;ExC0pJH;AwCvpJC;EACE,QAAA;EACA,kBAAA;ExCypJH;AwCppJG;;EAEE,gBAAA;EACA,uBAAA;EACA,iBAAA;ExCspJL;AwCjpJC;;EAEE,gBAAA;EACA,2BAAA;ExCmpJH;AwChpJC;EACE,cAAA;ExCkpJH;AwC/oJC;EACE,mBAAA;ExCipJH;AwC9oJC;EACE,kBAAA;ExCgpJH;AyCzsJD;EACE,oBAAA;EACA,qBAAA;EACA,gBAAA;EACA,2BAAA;EzC2sJD;AyC/sJD;;EAQI,gBAAA;EzC2sJH;AyCntJD;EAYI,qBAAA;EACA,iBAAA;EACA,kBAAA;EzC0sJH;AyCxtJD;EAkBI,2BAAA;EzCysJH;AyCtsJC;;EAEE,oBAAA;EzCwsJH;AyC/tJD;EA2BI,iBAAA;EzCusJH;AyCtrJD;EAAA;IAbI,iBAAA;IzCusJD;EyCrsJC;;IAEE,oBAAA;IACA,qBAAA;IzCusJH;EyC/rJH;;IAHM,iBAAA;IzCssJH;EACF;A0C/uJD;EACE,gBAAA;EACA,cAAA;EACA,qBAAA;EACA,yBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;ErCiLA,6CAAA;EACK,wCAAA;EACG,qCAAA;ELikJT;A0C3vJD;;EAaI,mBAAA;EACA,oBAAA;E1CkvJH;A0C9uJC;;;EAGE,uBAAA;E1CgvJH;A0CrwJD;EA0BI,cAAA;EACA,gBAAA;E1C8uJH;A2CvwJD;EACE,eAAA;EACA,qBAAA;EACA,+BAAA;EACA,oBAAA;E3CywJD;A2C7wJD;EAQI,eAAA;EAEA,gBAAA;E3CuwJH;A2CjxJD;EAeI,mBAAA;E3CqwJH;A2CpxJD;;EAqBI,kBAAA;E3CmwJH;A2CxxJD;EAyBI,iBAAA;E3CkwJH;A2C1vJD;;EAEE,qBAAA;E3C4vJD;A2C9vJD;;EAMI,oBAAA;EACA,WAAA;EACA,cAAA;EACA,gBAAA;E3C4vJH;A2CpvJD;ECvDE,2BAAA;EACA,uBAAA;EACA,gBAAA;E5C8yJD;A2CzvJD;EClDI,2BAAA;E5C8yJH;A2C5vJD;EC/CI,gBAAA;E5C8yJH;A2C3vJD;EC3DE,2BAAA;EACA,uBAAA;EACA,gBAAA;E5CyzJD;A2ChwJD;ECtDI,2BAAA;E5CyzJH;A2CnwJD;ECnDI,gBAAA;E5CyzJH;A2ClwJD;EC/DE,2BAAA;EACA,uBAAA;EACA,gBAAA;E5Co0JD;A2CvwJD;EC1DI,2BAAA;E5Co0JH;A2C1wJD;ECvDI,gBAAA;E5Co0JH;A2CzwJD;ECnEE,2BAAA;EACA,uBAAA;EACA,gBAAA;E5C+0JD;A2C9wJD;EC9DI,2BAAA;E5C+0JH;A2CjxJD;EC3DI,gBAAA;E5C+0JH;A6Cj1JD;EACE;IAAQ,6BAAA;I7Co1JP;E6Cn1JD;IAAQ,0BAAA;I7Cs1JP;EACF;A6Cn1JD;EACE;IAAQ,6BAAA;I7Cs1JP;E6Cr1JD;IAAQ,0BAAA;I7Cw1JP;EACF;A6C31JD;EACE;IAAQ,6BAAA;I7Cs1JP;E6Cr1JD;IAAQ,0BAAA;I7Cw1JP;EACF;A6Cj1JD;EACE,kBAAA;EACA,cAAA;EACA,qBAAA;EACA,2BAAA;EACA,oBAAA;ExCsCA,wDAAA;EACQ,gDAAA;EL8yJT;A6Ch1JD;EACE,aAAA;EACA,WAAA;EACA,cAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,oBAAA;EACA,2BAAA;ExCyBA,wDAAA;EACQ,gDAAA;EAyHR,qCAAA;EACK,gCAAA;EACG,6BAAA;ELksJT;A6C70JD;;ECCI,+MAAA;EACA,0MAAA;EACA,uMAAA;EDAF,oCAAA;UAAA,4BAAA;E7Ci1JD;A6C10JD;;ExC5CE,4DAAA;EACK,uDAAA;EACG,oDAAA;EL03JT;A6Cv0JD;EErEE,2BAAA;E/C+4JD;A+C54JC;EDgDE,+MAAA;EACA,0MAAA;EACA,uMAAA;E9C+1JH;A6C30JD;EEzEE,2BAAA;E/Cu5JD;A+Cp5JC;EDgDE,+MAAA;EACA,0MAAA;EACA,uMAAA;E9Cu2JH;A6C/0JD;EE7EE,2BAAA;E/C+5JD;A+C55JC;EDgDE,+MAAA;EACA,0MAAA;EACA,uMAAA;E9C+2JH;A6Cn1JD;EEjFE,2BAAA;E/Cu6JD;A+Cp6JC;EDgDE,+MAAA;EACA,0MAAA;EACA,uMAAA;E9Cu3JH;AgD/6JD;EAEE,kBAAA;EhDg7JD;AgD96JC;EACE,eAAA;EhDg7JH;AgD56JD;;EAEE,SAAA;EACA,kBAAA;EhD86JD;AgD36JD;EACE,gBAAA;EhD66JD;AgD16JD;EACE,gBAAA;EhD46JD;AgDz6JD;;EAEE,oBAAA;EhD26JD;AgDx6JD;;EAEE,qBAAA;EhD06JD;AgDv6JD;;;EAGE,qBAAA;EACA,qBAAA;EhDy6JD;AgDt6JD;EACE,wBAAA;EhDw6JD;AgDr6JD;EACE,wBAAA;EhDu6JD;AgDn6JD;EACE,eAAA;EACA,oBAAA;EhDq6JD;AgD/5JD;EACE,iBAAA;EACA,kBAAA;EhDi6JD;AiDn9JD;EAEE,qBAAA;EACA,iBAAA;EjDo9JD;AiD58JD;EACE,oBAAA;EACA,gBAAA;EACA,oBAAA;EAEA,qBAAA;EACA,2BAAA;EACA,2BAAA;EjD68JD;AiD18JC;ErB3BA,8BAAA;EACC,6BAAA;E5Bw+JF;AiD38JC;EACE,kBAAA;ErBvBF,iCAAA;EACC,gCAAA;E5Bq+JF;AiDp8JD;EACE,gBAAA;EjDs8JD;AiDv8JD;EAII,gBAAA;EjDs8JH;AiDl8JC;;EAEE,uBAAA;EACA,gBAAA;EACA,2BAAA;EjDo8JH;AiD97JC;;;EAGE,2BAAA;EACA,gBAAA;EACA,qBAAA;EjDg8JH;AiDr8JC;;;EASI,gBAAA;EjDi8JL;AiD18JC;;;EAYI,gBAAA;EjDm8JL;AiD97JC;;;EAGE,YAAA;EACA,gBAAA;EACA,2BAAA;EACA,uBAAA;EjDg8JH;AiDt8JC;;;;;;;;;EAYI,gBAAA;EjDq8JL;AiDj9JC;;;EAeI,gBAAA;EjDu8JL;AkDniKC;EACE,gBAAA;EACA,2BAAA;ElDqiKH;AkDniKG;EACE,gBAAA;ElDqiKL;AkDtiKG;EAII,gBAAA;ElDqiKP;AkDliKK;;EAEE,gBAAA;EACA,2BAAA;ElDoiKP;AkDliKK;;;EAGE,aAAA;EACA,2BAAA;EACA,uBAAA;ElDoiKP;AkDzjKC;EACE,gBAAA;EACA,2BAAA;ElD2jKH;AkDzjKG;EACE,gBAAA;ElD2jKL;AkD5jKG;EAII,gBAAA;ElD2jKP;AkDxjKK;;EAEE,gBAAA;EACA,2BAAA;ElD0jKP;AkDxjKK;;;EAGE,aAAA;EACA,2BAAA;EACA,uBAAA;ElD0jKP;AkD/kKC;EACE,gBAAA;EACA,2BAAA;ElDilKH;AkD/kKG;EACE,gBAAA;ElDilKL;AkDllKG;EAII,gBAAA;ElDilKP;AkD9kKK;;EAEE,gBAAA;EACA,2BAAA;ElDglKP;AkD9kKK;;;EAGE,aAAA;EACA,2BAAA;EACA,uBAAA;ElDglKP;AkDrmKC;EACE,gBAAA;EACA,2BAAA;ElDumKH;AkDrmKG;EACE,gBAAA;ElDumKL;AkDxmKG;EAII,gBAAA;ElDumKP;AkDpmKK;;EAEE,gBAAA;EACA,2BAAA;ElDsmKP;AkDpmKK;;;EAGE,aAAA;EACA,2BAAA;EACA,uBAAA;ElDsmKP;AiD1gKD;EACE,eAAA;EACA,oBAAA;EjD4gKD;AiD1gKD;EACE,kBAAA;EACA,kBAAA;EjD4gKD;AmDhoKD;EACE,qBAAA;EACA,2BAAA;EACA,+BAAA;EACA,oBAAA;E9C0DA,mDAAA;EACQ,2CAAA;ELykKT;AmD/nKD;EACE,eAAA;EnDioKD;AmD5nKD;EACE,oBAAA;EACA,sCAAA;EvBpBA,8BAAA;EACC,6BAAA;E5BmpKF;AmDloKD;EAMI,gBAAA;EnD+nKH;AmD1nKD;EACE,eAAA;EACA,kBAAA;EACA,iBAAA;EACA,gBAAA;EnD4nKD;AmDhoKD;;;;;EAWI,gBAAA;EnD4nKH;AmDvnKD;EACE,oBAAA;EACA,2BAAA;EACA,+BAAA;EvBxCA,iCAAA;EACC,gCAAA;E5BkqKF;AmDjnKD;;EAGI,kBAAA;EnDknKH;AmDrnKD;;EAMM,qBAAA;EACA,kBAAA;EnDmnKL;AmD/mKG;;EAEI,eAAA;EvBvEN,8BAAA;EACC,6BAAA;E5ByrKF;AmD9mKG;;EAEI,kBAAA;EvBtEN,iCAAA;EACC,gCAAA;E5BurKF;AmD3mKD;EAEI,qBAAA;EnD4mKH;AmDzmKD;EACE,qBAAA;EnD2mKD;AmDnmKD;;;EAII,kBAAA;EnDomKH;AmDxmKD;;;EAOM,oBAAA;EACA,qBAAA;EnDsmKL;AmD9mKD;;EvBnGE,8BAAA;EACC,6BAAA;E5BqtKF;AmDnnKD;;;;EAmBQ,6BAAA;EACA,8BAAA;EnDsmKP;AmD1nKD;;;;;;;;EAwBU,6BAAA;EnD4mKT;AmDpoKD;;;;;;;;EA4BU,8BAAA;EnDknKT;AmD9oKD;;EvB3FE,iCAAA;EACC,gCAAA;E5B6uKF;AmDnpKD;;;;EAyCQ,gCAAA;EACA,iCAAA;EnDgnKP;AmD1pKD;;;;;;;;EA8CU,gCAAA;EnDsnKT;AmDpqKD;;;;;;;;EAkDU,iCAAA;EnD4nKT;AmD9qKD;;;;EA2DI,+BAAA;EnDynKH;AmDprKD;;EA+DI,eAAA;EnDynKH;AmDxrKD;;EAmEI,WAAA;EnDynKH;AmD5rKD;;;;;;;;;;;;EA0EU,gBAAA;EnDgoKT;AmD1sKD;;;;;;;;;;;;EA8EU,iBAAA;EnD0oKT;AmDxtKD;;;;;;;;EAuFU,kBAAA;EnD2oKT;AmDluKD;;;;;;;;EAgGU,kBAAA;EnD4oKT;AmD5uKD;EAsGI,WAAA;EACA,kBAAA;EnDyoKH;AmD/nKD;EACE,qBAAA;EnDioKD;AmDloKD;EAKI,kBAAA;EACA,oBAAA;EnDgoKH;AmDtoKD;EASM,iBAAA;EnDgoKL;AmDzoKD;EAcI,kBAAA;EnD8nKH;AmD5oKD;;EAkBM,+BAAA;EnD8nKL;AmDhpKD;EAuBI,eAAA;EnD4nKH;AmDnpKD;EAyBM,kCAAA;EnD6nKL;AmDtnKD;ECpPE,uBAAA;EpD62KD;AoD32KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpD62KH;AoDh3KC;EAMI,2BAAA;EpD62KL;AoDn3KC;EASI,gBAAA;EACA,2BAAA;EpD62KL;AoD12KC;EAEI,8BAAA;EpD22KL;AmDroKD;ECvPE,uBAAA;EpD+3KD;AoD73KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpD+3KH;AoDl4KC;EAMI,2BAAA;EpD+3KL;AoDr4KC;EASI,gBAAA;EACA,2BAAA;EpD+3KL;AoD53KC;EAEI,8BAAA;EpD63KL;AmDppKD;EC1PE,uBAAA;EpDi5KD;AoD/4KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDi5KH;AoDp5KC;EAMI,2BAAA;EpDi5KL;AoDv5KC;EASI,gBAAA;EACA,2BAAA;EpDi5KL;AoD94KC;EAEI,8BAAA;EpD+4KL;AmDnqKD;EC7PE,uBAAA;EpDm6KD;AoDj6KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDm6KH;AoDt6KC;EAMI,2BAAA;EpDm6KL;AoDz6KC;EASI,gBAAA;EACA,2BAAA;EpDm6KL;AoDh6KC;EAEI,8BAAA;EpDi6KL;AmDlrKD;EChQE,uBAAA;EpDq7KD;AoDn7KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDq7KH;AoDx7KC;EAMI,2BAAA;EpDq7KL;AoD37KC;EASI,gBAAA;EACA,2BAAA;EpDq7KL;AoDl7KC;EAEI,8BAAA;EpDm7KL;AmDjsKD;ECnQE,uBAAA;EpDu8KD;AoDr8KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDu8KH;AoD18KC;EAMI,2BAAA;EpDu8KL;AoD78KC;EASI,gBAAA;EACA,2BAAA;EpDu8KL;AoDp8KC;EAEI,8BAAA;EpDq8KL;AqDr9KD;EACE,oBAAA;EACA,gBAAA;EACA,WAAA;EACA,YAAA;EACA,kBAAA;ErDu9KD;AqD59KD;;;;;EAYI,oBAAA;EACA,QAAA;EACA,SAAA;EACA,WAAA;EACA,cAAA;EACA,aAAA;EACA,WAAA;ErDu9KH;AqDn9KC;EACE,wBAAA;ErDq9KH;AqDj9KC;EACE,qBAAA;ErDm9KH;AsD7+KD;EACE,kBAAA;EACA,eAAA;EACA,qBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;EjDwDA,yDAAA;EACQ,iDAAA;ELw7KT;AsDv/KD;EASI,oBAAA;EACA,mCAAA;EtDi/KH;AsD5+KD;EACE,eAAA;EACA,oBAAA;EtD8+KD;AsD5+KD;EACE,cAAA;EACA,oBAAA;EtD8+KD;AuDpgLD;EACE,cAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,gBAAA;EACA,8BAAA;EjCRA,cAAA;EAGA,2BAAA;EtB6gLD;AuDrgLC;;EAEE,gBAAA;EACA,uBAAA;EACA,iBAAA;EjCfF,cAAA;EAGA,2BAAA;EtBqhLD;AuDjgLC;EACE,YAAA;EACA,iBAAA;EACA,yBAAA;EACA,WAAA;EACA,0BAAA;EvDmgLH;AwDxhLD;EACE,kBAAA;ExD0hLD;AwDthLD;EACE,eAAA;EACA,kBAAA;EACA,iBAAA;EACA,QAAA;EACA,UAAA;EACA,WAAA;EACA,SAAA;EACA,eAAA;EACA,mCAAA;EAIA,YAAA;ExDqhLD;AwDlhLC;EnD+GA,uCAAA;EACI,mCAAA;EACC,kCAAA;EACG,+BAAA;EAkER,qDAAA;EAEK,2CAAA;EACG,qCAAA;ELq2KT;AwDxhLC;EnD2GA,oCAAA;EACI,gCAAA;EACC,+BAAA;EACG,4BAAA;ELg7KT;AwD5hLD;EACE,oBAAA;EACA,kBAAA;ExD8hLD;AwD1hLD;EACE,oBAAA;EACA,aAAA;EACA,cAAA;ExD4hLD;AwDxhLD;EACE,oBAAA;EACA,2BAAA;EACA,2BAAA;EACA,sCAAA;EACA,oBAAA;EnDaA,kDAAA;EACQ,0CAAA;EmDZR,sCAAA;UAAA,8BAAA;EAEA,YAAA;ExD0hLD;AwDthLD;EACE,oBAAA;EACA,QAAA;EACA,UAAA;EACA,SAAA;EACA,2BAAA;ExDwhLD;AwDthLC;ElCnEA,YAAA;EAGA,0BAAA;EtB0lLD;AwDzhLC;ElCpEA,cAAA;EAGA,2BAAA;EtB8lLD;AwDxhLD;EACE,eAAA;EACA,kCAAA;EACA,2BAAA;ExD0hLD;AwDvhLD;EACE,kBAAA;ExDyhLD;AwDrhLD;EACE,WAAA;EACA,yBAAA;ExDuhLD;AwDlhLD;EACE,oBAAA;EACA,eAAA;ExDohLD;AwDhhLD;EACE,eAAA;EACA,mBAAA;EACA,+BAAA;ExDkhLD;AwDrhLD;EAQI,kBAAA;EACA,kBAAA;ExDghLH;AwDzhLD;EAaI,mBAAA;ExD+gLH;AwD5hLD;EAiBI,gBAAA;ExD8gLH;AwDzgLD;EACE,oBAAA;EACA,cAAA;EACA,aAAA;EACA,cAAA;EACA,kBAAA;ExD2gLD;AwDz/KD;EAZE;IACE,cAAA;IACA,mBAAA;IxDwgLD;EwDtgLD;InDrEA,mDAAA;IACQ,2CAAA;IL8kLP;EwDrgLD;IAAY,cAAA;IxDwgLX;EACF;AwDngLD;EAFE;IAAY,cAAA;IxDygLX;EACF;AyDtpLD;EACE,oBAAA;EACA,eAAA;EACA,gBAAA;EACA,qBAAA;EAEA,6DAAA;EACA,iBAAA;EACA,qBAAA;EACA,kBAAA;EnCZA,YAAA;EAGA,0BAAA;EtBkqLD;AyDtpLC;EnCfA,cAAA;EAGA,2BAAA;EtBsqLD;AyDzpLC;EAAW,kBAAA;EAAmB,gBAAA;EzD6pL/B;AyD5pLC;EAAW,kBAAA;EAAmB,gBAAA;EzDgqL/B;AyD/pLC;EAAW,iBAAA;EAAmB,gBAAA;EzDmqL/B;AyDlqLC;EAAW,mBAAA;EAAmB,gBAAA;EzDsqL/B;AyDlqLD;EACE,kBAAA;EACA,kBAAA;EACA,gBAAA;EACA,oBAAA;EACA,uBAAA;EACA,2BAAA;EACA,oBAAA;EzDoqLD;AyDhqLD;EACE,oBAAA;EACA,UAAA;EACA,WAAA;EACA,2BAAA;EACA,qBAAA;EzDkqLD;AyD9pLC;EACE,WAAA;EACA,WAAA;EACA,mBAAA;EACA,yBAAA;EACA,2BAAA;EzDgqLH;AyD9pLC;EACE,WAAA;EACA,YAAA;EACA,qBAAA;EACA,yBAAA;EACA,2BAAA;EzDgqLH;AyD9pLC;EACE,WAAA;EACA,WAAA;EACA,qBAAA;EACA,yBAAA;EACA,2BAAA;EzDgqLH;AyD9pLC;EACE,UAAA;EACA,SAAA;EACA,kBAAA;EACA,6BAAA;EACA,6BAAA;EzDgqLH;AyD9pLC;EACE,UAAA;EACA,UAAA;EACA,kBAAA;EACA,6BAAA;EACA,4BAAA;EzDgqLH;AyD9pLC;EACE,QAAA;EACA,WAAA;EACA,mBAAA;EACA,yBAAA;EACA,8BAAA;EzDgqLH;AyD9pLC;EACE,QAAA;EACA,YAAA;EACA,kBAAA;EACA,yBAAA;EACA,8BAAA;EzDgqLH;AyD9pLC;EACE,QAAA;EACA,WAAA;EACA,kBAAA;EACA,yBAAA;EACA,8BAAA;EzDgqLH;A0D/vLD;EACE,oBAAA;EACA,QAAA;EACA,SAAA;EACA,eAAA;EACA,eAAA;EACA,kBAAA;EACA,cAAA;EAEA,6DAAA;EACA,iBAAA;EACA,qBAAA;EACA,yBAAA;EACA,kBAAA;EACA,2BAAA;EACA,sCAAA;UAAA,8BAAA;EACA,2BAAA;EACA,sCAAA;EACA,oBAAA;ErD6CA,mDAAA;EACQ,2CAAA;EqD1CR,qBAAA;E1D+vLD;A0D5vLC;EAAY,mBAAA;E1D+vLb;A0D9vLC;EAAY,mBAAA;E1DiwLb;A0DhwLC;EAAY,kBAAA;E1DmwLb;A0DlwLC;EAAY,oBAAA;E1DqwLb;A0DlwLD;EACE,WAAA;EACA,mBAAA;EACA,iBAAA;EACA,2BAAA;EACA,kCAAA;EACA,4BAAA;E1DowLD;A0DjwLD;EACE,mBAAA;E1DmwLD;A0D3vLC;;EAEE,oBAAA;EACA,gBAAA;EACA,UAAA;EACA,WAAA;EACA,2BAAA;EACA,qBAAA;E1D6vLH;A0D1vLD;EACE,oBAAA;E1D4vLD;A0D1vLD;EACE,oBAAA;EACA,aAAA;E1D4vLD;A0DxvLC;EACE,WAAA;EACA,oBAAA;EACA,wBAAA;EACA,2BAAA;EACA,uCAAA;EACA,eAAA;E1D0vLH;A0DzvLG;EACE,cAAA;EACA,aAAA;EACA,oBAAA;EACA,wBAAA;EACA,2BAAA;E1D2vLL;A0DxvLC;EACE,UAAA;EACA,aAAA;EACA,mBAAA;EACA,sBAAA;EACA,6BAAA;EACA,yCAAA;E1D0vLH;A0DzvLG;EACE,cAAA;EACA,WAAA;EACA,eAAA;EACA,sBAAA;EACA,6BAAA;E1D2vLL;A0DxvLC;EACE,WAAA;EACA,oBAAA;EACA,qBAAA;EACA,8BAAA;EACA,0CAAA;EACA,YAAA;E1D0vLH;A0DzvLG;EACE,cAAA;EACA,UAAA;EACA,oBAAA;EACA,qBAAA;EACA,8BAAA;E1D2vLL;A0DvvLC;EACE,UAAA;EACA,cAAA;EACA,mBAAA;EACA,uBAAA;EACA,4BAAA;EACA,wCAAA;E1DyvLH;A0DxvLG;EACE,cAAA;EACA,YAAA;EACA,uBAAA;EACA,4BAAA;EACA,eAAA;E1D0vLL;A2Dv3LD;EACE,oBAAA;E3Dy3LD;A2Dt3LD;EACE,oBAAA;EACA,kBAAA;EACA,aAAA;E3Dw3LD;A2D33LD;EAMI,eAAA;EACA,oBAAA;EtD6KF,2CAAA;EACK,sCAAA;EACG,mCAAA;EL4sLT;A2Dl4LD;;EAcM,gBAAA;E3Dw3LL;A2D91LC;EAAA;ItDiKA,wDAAA;IAEK,8CAAA;IACG,wCAAA;IA7JR,qCAAA;IAEQ,6BAAA;IA+GR,2BAAA;IAEQ,mBAAA;ILivLP;E2D53LG;;ItDmHJ,4CAAA;IACQ,oCAAA;IsDjHF,SAAA;I3D+3LL;E2D73LG;;ItD8GJ,6CAAA;IACQ,qCAAA;IsD5GF,SAAA;I3Dg4LL;E2D93LG;;;ItDyGJ,yCAAA;IACQ,iCAAA;IsDtGF,SAAA;I3Di4LL;EACF;A2Dv6LD;;;EA6CI,gBAAA;E3D+3LH;A2D56LD;EAiDI,SAAA;E3D83LH;A2D/6LD;;EAsDI,oBAAA;EACA,QAAA;EACA,aAAA;E3D63LH;A2Dr7LD;EA4DI,YAAA;E3D43LH;A2Dx7LD;EA+DI,aAAA;E3D43LH;A2D37LD;;EAmEI,SAAA;E3D43LH;A2D/7LD;EAuEI,aAAA;E3D23LH;A2Dl8LD;EA0EI,YAAA;E3D23LH;A2Dn3LD;EACE,oBAAA;EACA,QAAA;EACA,SAAA;EACA,WAAA;EACA,YAAA;ErC9FA,cAAA;EAGA,2BAAA;EqC6FA,iBAAA;EACA,gBAAA;EACA,oBAAA;EACA,2CAAA;E3Ds3LD;A2Dj3LC;EblGE,oGAAA;EACA,+FAAA;EACA,sHAAA;EAAA,gGAAA;EACA,6BAAA;EACA,wHAAA;E9Cs9LH;A2Dr3LC;EACE,YAAA;EACA,UAAA;EbvGA,oGAAA;EACA,+FAAA;EACA,sHAAA;EAAA,gGAAA;EACA,6BAAA;EACA,wHAAA;E9C+9LH;A2Dv3LC;;EAEE,YAAA;EACA,gBAAA;EACA,uBAAA;ErCtHF,cAAA;EAGA,2BAAA;EtB8+LD;A2Dx5LD;;;;EAsCI,oBAAA;EACA,UAAA;EACA,YAAA;EACA,uBAAA;E3Dw3LH;A2Dj6LD;;EA6CI,WAAA;EACA,oBAAA;E3Dw3LH;A2Dt6LD;;EAkDI,YAAA;EACA,qBAAA;E3Dw3LH;A2D36LD;;EAuDI,aAAA;EACA,cAAA;EACA,mBAAA;EACA,gBAAA;EACA,oBAAA;E3Dw3LH;A2Dn3LG;EACE,kBAAA;E3Dq3LL;A2Dj3LG;EACE,kBAAA;E3Dm3LL;A2Dz2LD;EACE,oBAAA;EACA,cAAA;EACA,WAAA;EACA,aAAA;EACA,YAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;E3D22LD;A2Dp3LD;EAYI,uBAAA;EACA,aAAA;EACA,cAAA;EACA,aAAA;EACA,qBAAA;EACA,2BAAA;EACA,qBAAA;EACA,iBAAA;EAWA,2BAAA;EACA,oCAAA;E3Di2LH;A2Dh4LD;EAkCI,WAAA;EACA,aAAA;EACA,cAAA;EACA,2BAAA;E3Di2LH;A2D11LD;EACE,oBAAA;EACA,WAAA;EACA,YAAA;EACA,cAAA;EACA,aAAA;EACA,mBAAA;EACA,sBAAA;EACA,gBAAA;EACA,oBAAA;EACA,2CAAA;E3D41LD;A2D31LC;EACE,mBAAA;E3D61LH;A2DpzLD;EAhCE;;;;IAKI,aAAA;IACA,cAAA;IACA,mBAAA;IACA,iBAAA;I3Ds1LH;E2D91LD;;IAYI,oBAAA;I3Ds1LH;E2Dl2LD;;IAgBI,qBAAA;I3Ds1LH;E2Dj1LD;IACE,WAAA;IACA,YAAA;IACA,sBAAA;I3Dm1LD;E2D/0LD;IACE,cAAA;I3Di1LD;EACF;A4D/kMC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEE,cAAA;EACA,gBAAA;E5D6mMH;A4D3mMC;;;;;;;;;;;;;;;EACE,aAAA;E5D2nMH;AiCnoMD;E4BRE,gBAAA;EACA,mBAAA;EACA,oBAAA;E7D8oMD;AiCroMD;EACE,yBAAA;EjCuoMD;AiCroMD;EACE,wBAAA;EjCuoMD;AiC/nMD;EACE,0BAAA;EjCioMD;AiC/nMD;EACE,2BAAA;EjCioMD;AiC/nMD;EACE,oBAAA;EjCioMD;AiC/nMD;E6BzBE,aAAA;EACA,oBAAA;EACA,mBAAA;EACA,+BAAA;EACA,WAAA;E9D2pMD;AiC7nMD;EACE,0BAAA;EACA,+BAAA;EjC+nMD;AiCxnMD;EACE,iBAAA;EjC0nMD;A+D5pMD;EACE,qBAAA;E/D8pMD;A+DxpMD;;;;ECdE,0BAAA;EhE4qMD;A+DvpMD;;;;;;;;;;;;EAYE,0BAAA;E/DypMD;A+DlpMD;EAAA;IChDE,2BAAA;IhEssMC;EgErsMD;IAAU,gBAAA;IhEwsMT;EgEvsMD;IAAU,+BAAA;IhE0sMT;EgEzsMD;;IACU,gCAAA;IhE4sMT;EACF;A+D5pMD;EAAA;IAFI,2BAAA;I/DkqMD;EACF;A+D5pMD;EAAA;IAFI,4BAAA;I/DkqMD;EACF;A+D5pMD;EAAA;IAFI,kCAAA;I/DkqMD;EACF;A+D3pMD;EAAA;ICrEE,2BAAA;IhEouMC;EgEnuMD;IAAU,gBAAA;IhEsuMT;EgEruMD;IAAU,+BAAA;IhEwuMT;EgEvuMD;;IACU,gCAAA;IhE0uMT;EACF;A+DrqMD;EAAA;IAFI,2BAAA;I/D2qMD;EACF;A+DrqMD;EAAA;IAFI,4BAAA;I/D2qMD;EACF;A+DrqMD;EAAA;IAFI,kCAAA;I/D2qMD;EACF;A+DpqMD;EAAA;IC1FE,2BAAA;IhEkwMC;EgEjwMD;IAAU,gBAAA;IhEowMT;EgEnwMD;IAAU,+BAAA;IhEswMT;EgErwMD;;IACU,gCAAA;IhEwwMT;EACF;A+D9qMD;EAAA;IAFI,2BAAA;I/DorMD;EACF;A+D9qMD;EAAA;IAFI,4BAAA;I/DorMD;EACF;A+D9qMD;EAAA;IAFI,kCAAA;I/DorMD;EACF;A+D7qMD;EAAA;IC/GE,2BAAA;IhEgyMC;EgE/xMD;IAAU,gBAAA;IhEkyMT;EgEjyMD;IAAU,+BAAA;IhEoyMT;EgEnyMD;;IACU,gCAAA;IhEsyMT;EACF;A+DvrMD;EAAA;IAFI,2BAAA;I/D6rMD;EACF;A+DvrMD;EAAA;IAFI,4BAAA;I/D6rMD;EACF;A+DvrMD;EAAA;IAFI,kCAAA;I/D6rMD;EACF;A+DtrMD;EAAA;IC5HE,0BAAA;IhEszMC;EACF;A+DtrMD;EAAA;ICjIE,0BAAA;IhE2zMC;EACF;A+DtrMD;EAAA;ICtIE,0BAAA;IhEg0MC;EACF;A+DtrMD;EAAA;IC3IE,0BAAA;IhEq0MC;EACF;A+DnrMD;ECnJE,0BAAA;EhEy0MD;A+DhrMD;EAAA;ICjKE,2BAAA;IhEq1MC;EgEp1MD;IAAU,gBAAA;IhEu1MT;EgEt1MD;IAAU,+BAAA;IhEy1MT;EgEx1MD;;IACU,gCAAA;IhE21MT;EACF;A+D9rMD;EACE,0BAAA;E/DgsMD;A+D3rMD;EAAA;IAFI,2BAAA;I/DisMD;EACF;A+D/rMD;EACE,0BAAA;E/DisMD;A+D5rMD;EAAA;IAFI,4BAAA;I/DksMD;EACF;A+DhsMD;EACE,0BAAA;E/DksMD;A+D7rMD;EAAA;IAFI,kCAAA;I/DmsMD;EACF;A+D5rMD;EAAA;ICpLE,0BAAA;IhEo3MC;EACF","file":"bootstrap.css","sourcesContent":["/*! normalize.css v3.0.2 | MIT License | git.io/normalize */\nhtml {\n font-family: sans-serif;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\nbody {\n margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block;\n vertical-align: baseline;\n}\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n[hidden],\ntemplate {\n display: none;\n}\na {\n background-color: transparent;\n}\na:active,\na:hover {\n outline: 0;\n}\nabbr[title] {\n border-bottom: 1px dotted;\n}\nb,\nstrong {\n font-weight: bold;\n}\ndfn {\n font-style: italic;\n}\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\nmark {\n background: #ff0;\n color: #000;\n}\nsmall {\n font-size: 80%;\n}\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsup {\n top: -0.5em;\n}\nsub {\n bottom: -0.25em;\n}\nimg {\n border: 0;\n}\nsvg:not(:root) {\n overflow: hidden;\n}\nfigure {\n margin: 1em 40px;\n}\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\npre {\n overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit;\n font: inherit;\n margin: 0;\n}\nbutton {\n overflow: visible;\n}\nbutton,\nselect {\n text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button;\n cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\ninput {\n line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box;\n padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: textfield;\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box;\n box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n border: 0;\n padding: 0;\n}\ntextarea {\n overflow: auto;\n}\noptgroup {\n font-weight: bold;\n}\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\ntd,\nth {\n padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important;\n box-shadow: none !important;\n text-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n img {\n max-width: 100% !important;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n select {\n background: #fff !important;\n }\n .navbar {\n display: none;\n }\n .btn > .caret,\n .dropup > .btn > .caret {\n border-top-color: #000 !important;\n }\n .label {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('../fonts/glyphicons-halflings-regular.eot');\n src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n content: \"\\2a\";\n}\n.glyphicon-plus:before {\n content: \"\\2b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n content: \"\\270f\";\n}\n.glyphicon-glass:before {\n content: \"\\e001\";\n}\n.glyphicon-music:before {\n content: \"\\e002\";\n}\n.glyphicon-search:before {\n content: \"\\e003\";\n}\n.glyphicon-heart:before {\n content: \"\\e005\";\n}\n.glyphicon-star:before {\n content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n content: \"\\e007\";\n}\n.glyphicon-user:before {\n content: \"\\e008\";\n}\n.glyphicon-film:before {\n content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n content: \"\\e010\";\n}\n.glyphicon-th:before {\n content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n content: \"\\e012\";\n}\n.glyphicon-ok:before {\n content: \"\\e013\";\n}\n.glyphicon-remove:before {\n content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n content: \"\\e016\";\n}\n.glyphicon-off:before {\n content: \"\\e017\";\n}\n.glyphicon-signal:before {\n content: \"\\e018\";\n}\n.glyphicon-cog:before {\n content: \"\\e019\";\n}\n.glyphicon-trash:before {\n content: \"\\e020\";\n}\n.glyphicon-home:before {\n content: \"\\e021\";\n}\n.glyphicon-file:before {\n content: \"\\e022\";\n}\n.glyphicon-time:before {\n content: \"\\e023\";\n}\n.glyphicon-road:before {\n content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n content: \"\\e025\";\n}\n.glyphicon-download:before {\n content: \"\\e026\";\n}\n.glyphicon-upload:before {\n content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n content: \"\\e032\";\n}\n.glyphicon-lock:before {\n content: \"\\e033\";\n}\n.glyphicon-flag:before {\n content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n content: \"\\e040\";\n}\n.glyphicon-tag:before {\n content: \"\\e041\";\n}\n.glyphicon-tags:before {\n content: \"\\e042\";\n}\n.glyphicon-book:before {\n content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n content: \"\\e044\";\n}\n.glyphicon-print:before {\n content: \"\\e045\";\n}\n.glyphicon-camera:before {\n content: \"\\e046\";\n}\n.glyphicon-font:before {\n content: \"\\e047\";\n}\n.glyphicon-bold:before {\n content: \"\\e048\";\n}\n.glyphicon-italic:before {\n content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n content: \"\\e055\";\n}\n.glyphicon-list:before {\n content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n content: \"\\e059\";\n}\n.glyphicon-picture:before {\n content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n content: \"\\e063\";\n}\n.glyphicon-tint:before {\n content: \"\\e064\";\n}\n.glyphicon-edit:before {\n content: \"\\e065\";\n}\n.glyphicon-share:before {\n content: \"\\e066\";\n}\n.glyphicon-check:before {\n content: \"\\e067\";\n}\n.glyphicon-move:before {\n content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n content: \"\\e070\";\n}\n.glyphicon-backward:before {\n content: \"\\e071\";\n}\n.glyphicon-play:before {\n content: \"\\e072\";\n}\n.glyphicon-pause:before {\n content: \"\\e073\";\n}\n.glyphicon-stop:before {\n content: \"\\e074\";\n}\n.glyphicon-forward:before {\n content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n content: \"\\e077\";\n}\n.glyphicon-eject:before {\n content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n content: \"\\e101\";\n}\n.glyphicon-gift:before {\n content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n content: \"\\e103\";\n}\n.glyphicon-fire:before {\n content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n content: \"\\e107\";\n}\n.glyphicon-plane:before {\n content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n content: \"\\e109\";\n}\n.glyphicon-random:before {\n content: \"\\e110\";\n}\n.glyphicon-comment:before {\n content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n content: \"\\e122\";\n}\n.glyphicon-bell:before {\n content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n content: \"\\e134\";\n}\n.glyphicon-globe:before {\n content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n content: \"\\e137\";\n}\n.glyphicon-filter:before {\n content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n content: \"\\e143\";\n}\n.glyphicon-link:before {\n content: \"\\e144\";\n}\n.glyphicon-phone:before {\n content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n content: \"\\e146\";\n}\n.glyphicon-usd:before {\n content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n content: \"\\e149\";\n}\n.glyphicon-sort:before {\n content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n content: \"\\e157\";\n}\n.glyphicon-expand:before {\n content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n content: \"\\e161\";\n}\n.glyphicon-flash:before {\n content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n content: \"\\e164\";\n}\n.glyphicon-record:before {\n content: \"\\e165\";\n}\n.glyphicon-save:before {\n content: \"\\e166\";\n}\n.glyphicon-open:before {\n content: \"\\e167\";\n}\n.glyphicon-saved:before {\n content: \"\\e168\";\n}\n.glyphicon-import:before {\n content: \"\\e169\";\n}\n.glyphicon-export:before {\n content: \"\\e170\";\n}\n.glyphicon-send:before {\n content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n content: \"\\e179\";\n}\n.glyphicon-header:before {\n content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n content: \"\\e183\";\n}\n.glyphicon-tower:before {\n content: \"\\e184\";\n}\n.glyphicon-stats:before {\n content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n content: \"\\e200\";\n}\n.glyphicon-cd:before {\n content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n content: \"\\e204\";\n}\n.glyphicon-copy:before {\n content: \"\\e205\";\n}\n.glyphicon-paste:before {\n content: \"\\e206\";\n}\n.glyphicon-alert:before {\n content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n content: \"\\e210\";\n}\n.glyphicon-king:before {\n content: \"\\e211\";\n}\n.glyphicon-queen:before {\n content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n content: \"\\e214\";\n}\n.glyphicon-knight:before {\n content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n content: \"\\e216\";\n}\n.glyphicon-tent:before {\n content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n content: \"\\e218\";\n}\n.glyphicon-bed:before {\n content: \"\\e219\";\n}\n.glyphicon-apple:before {\n content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n content: \"\\e227\";\n}\n.glyphicon-yen:before {\n content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n content: \"\\e232\";\n}\n.glyphicon-education:before {\n content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n content: \"\\e237\";\n}\n.glyphicon-oil:before {\n content: \"\\e238\";\n}\n.glyphicon-grain:before {\n content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n content: \"\\e253\";\n}\n.glyphicon-console:before {\n content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n content: \"\\e260\";\n}\n* {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n*:before,\n*:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n line-height: 1.42857143;\n color: #333333;\n background-color: #ffffff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\na {\n color: #337ab7;\n text-decoration: none;\n}\na:hover,\na:focus {\n color: #23527c;\n text-decoration: underline;\n}\na:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\nfigure {\n margin: 0;\n}\nimg {\n vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n display: block;\n max-width: 100%;\n height: auto;\n}\n.img-rounded {\n border-radius: 6px;\n}\n.img-thumbnail {\n padding: 4px;\n line-height: 1.42857143;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 4px;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n display: inline-block;\n max-width: 100%;\n height: auto;\n}\n.img-circle {\n border-radius: 50%;\n}\nhr {\n margin-top: 20px;\n margin-bottom: 20px;\n border: 0;\n border-top: 1px solid #eeeeee;\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n font-family: inherit;\n font-weight: 500;\n line-height: 1.1;\n color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n font-weight: normal;\n line-height: 1;\n color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n margin-top: 20px;\n margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n margin-top: 10px;\n margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n font-size: 75%;\n}\nh1,\n.h1 {\n font-size: 36px;\n}\nh2,\n.h2 {\n font-size: 30px;\n}\nh3,\n.h3 {\n font-size: 24px;\n}\nh4,\n.h4 {\n font-size: 18px;\n}\nh5,\n.h5 {\n font-size: 14px;\n}\nh6,\n.h6 {\n font-size: 12px;\n}\np {\n margin: 0 0 10px;\n}\n.lead {\n margin-bottom: 20px;\n font-size: 16px;\n font-weight: 300;\n line-height: 1.4;\n}\n@media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n}\nsmall,\n.small {\n font-size: 85%;\n}\nmark,\n.mark {\n background-color: #fcf8e3;\n padding: .2em;\n}\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.text-center {\n text-align: center;\n}\n.text-justify {\n text-align: justify;\n}\n.text-nowrap {\n white-space: nowrap;\n}\n.text-lowercase {\n text-transform: lowercase;\n}\n.text-uppercase {\n text-transform: uppercase;\n}\n.text-capitalize {\n text-transform: capitalize;\n}\n.text-muted {\n color: #777777;\n}\n.text-primary {\n color: #337ab7;\n}\na.text-primary:hover {\n color: #286090;\n}\n.text-success {\n color: #3c763d;\n}\na.text-success:hover {\n color: #2b542c;\n}\n.text-info {\n color: #31708f;\n}\na.text-info:hover {\n color: #245269;\n}\n.text-warning {\n color: #8a6d3b;\n}\na.text-warning:hover {\n color: #66512c;\n}\n.text-danger {\n color: #a94442;\n}\na.text-danger:hover {\n color: #843534;\n}\n.bg-primary {\n color: #fff;\n background-color: #337ab7;\n}\na.bg-primary:hover {\n background-color: #286090;\n}\n.bg-success {\n background-color: #dff0d8;\n}\na.bg-success:hover {\n background-color: #c1e2b3;\n}\n.bg-info {\n background-color: #d9edf7;\n}\na.bg-info:hover {\n background-color: #afd9ee;\n}\n.bg-warning {\n background-color: #fcf8e3;\n}\na.bg-warning:hover {\n background-color: #f7ecb5;\n}\n.bg-danger {\n background-color: #f2dede;\n}\na.bg-danger:hover {\n background-color: #e4b9b9;\n}\n.page-header {\n padding-bottom: 9px;\n margin: 40px 0 20px;\n border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n margin-top: 0;\n margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n margin-bottom: 0;\n}\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n.list-inline {\n padding-left: 0;\n list-style: none;\n margin-left: -5px;\n}\n.list-inline > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n}\ndl {\n margin-top: 0;\n margin-bottom: 20px;\n}\ndt,\ndd {\n line-height: 1.42857143;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0;\n}\n@media (min-width: 768px) {\n .dl-horizontal dt {\n float: left;\n width: 160px;\n clear: left;\n text-align: right;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .dl-horizontal dd {\n margin-left: 180px;\n }\n}\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted #777777;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\nblockquote {\n padding: 10px 20px;\n margin: 0 0 20px;\n font-size: 17.5px;\n border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n display: block;\n font-size: 80%;\n line-height: 1.42857143;\n color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid #eeeeee;\n border-left: 0;\n text-align: right;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n content: '\\00A0 \\2014';\n}\naddress {\n margin-bottom: 20px;\n font-style: normal;\n line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: #c7254e;\n background-color: #f9f2f4;\n border-radius: 4px;\n}\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: #ffffff;\n background-color: #333333;\n border-radius: 3px;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n}\npre {\n display: block;\n padding: 9.5px;\n margin: 0 0 10px;\n font-size: 13px;\n line-height: 1.42857143;\n word-break: break-all;\n word-wrap: break-word;\n color: #333333;\n background-color: #f5f5f5;\n border: 1px solid #cccccc;\n border-radius: 4px;\n}\npre code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n}\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n.container {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n@media (min-width: 768px) {\n .container {\n width: 750px;\n }\n}\n@media (min-width: 992px) {\n .container {\n width: 970px;\n }\n}\n@media (min-width: 1200px) {\n .container {\n width: 1170px;\n }\n}\n.container-fluid {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n.row {\n margin-left: -15px;\n margin-right: -15px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n position: relative;\n min-height: 1px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n float: left;\n}\n.col-xs-12 {\n width: 100%;\n}\n.col-xs-11 {\n width: 91.66666667%;\n}\n.col-xs-10 {\n width: 83.33333333%;\n}\n.col-xs-9 {\n width: 75%;\n}\n.col-xs-8 {\n width: 66.66666667%;\n}\n.col-xs-7 {\n width: 58.33333333%;\n}\n.col-xs-6 {\n width: 50%;\n}\n.col-xs-5 {\n width: 41.66666667%;\n}\n.col-xs-4 {\n width: 33.33333333%;\n}\n.col-xs-3 {\n width: 25%;\n}\n.col-xs-2 {\n width: 16.66666667%;\n}\n.col-xs-1 {\n width: 8.33333333%;\n}\n.col-xs-pull-12 {\n right: 100%;\n}\n.col-xs-pull-11 {\n right: 91.66666667%;\n}\n.col-xs-pull-10 {\n right: 83.33333333%;\n}\n.col-xs-pull-9 {\n right: 75%;\n}\n.col-xs-pull-8 {\n right: 66.66666667%;\n}\n.col-xs-pull-7 {\n right: 58.33333333%;\n}\n.col-xs-pull-6 {\n right: 50%;\n}\n.col-xs-pull-5 {\n right: 41.66666667%;\n}\n.col-xs-pull-4 {\n right: 33.33333333%;\n}\n.col-xs-pull-3 {\n right: 25%;\n}\n.col-xs-pull-2 {\n right: 16.66666667%;\n}\n.col-xs-pull-1 {\n right: 8.33333333%;\n}\n.col-xs-pull-0 {\n right: auto;\n}\n.col-xs-push-12 {\n left: 100%;\n}\n.col-xs-push-11 {\n left: 91.66666667%;\n}\n.col-xs-push-10 {\n left: 83.33333333%;\n}\n.col-xs-push-9 {\n left: 75%;\n}\n.col-xs-push-8 {\n left: 66.66666667%;\n}\n.col-xs-push-7 {\n left: 58.33333333%;\n}\n.col-xs-push-6 {\n left: 50%;\n}\n.col-xs-push-5 {\n left: 41.66666667%;\n}\n.col-xs-push-4 {\n left: 33.33333333%;\n}\n.col-xs-push-3 {\n left: 25%;\n}\n.col-xs-push-2 {\n left: 16.66666667%;\n}\n.col-xs-push-1 {\n left: 8.33333333%;\n}\n.col-xs-push-0 {\n left: auto;\n}\n.col-xs-offset-12 {\n margin-left: 100%;\n}\n.col-xs-offset-11 {\n margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n margin-left: 75%;\n}\n.col-xs-offset-8 {\n margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n margin-left: 50%;\n}\n.col-xs-offset-5 {\n margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n margin-left: 25%;\n}\n.col-xs-offset-2 {\n margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n margin-left: 0%;\n}\n@media (min-width: 768px) {\n .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n float: left;\n }\n .col-sm-12 {\n width: 100%;\n }\n .col-sm-11 {\n width: 91.66666667%;\n }\n .col-sm-10 {\n width: 83.33333333%;\n }\n .col-sm-9 {\n width: 75%;\n }\n .col-sm-8 {\n width: 66.66666667%;\n }\n .col-sm-7 {\n width: 58.33333333%;\n }\n .col-sm-6 {\n width: 50%;\n }\n .col-sm-5 {\n width: 41.66666667%;\n }\n .col-sm-4 {\n width: 33.33333333%;\n }\n .col-sm-3 {\n width: 25%;\n }\n .col-sm-2 {\n width: 16.66666667%;\n }\n .col-sm-1 {\n width: 8.33333333%;\n }\n .col-sm-pull-12 {\n right: 100%;\n }\n .col-sm-pull-11 {\n right: 91.66666667%;\n }\n .col-sm-pull-10 {\n right: 83.33333333%;\n }\n .col-sm-pull-9 {\n right: 75%;\n }\n .col-sm-pull-8 {\n right: 66.66666667%;\n }\n .col-sm-pull-7 {\n right: 58.33333333%;\n }\n .col-sm-pull-6 {\n right: 50%;\n }\n .col-sm-pull-5 {\n right: 41.66666667%;\n }\n .col-sm-pull-4 {\n right: 33.33333333%;\n }\n .col-sm-pull-3 {\n right: 25%;\n }\n .col-sm-pull-2 {\n right: 16.66666667%;\n }\n .col-sm-pull-1 {\n right: 8.33333333%;\n }\n .col-sm-pull-0 {\n right: auto;\n }\n .col-sm-push-12 {\n left: 100%;\n }\n .col-sm-push-11 {\n left: 91.66666667%;\n }\n .col-sm-push-10 {\n left: 83.33333333%;\n }\n .col-sm-push-9 {\n left: 75%;\n }\n .col-sm-push-8 {\n left: 66.66666667%;\n }\n .col-sm-push-7 {\n left: 58.33333333%;\n }\n .col-sm-push-6 {\n left: 50%;\n }\n .col-sm-push-5 {\n left: 41.66666667%;\n }\n .col-sm-push-4 {\n left: 33.33333333%;\n }\n .col-sm-push-3 {\n left: 25%;\n }\n .col-sm-push-2 {\n left: 16.66666667%;\n }\n .col-sm-push-1 {\n left: 8.33333333%;\n }\n .col-sm-push-0 {\n left: auto;\n }\n .col-sm-offset-12 {\n margin-left: 100%;\n }\n .col-sm-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-sm-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-sm-offset-9 {\n margin-left: 75%;\n }\n .col-sm-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-sm-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-sm-offset-6 {\n margin-left: 50%;\n }\n .col-sm-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-sm-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-sm-offset-3 {\n margin-left: 25%;\n }\n .col-sm-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-sm-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-sm-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 992px) {\n .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n float: left;\n }\n .col-md-12 {\n width: 100%;\n }\n .col-md-11 {\n width: 91.66666667%;\n }\n .col-md-10 {\n width: 83.33333333%;\n }\n .col-md-9 {\n width: 75%;\n }\n .col-md-8 {\n width: 66.66666667%;\n }\n .col-md-7 {\n width: 58.33333333%;\n }\n .col-md-6 {\n width: 50%;\n }\n .col-md-5 {\n width: 41.66666667%;\n }\n .col-md-4 {\n width: 33.33333333%;\n }\n .col-md-3 {\n width: 25%;\n }\n .col-md-2 {\n width: 16.66666667%;\n }\n .col-md-1 {\n width: 8.33333333%;\n }\n .col-md-pull-12 {\n right: 100%;\n }\n .col-md-pull-11 {\n right: 91.66666667%;\n }\n .col-md-pull-10 {\n right: 83.33333333%;\n }\n .col-md-pull-9 {\n right: 75%;\n }\n .col-md-pull-8 {\n right: 66.66666667%;\n }\n .col-md-pull-7 {\n right: 58.33333333%;\n }\n .col-md-pull-6 {\n right: 50%;\n }\n .col-md-pull-5 {\n right: 41.66666667%;\n }\n .col-md-pull-4 {\n right: 33.33333333%;\n }\n .col-md-pull-3 {\n right: 25%;\n }\n .col-md-pull-2 {\n right: 16.66666667%;\n }\n .col-md-pull-1 {\n right: 8.33333333%;\n }\n .col-md-pull-0 {\n right: auto;\n }\n .col-md-push-12 {\n left: 100%;\n }\n .col-md-push-11 {\n left: 91.66666667%;\n }\n .col-md-push-10 {\n left: 83.33333333%;\n }\n .col-md-push-9 {\n left: 75%;\n }\n .col-md-push-8 {\n left: 66.66666667%;\n }\n .col-md-push-7 {\n left: 58.33333333%;\n }\n .col-md-push-6 {\n left: 50%;\n }\n .col-md-push-5 {\n left: 41.66666667%;\n }\n .col-md-push-4 {\n left: 33.33333333%;\n }\n .col-md-push-3 {\n left: 25%;\n }\n .col-md-push-2 {\n left: 16.66666667%;\n }\n .col-md-push-1 {\n left: 8.33333333%;\n }\n .col-md-push-0 {\n left: auto;\n }\n .col-md-offset-12 {\n margin-left: 100%;\n }\n .col-md-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-md-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-md-offset-9 {\n margin-left: 75%;\n }\n .col-md-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-md-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-md-offset-6 {\n margin-left: 50%;\n }\n .col-md-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-md-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-md-offset-3 {\n margin-left: 25%;\n }\n .col-md-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-md-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-md-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 1200px) {\n .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n float: left;\n }\n .col-lg-12 {\n width: 100%;\n }\n .col-lg-11 {\n width: 91.66666667%;\n }\n .col-lg-10 {\n width: 83.33333333%;\n }\n .col-lg-9 {\n width: 75%;\n }\n .col-lg-8 {\n width: 66.66666667%;\n }\n .col-lg-7 {\n width: 58.33333333%;\n }\n .col-lg-6 {\n width: 50%;\n }\n .col-lg-5 {\n width: 41.66666667%;\n }\n .col-lg-4 {\n width: 33.33333333%;\n }\n .col-lg-3 {\n width: 25%;\n }\n .col-lg-2 {\n width: 16.66666667%;\n }\n .col-lg-1 {\n width: 8.33333333%;\n }\n .col-lg-pull-12 {\n right: 100%;\n }\n .col-lg-pull-11 {\n right: 91.66666667%;\n }\n .col-lg-pull-10 {\n right: 83.33333333%;\n }\n .col-lg-pull-9 {\n right: 75%;\n }\n .col-lg-pull-8 {\n right: 66.66666667%;\n }\n .col-lg-pull-7 {\n right: 58.33333333%;\n }\n .col-lg-pull-6 {\n right: 50%;\n }\n .col-lg-pull-5 {\n right: 41.66666667%;\n }\n .col-lg-pull-4 {\n right: 33.33333333%;\n }\n .col-lg-pull-3 {\n right: 25%;\n }\n .col-lg-pull-2 {\n right: 16.66666667%;\n }\n .col-lg-pull-1 {\n right: 8.33333333%;\n }\n .col-lg-pull-0 {\n right: auto;\n }\n .col-lg-push-12 {\n left: 100%;\n }\n .col-lg-push-11 {\n left: 91.66666667%;\n }\n .col-lg-push-10 {\n left: 83.33333333%;\n }\n .col-lg-push-9 {\n left: 75%;\n }\n .col-lg-push-8 {\n left: 66.66666667%;\n }\n .col-lg-push-7 {\n left: 58.33333333%;\n }\n .col-lg-push-6 {\n left: 50%;\n }\n .col-lg-push-5 {\n left: 41.66666667%;\n }\n .col-lg-push-4 {\n left: 33.33333333%;\n }\n .col-lg-push-3 {\n left: 25%;\n }\n .col-lg-push-2 {\n left: 16.66666667%;\n }\n .col-lg-push-1 {\n left: 8.33333333%;\n }\n .col-lg-push-0 {\n left: auto;\n }\n .col-lg-offset-12 {\n margin-left: 100%;\n }\n .col-lg-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-lg-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-lg-offset-9 {\n margin-left: 75%;\n }\n .col-lg-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-lg-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-lg-offset-6 {\n margin-left: 50%;\n }\n .col-lg-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-lg-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-lg-offset-3 {\n margin-left: 25%;\n }\n .col-lg-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-lg-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-lg-offset-0 {\n margin-left: 0%;\n }\n}\ntable {\n background-color: transparent;\n}\ncaption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777777;\n text-align: left;\n}\nth {\n text-align: left;\n}\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #dddddd;\n}\n.table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #dddddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n.table > tbody + tbody {\n border-top: 2px solid #dddddd;\n}\n.table .table {\n background-color: #ffffff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n.table-bordered {\n border: 1px solid #dddddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n border: 1px solid #dddddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-column;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-cell;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%;\n}\n@media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #dddddd;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n min-width: 0;\n}\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 20px;\n font-size: 21px;\n line-height: inherit;\n color: #333333;\n border: 0;\n border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold;\n}\ninput[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal;\n}\ninput[type=\"file\"] {\n display: block;\n}\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\nselect[multiple],\nselect[size] {\n height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\noutput {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n}\n.form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n background-color: #ffffff;\n background-image: none;\n border: 1px solid #cccccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n color: #999999;\n opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n color: #999999;\n}\n.form-control::-webkit-input-placeholder {\n color: #999999;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n cursor: not-allowed;\n background-color: #eeeeee;\n opacity: 1;\n}\ntextarea.form-control {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n line-height: 34px;\n }\n input[type=\"date\"].input-sm,\n input[type=\"time\"].input-sm,\n input[type=\"datetime-local\"].input-sm,\n input[type=\"month\"].input-sm,\n .input-group-sm input[type=\"date\"],\n .input-group-sm input[type=\"time\"],\n .input-group-sm input[type=\"datetime-local\"],\n .input-group-sm input[type=\"month\"] {\n line-height: 30px;\n }\n input[type=\"date\"].input-lg,\n input[type=\"time\"].input-lg,\n input[type=\"datetime-local\"].input-lg,\n input[type=\"month\"].input-lg,\n .input-group-lg input[type=\"date\"],\n .input-group-lg input[type=\"time\"],\n .input-group-lg input[type=\"datetime-local\"],\n .input-group-lg input[type=\"month\"] {\n line-height: 46px;\n }\n}\n.form-group {\n margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n min-height: 20px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n cursor: not-allowed;\n}\n.form-control-static {\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n padding-left: 0;\n padding-right: 0;\n}\n.input-sm {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-sm {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n height: auto;\n}\n.form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.form-group-sm .form-control {\n height: 30px;\n line-height: 30px;\n}\ntextarea.form-group-sm .form-control,\nselect[multiple].form-group-sm .form-control {\n height: auto;\n}\n.form-group-sm .form-control-static {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.input-lg {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-lg {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n height: auto;\n}\n.form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.form-group-lg .form-control {\n height: 46px;\n line-height: 46px;\n}\ntextarea.form-group-lg .form-control,\nselect[multiple].form-group-lg .form-control {\n height: auto;\n}\n.form-group-lg .form-control-static {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.has-feedback {\n position: relative;\n}\n.has-feedback .form-control {\n padding-right: 42.5px;\n}\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 34px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px;\n}\n.input-sm + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n color: #3c763d;\n}\n.has-success .form-control {\n border-color: #3c763d;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n border-color: #2b542c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n color: #3c763d;\n border-color: #3c763d;\n background-color: #dff0d8;\n}\n.has-success .form-control-feedback {\n color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n color: #8a6d3b;\n}\n.has-warning .form-control {\n border-color: #8a6d3b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n border-color: #66512c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n color: #8a6d3b;\n border-color: #8a6d3b;\n background-color: #fcf8e3;\n}\n.has-warning .form-control-feedback {\n color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n color: #a94442;\n}\n.has-error .form-control {\n border-color: #a94442;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n border-color: #843534;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n color: #a94442;\n border-color: #a94442;\n background-color: #f2dede;\n}\n.has-error .form-control-feedback {\n color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n top: 0;\n}\n.help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #737373;\n}\n@media (min-width: 768px) {\n .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-static {\n display: inline-block;\n }\n .form-inline .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .form-inline .input-group .input-group-addon,\n .form-inline .input-group .input-group-btn,\n .form-inline .input-group .form-control {\n width: auto;\n }\n .form-inline .input-group > .form-control {\n width: 100%;\n }\n .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio,\n .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio label,\n .form-inline .checkbox label {\n padding-left: 0;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .form-inline .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: 7px;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n min-height: 27px;\n}\n.form-horizontal .form-group {\n margin-left: -15px;\n margin-right: -15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: 7px;\n }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n right: 15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-lg .control-label {\n padding-top: 14.333333px;\n }\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n }\n}\n.btn {\n display: inline-block;\n margin-bottom: 0;\n font-weight: normal;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n white-space: nowrap;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n color: #333333;\n text-decoration: none;\n}\n.btn:active,\n.btn.active {\n outline: 0;\n background-image: none;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n cursor: not-allowed;\n pointer-events: none;\n opacity: 0.65;\n filter: alpha(opacity=65);\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default {\n color: #333333;\n background-color: #ffffff;\n border-color: #cccccc;\n}\n.btn-default:hover,\n.btn-default:focus,\n.btn-default.focus,\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n color: #333333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n background-image: none;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #ffffff;\n border-color: #cccccc;\n}\n.btn-default .badge {\n color: #ffffff;\n background-color: #333333;\n}\n.btn-primary {\n color: #ffffff;\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary:hover,\n.btn-primary:focus,\n.btn-primary.focus,\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n color: #ffffff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n background-image: none;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.btn-success {\n color: #ffffff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success:hover,\n.btn-success:focus,\n.btn-success.focus,\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n color: #ffffff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n background-image: none;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success .badge {\n color: #5cb85c;\n background-color: #ffffff;\n}\n.btn-info {\n color: #ffffff;\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info:hover,\n.btn-info:focus,\n.btn-info.focus,\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n color: #ffffff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n background-image: none;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info .badge {\n color: #5bc0de;\n background-color: #ffffff;\n}\n.btn-warning {\n color: #ffffff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning:hover,\n.btn-warning:focus,\n.btn-warning.focus,\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n color: #ffffff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n background-image: none;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning .badge {\n color: #f0ad4e;\n background-color: #ffffff;\n}\n.btn-danger {\n color: #ffffff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger:hover,\n.btn-danger:focus,\n.btn-danger.focus,\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n color: #ffffff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n background-image: none;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger .badge {\n color: #d9534f;\n background-color: #ffffff;\n}\n.btn-link {\n color: #337ab7;\n font-weight: normal;\n border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n color: #23527c;\n text-decoration: underline;\n background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n color: #777777;\n text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-block {\n display: block;\n width: 100%;\n}\n.btn-block + .btn-block {\n margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n.fade {\n opacity: 0;\n -webkit-transition: opacity 0.15s linear;\n -o-transition: opacity 0.15s linear;\n transition: opacity 0.15s linear;\n}\n.fade.in {\n opacity: 1;\n}\n.collapse {\n display: none;\n visibility: hidden;\n}\n.collapse.in {\n display: block;\n visibility: visible;\n}\ntr.collapse.in {\n display: table-row;\n}\ntbody.collapse.in {\n display: table-row-group;\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n -webkit-transition-property: height, visibility;\n transition-property: height, visibility;\n -webkit-transition-duration: 0.35s;\n transition-duration: 0.35s;\n -webkit-transition-timing-function: ease;\n transition-timing-function: ease;\n}\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px solid;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n position: relative;\n}\n.dropdown-toggle:focus {\n outline: 0;\n}\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0;\n list-style: none;\n font-size: 14px;\n text-align: left;\n background-color: #ffffff;\n border: 1px solid #cccccc;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n background-clip: padding-box;\n}\n.dropdown-menu.pull-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu .divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: 1.42857143;\n color: #333333;\n white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n text-decoration: none;\n color: #262626;\n background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n color: #ffffff;\n text-decoration: none;\n outline: 0;\n background-color: #337ab7;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n cursor: not-allowed;\n}\n.open > .dropdown-menu {\n display: block;\n}\n.open > a {\n outline: 0;\n}\n.dropdown-menu-right {\n left: auto;\n right: 0;\n}\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: 12px;\n line-height: 1.42857143;\n color: #777777;\n white-space: nowrap;\n}\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: 990;\n}\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n border-top: 0;\n border-bottom: 4px solid;\n content: \"\";\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n .navbar-right .dropdown-menu {\n left: auto;\n right: 0;\n }\n .navbar-right .dropdown-menu-left {\n left: 0;\n right: auto;\n }\n}\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n margin-left: -1px;\n}\n.btn-toolbar {\n margin-left: -5px;\n}\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n.btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn .caret {\n margin-left: 0;\n}\n.btn-lg .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n border-bottom-left-radius: 4px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.input-group {\n position: relative;\n display: table;\n border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n}\n.input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n}\n.input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: normal;\n line-height: 1;\n color: #555555;\n text-align: center;\n background-color: #eeeeee;\n border: 1px solid #cccccc;\n border-radius: 4px;\n}\n.input-group-addon.input-sm {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px;\n}\n.input-group-addon.input-lg {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n.input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap;\n}\n.input-group-btn > .btn {\n position: relative;\n}\n.input-group-btn > .btn + .btn {\n margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n margin-left: -1px;\n}\n.nav {\n margin-bottom: 0;\n padding-left: 0;\n list-style: none;\n}\n.nav > li {\n position: relative;\n display: block;\n}\n.nav > li > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n color: #777777;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n background-color: #eeeeee;\n border-color: #337ab7;\n}\n.nav .nav-divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.nav > li > a > img {\n max-width: none;\n}\n.nav-tabs {\n border-bottom: 1px solid #dddddd;\n}\n.nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n border-color: #eeeeee #eeeeee #dddddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n color: #555555;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-bottom-color: transparent;\n cursor: default;\n}\n.nav-tabs.nav-justified {\n width: 100%;\n border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n float: none;\n}\n.nav-tabs.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs.nav-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n border: 1px solid #dddddd;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li > a {\n border-bottom: 1px solid #dddddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border-bottom-color: #ffffff;\n }\n}\n.nav-pills > li {\n float: left;\n}\n.nav-pills > li > a {\n border-radius: 4px;\n}\n.nav-pills > li + li {\n margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n color: #ffffff;\n background-color: #337ab7;\n}\n.nav-stacked > li {\n float: none;\n}\n.nav-stacked > li + li {\n margin-top: 2px;\n margin-left: 0;\n}\n.nav-justified {\n width: 100%;\n}\n.nav-justified > li {\n float: none;\n}\n.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs-justified {\n border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n border: 1px solid #dddddd;\n}\n@media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-bottom: 1px solid #dddddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border-bottom-color: #ffffff;\n }\n}\n.tab-content > .tab-pane {\n display: none;\n visibility: hidden;\n}\n.tab-content > .active {\n display: block;\n visibility: visible;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar {\n position: relative;\n min-height: 50px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n .navbar {\n border-radius: 4px;\n }\n}\n@media (min-width: 768px) {\n .navbar-header {\n float: left;\n }\n}\n.navbar-collapse {\n overflow-x: visible;\n padding-right: 15px;\n padding-left: 15px;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n overflow-y: auto;\n}\n@media (min-width: 768px) {\n .navbar-collapse {\n width: auto;\n border-top: 0;\n box-shadow: none;\n }\n .navbar-collapse.collapse {\n display: block !important;\n visibility: visible !important;\n height: auto !important;\n padding-bottom: 0;\n overflow: visible !important;\n }\n .navbar-collapse.in {\n overflow-y: visible;\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-static-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n padding-left: 0;\n padding-right: 0;\n }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 200px;\n }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 768px) {\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: 0;\n margin-left: 0;\n }\n}\n.navbar-static-top {\n z-index: 1000;\n border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n .navbar-static-top {\n border-radius: 0;\n }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n@media (min-width: 768px) {\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0;\n border-width: 1px 0 0;\n}\n.navbar-brand {\n float: left;\n padding: 15px 15px;\n font-size: 18px;\n line-height: 20px;\n height: 50px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n text-decoration: none;\n}\n.navbar-brand > img {\n display: block;\n}\n@media (min-width: 768px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-left: -15px;\n }\n}\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: 15px;\n padding: 9px 10px;\n margin-top: 8px;\n margin-bottom: 8px;\n background-color: transparent;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.navbar-toggle:focus {\n outline: 0;\n}\n.navbar-toggle .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n margin-top: 4px;\n}\n@media (min-width: 768px) {\n .navbar-toggle {\n display: none;\n }\n}\n.navbar-nav {\n margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: 20px;\n}\n@media (max-width: 767px) {\n .navbar-nav .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n }\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n .navbar-nav .open .dropdown-menu > li > a {\n line-height: 20px;\n }\n .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-nav .open .dropdown-menu > li > a:focus {\n background-image: none;\n }\n}\n@media (min-width: 768px) {\n .navbar-nav {\n float: left;\n margin: 0;\n }\n .navbar-nav > li {\n float: left;\n }\n .navbar-nav > li > a {\n padding-top: 15px;\n padding-bottom: 15px;\n }\n}\n.navbar-form {\n margin-left: -15px;\n margin-right: -15px;\n padding: 10px 15px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n margin-top: 8px;\n margin-bottom: 8px;\n}\n@media (min-width: 768px) {\n .navbar-form .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .navbar-form .form-control-static {\n display: inline-block;\n }\n .navbar-form .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .navbar-form .input-group .input-group-addon,\n .navbar-form .input-group .input-group-btn,\n .navbar-form .input-group .form-control {\n width: auto;\n }\n .navbar-form .input-group > .form-control {\n width: 100%;\n }\n .navbar-form .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio,\n .navbar-form .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio label,\n .navbar-form .checkbox label {\n padding-left: 0;\n }\n .navbar-form .radio input[type=\"radio\"],\n .navbar-form .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .navbar-form .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n@media (max-width: 767px) {\n .navbar-form .form-group {\n margin-bottom: 5px;\n }\n .navbar-form .form-group:last-child {\n margin-bottom: 0;\n }\n}\n@media (min-width: 768px) {\n .navbar-form {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n}\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.navbar-btn {\n margin-top: 8px;\n margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n margin-top: 14px;\n margin-bottom: 14px;\n}\n.navbar-text {\n margin-top: 15px;\n margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n .navbar-text {\n float: left;\n margin-left: 15px;\n margin-right: 15px;\n }\n}\n@media (min-width: 768px) {\n .navbar-left {\n float: left !important;\n }\n .navbar-right {\n float: right !important;\n margin-right: -15px;\n }\n .navbar-right ~ .navbar-right {\n margin-right: 0;\n }\n}\n.navbar-default {\n background-color: #f8f8f8;\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n color: #777777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n color: #5e5e5e;\n background-color: transparent;\n}\n.navbar-default .navbar-text {\n color: #777777;\n}\n.navbar-default .navbar-nav > li > a {\n color: #777777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n color: #333333;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n color: #555555;\n background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n color: #cccccc;\n background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n border-color: #dddddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n background-color: #dddddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n background-color: #888888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n background-color: #e7e7e7;\n color: #555555;\n}\n@media (max-width: 767px) {\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n color: #777777;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #333333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #555555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #cccccc;\n background-color: transparent;\n }\n}\n.navbar-default .navbar-link {\n color: #777777;\n}\n.navbar-default .navbar-link:hover {\n color: #333333;\n}\n.navbar-default .btn-link {\n color: #777777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n color: #333333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n color: #cccccc;\n}\n.navbar-inverse {\n background-color: #222222;\n border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n color: #ffffff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n color: #ffffff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n color: #ffffff;\n background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n color: #444444;\n background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n border-color: #333333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n background-color: #333333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n background-color: #ffffff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n background-color: #080808;\n color: #ffffff;\n}\n@media (max-width: 767px) {\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n border-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #ffffff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #ffffff;\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #444444;\n background-color: transparent;\n }\n}\n.navbar-inverse .navbar-link {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n color: #ffffff;\n}\n.navbar-inverse .btn-link {\n color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n color: #ffffff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n color: #444444;\n}\n.breadcrumb {\n padding: 8px 15px;\n margin-bottom: 20px;\n list-style: none;\n background-color: #f5f5f5;\n border-radius: 4px;\n}\n.breadcrumb > li {\n display: inline-block;\n}\n.breadcrumb > li + li:before {\n content: \"/\\00a0\";\n padding: 0 5px;\n color: #cccccc;\n}\n.breadcrumb > .active {\n color: #777777;\n}\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: 20px 0;\n border-radius: 4px;\n}\n.pagination > li {\n display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n position: relative;\n float: left;\n padding: 6px 12px;\n line-height: 1.42857143;\n text-decoration: none;\n color: #337ab7;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n margin-left: -1px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n margin-left: 0;\n border-bottom-left-radius: 4px;\n border-top-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n border-bottom-right-radius: 4px;\n border-top-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n color: #23527c;\n background-color: #eeeeee;\n border-color: #dddddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n z-index: 2;\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n cursor: default;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n color: #777777;\n background-color: #ffffff;\n border-color: #dddddd;\n cursor: not-allowed;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n padding: 10px 16px;\n font-size: 18px;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n border-bottom-left-radius: 6px;\n border-top-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n border-bottom-right-radius: 6px;\n border-top-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n padding: 5px 10px;\n font-size: 12px;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n border-bottom-left-radius: 3px;\n border-top-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n border-bottom-right-radius: 3px;\n border-top-right-radius: 3px;\n}\n.pager {\n padding-left: 0;\n margin: 20px 0;\n list-style: none;\n text-align: center;\n}\n.pager li {\n display: inline;\n}\n.pager li > a,\n.pager li > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n color: #777777;\n background-color: #ffffff;\n cursor: not-allowed;\n}\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: #ffffff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n color: #ffffff;\n text-decoration: none;\n cursor: pointer;\n}\n.label:empty {\n display: none;\n}\n.btn .label {\n position: relative;\n top: -1px;\n}\n.label-default {\n background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n background-color: #5e5e5e;\n}\n.label-primary {\n background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n background-color: #286090;\n}\n.label-success {\n background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n background-color: #449d44;\n}\n.label-info {\n background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n background-color: #31b0d5;\n}\n.label-warning {\n background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n background-color: #ec971f;\n}\n.label-danger {\n background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n background-color: #c9302c;\n}\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: 12px;\n font-weight: bold;\n color: #ffffff;\n line-height: 1;\n vertical-align: baseline;\n white-space: nowrap;\n text-align: center;\n background-color: #777777;\n border-radius: 10px;\n}\n.badge:empty {\n display: none;\n}\n.btn .badge {\n position: relative;\n top: -1px;\n}\n.btn-xs .badge {\n top: 0;\n padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n color: #ffffff;\n text-decoration: none;\n cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.list-group-item > .badge {\n float: right;\n}\n.list-group-item > .badge + .badge {\n margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n.jumbotron {\n padding: 30px 15px;\n margin-bottom: 30px;\n color: inherit;\n background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n color: inherit;\n}\n.jumbotron p {\n margin-bottom: 15px;\n font-size: 21px;\n font-weight: 200;\n}\n.jumbotron > hr {\n border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n border-radius: 6px;\n}\n.jumbotron .container {\n max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n .jumbotron {\n padding: 48px 0;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n padding-left: 60px;\n padding-right: 60px;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n font-size: 63px;\n }\n}\n.thumbnail {\n display: block;\n padding: 4px;\n margin-bottom: 20px;\n line-height: 1.42857143;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 4px;\n -webkit-transition: border 0.2s ease-in-out;\n -o-transition: border 0.2s ease-in-out;\n transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n margin-left: auto;\n margin-right: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n border-color: #337ab7;\n}\n.thumbnail .caption {\n padding: 9px;\n color: #333333;\n}\n.alert {\n padding: 15px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.alert h4 {\n margin-top: 0;\n color: inherit;\n}\n.alert .alert-link {\n font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n margin-bottom: 0;\n}\n.alert > p + p {\n margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n}\n.alert-success {\n background-color: #dff0d8;\n border-color: #d6e9c6;\n color: #3c763d;\n}\n.alert-success hr {\n border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n color: #2b542c;\n}\n.alert-info {\n background-color: #d9edf7;\n border-color: #bce8f1;\n color: #31708f;\n}\n.alert-info hr {\n border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n color: #245269;\n}\n.alert-warning {\n background-color: #fcf8e3;\n border-color: #faebcc;\n color: #8a6d3b;\n}\n.alert-warning hr {\n border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n color: #66512c;\n}\n.alert-danger {\n background-color: #f2dede;\n border-color: #ebccd1;\n color: #a94442;\n}\n.alert-danger hr {\n border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n@keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n.progress {\n overflow: hidden;\n height: 20px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: 12px;\n line-height: 20px;\n color: #ffffff;\n text-align: center;\n background-color: #337ab7;\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n -webkit-transition: width 0.6s ease;\n -o-transition: width 0.6s ease;\n transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n -webkit-animation: progress-bar-stripes 2s linear infinite;\n -o-animation: progress-bar-stripes 2s linear infinite;\n animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n.media-body {\n width: 10000px;\n}\n.media-object {\n display: block;\n}\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n.media-middle {\n vertical-align: middle;\n}\n.media-bottom {\n vertical-align: bottom;\n}\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n.list-group {\n margin-bottom: 20px;\n padding-left: 0;\n}\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n}\n.list-group-item:first-child {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n}\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\na.list-group-item {\n color: #555555;\n}\na.list-group-item .list-group-item-heading {\n color: #333333;\n}\na.list-group-item:hover,\na.list-group-item:focus {\n text-decoration: none;\n color: #555555;\n background-color: #f5f5f5;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n background-color: #eeeeee;\n color: #777777;\n cursor: not-allowed;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n z-index: 2;\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n color: #c7ddef;\n}\n.list-group-item-success {\n color: #3c763d;\n background-color: #dff0d8;\n}\na.list-group-item-success {\n color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-success:hover,\na.list-group-item-success:focus {\n color: #3c763d;\n background-color: #d0e9c6;\n}\na.list-group-item-success.active,\na.list-group-item-success.active:hover,\na.list-group-item-success.active:focus {\n color: #fff;\n background-color: #3c763d;\n border-color: #3c763d;\n}\n.list-group-item-info {\n color: #31708f;\n background-color: #d9edf7;\n}\na.list-group-item-info {\n color: #31708f;\n}\na.list-group-item-info .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-info:hover,\na.list-group-item-info:focus {\n color: #31708f;\n background-color: #c4e3f3;\n}\na.list-group-item-info.active,\na.list-group-item-info.active:hover,\na.list-group-item-info.active:focus {\n color: #fff;\n background-color: #31708f;\n border-color: #31708f;\n}\n.list-group-item-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n}\na.list-group-item-warning {\n color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-warning:hover,\na.list-group-item-warning:focus {\n color: #8a6d3b;\n background-color: #faf2cc;\n}\na.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus {\n color: #fff;\n background-color: #8a6d3b;\n border-color: #8a6d3b;\n}\n.list-group-item-danger {\n color: #a94442;\n background-color: #f2dede;\n}\na.list-group-item-danger {\n color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-danger:hover,\na.list-group-item-danger:focus {\n color: #a94442;\n background-color: #ebcccc;\n}\na.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus {\n color: #fff;\n background-color: #a94442;\n border-color: #a94442;\n}\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n.panel {\n margin-bottom: 20px;\n background-color: #ffffff;\n border: 1px solid transparent;\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n padding: 15px;\n}\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n color: inherit;\n}\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 16px;\n color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n color: inherit;\n}\n.panel-footer {\n padding: 10px 15px;\n background-color: #f5f5f5;\n border-top: 1px solid #dddddd;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n border-top: 0;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n border-bottom: 0;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n border-top-width: 0;\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n padding-left: 15px;\n padding-right: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n border-bottom-left-radius: 3px;\n border-bottom-right-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n border-top: 1px solid #dddddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n border-bottom: 0;\n}\n.panel > .table-responsive {\n border: 0;\n margin-bottom: 0;\n}\n.panel-group {\n margin-bottom: 20px;\n}\n.panel-group .panel {\n margin-bottom: 0;\n border-radius: 4px;\n}\n.panel-group .panel + .panel {\n margin-top: 5px;\n}\n.panel-group .panel-heading {\n border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n border-top: 1px solid #dddddd;\n}\n.panel-group .panel-footer {\n border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n border-bottom: 1px solid #dddddd;\n}\n.panel-default {\n border-color: #dddddd;\n}\n.panel-default > .panel-heading {\n color: #333333;\n background-color: #f5f5f5;\n border-color: #dddddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #dddddd;\n}\n.panel-default > .panel-heading .badge {\n color: #f5f5f5;\n background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #dddddd;\n}\n.panel-primary {\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #337ab7;\n}\n.panel-success {\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n color: #dff0d8;\n background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #d6e9c6;\n}\n.panel-info {\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n color: #d9edf7;\n background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #bce8f1;\n}\n.panel-warning {\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n color: #fcf8e3;\n background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #faebcc;\n}\n.panel-danger {\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n color: #f2dede;\n background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n}\n.embed-responsive.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n.embed-responsive.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border: 1px solid #e3e3e3;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n padding: 24px;\n border-radius: 6px;\n}\n.well-sm {\n padding: 9px;\n border-radius: 3px;\n}\n.close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000000;\n text-shadow: 0 1px 0 #ffffff;\n opacity: 0.2;\n filter: alpha(opacity=20);\n}\n.close:hover,\n.close:focus {\n color: #000000;\n text-decoration: none;\n cursor: pointer;\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\nbutton.close {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n.modal-open {\n overflow: hidden;\n}\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n -webkit-overflow-scrolling: touch;\n outline: 0;\n}\n.modal.fade .modal-dialog {\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -moz-transition: -moz-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0);\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n.modal-content {\n position: relative;\n background-color: #ffffff;\n border: 1px solid #999999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-clip: padding-box;\n outline: 0;\n}\n.modal-backdrop {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n background-color: #000000;\n}\n.modal-backdrop.fade {\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n min-height: 16.42857143px;\n}\n.modal-header .close {\n margin-top: -2px;\n}\n.modal-title {\n margin: 0;\n line-height: 1.42857143;\n}\n.modal-body {\n position: relative;\n padding: 15px;\n}\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n margin-left: 0;\n}\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n@media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto;\n }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n }\n .modal-sm {\n width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg {\n width: 900px;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n visibility: visible;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 12px;\n font-weight: normal;\n line-height: 1.4;\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.tooltip.in {\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.tooltip.top {\n margin-top: -3px;\n padding: 5px 0;\n}\n.tooltip.right {\n margin-left: 3px;\n padding: 0 5px;\n}\n.tooltip.bottom {\n margin-top: 3px;\n padding: 5px 0;\n}\n.tooltip.left {\n margin-left: -3px;\n padding: 0 5px;\n}\n.tooltip-inner {\n max-width: 200px;\n padding: 3px 8px;\n color: #ffffff;\n text-align: center;\n text-decoration: none;\n background-color: #000000;\n border-radius: 4px;\n}\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.top-left .tooltip-arrow {\n bottom: 0;\n right: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.top-right .tooltip-arrow {\n bottom: 0;\n left: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -5px;\n border-width: 5px 5px 5px 0;\n border-right-color: #000000;\n}\n.tooltip.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -5px;\n border-width: 5px 0 5px 5px;\n border-left-color: #000000;\n}\n.tooltip.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n top: 0;\n right: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n top: 0;\n left: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: none;\n max-width: 276px;\n padding: 1px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n font-weight: normal;\n line-height: 1.42857143;\n text-align: left;\n background-color: #ffffff;\n background-clip: padding-box;\n border: 1px solid #cccccc;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n white-space: normal;\n}\n.popover.top {\n margin-top: -10px;\n}\n.popover.right {\n margin-left: 10px;\n}\n.popover.bottom {\n margin-top: 10px;\n}\n.popover.left {\n margin-left: -10px;\n}\n.popover-title {\n margin: 0;\n padding: 8px 14px;\n font-size: 14px;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-radius: 5px 5px 0 0;\n}\n.popover-content {\n padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover > .arrow {\n border-width: 11px;\n}\n.popover > .arrow:after {\n border-width: 10px;\n content: \"\";\n}\n.popover.top > .arrow {\n left: 50%;\n margin-left: -11px;\n border-bottom-width: 0;\n border-top-color: #999999;\n border-top-color: rgba(0, 0, 0, 0.25);\n bottom: -11px;\n}\n.popover.top > .arrow:after {\n content: \" \";\n bottom: 1px;\n margin-left: -10px;\n border-bottom-width: 0;\n border-top-color: #ffffff;\n}\n.popover.right > .arrow {\n top: 50%;\n left: -11px;\n margin-top: -11px;\n border-left-width: 0;\n border-right-color: #999999;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right > .arrow:after {\n content: \" \";\n left: 1px;\n bottom: -10px;\n border-left-width: 0;\n border-right-color: #ffffff;\n}\n.popover.bottom > .arrow {\n left: 50%;\n margin-left: -11px;\n border-top-width: 0;\n border-bottom-color: #999999;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n top: -11px;\n}\n.popover.bottom > .arrow:after {\n content: \" \";\n top: 1px;\n margin-left: -10px;\n border-top-width: 0;\n border-bottom-color: #ffffff;\n}\n.popover.left > .arrow {\n top: 50%;\n right: -11px;\n margin-top: -11px;\n border-right-width: 0;\n border-left-color: #999999;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: #ffffff;\n bottom: -10px;\n}\n.carousel {\n position: relative;\n}\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n}\n.carousel-inner > .item {\n display: none;\n position: relative;\n -webkit-transition: 0.6s ease-in-out left;\n -o-transition: 0.6s ease-in-out left;\n transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n .carousel-inner > .item {\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\n -moz-transition: -moz-transform 0.6s ease-in-out;\n -o-transition: -o-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000;\n -moz-perspective: 1000;\n perspective: 1000;\n }\n .carousel-inner > .item.next,\n .carousel-inner > .item.active.right {\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.prev,\n .carousel-inner > .item.active.left {\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.next.left,\n .carousel-inner > .item.prev.right,\n .carousel-inner > .item.active {\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n left: 0;\n }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n display: block;\n}\n.carousel-inner > .active {\n left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n}\n.carousel-inner > .next {\n left: 100%;\n}\n.carousel-inner > .prev {\n left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n left: 0;\n}\n.carousel-inner > .active.left {\n left: -100%;\n}\n.carousel-inner > .active.right {\n left: 100%;\n}\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: 15%;\n opacity: 0.5;\n filter: alpha(opacity=50);\n font-size: 20px;\n color: #ffffff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-control.left {\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n left: auto;\n right: 0;\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n outline: 0;\n color: #ffffff;\n text-decoration: none;\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n line-height: 1;\n font-family: serif;\n}\n.carousel-control .icon-prev:before {\n content: '\\2039';\n}\n.carousel-control .icon-next:before {\n content: '\\203a';\n}\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n}\n.carousel-indicators li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid #ffffff;\n border-radius: 10px;\n cursor: pointer;\n background-color: #000 \\9;\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-indicators .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: #ffffff;\n}\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #ffffff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n font-size: 30px;\n }\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: -15px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-right: -15px;\n }\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n .carousel-indicators {\n bottom: 20px;\n }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-footer:before,\n.modal-footer:after {\n content: \" \";\n display: table;\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-footer:after {\n clear: both;\n}\n.center-block {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n.hidden {\n display: none !important;\n visibility: hidden !important;\n}\n.affix {\n position: fixed;\n}\n@-ms-viewport {\n width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n@media (max-width: 767px) {\n .visible-xs {\n display: block !important;\n }\n table.visible-xs {\n display: table;\n }\n tr.visible-xs {\n display: table-row !important;\n }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-block {\n display: block !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important;\n }\n table.visible-sm {\n display: table;\n }\n tr.visible-sm {\n display: table-row !important;\n }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important;\n }\n table.visible-md {\n display: table;\n }\n tr.visible-md {\n display: table-row !important;\n }\n th.visible-md,\n td.visible-md {\n display: table-cell !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg {\n display: block !important;\n }\n table.visible-lg {\n display: table;\n }\n tr.visible-lg {\n display: table-row !important;\n }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important;\n }\n}\n@media (max-width: 767px) {\n .hidden-xs {\n display: none !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important;\n }\n}\n@media (min-width: 1200px) {\n .hidden-lg {\n display: none !important;\n }\n}\n.visible-print {\n display: none !important;\n}\n@media print {\n .visible-print {\n display: block !important;\n }\n table.visible-print {\n display: table;\n }\n tr.visible-print {\n display: table-row !important;\n }\n th.visible-print,\n td.visible-print {\n display: table-cell !important;\n }\n}\n.visible-print-block {\n display: none !important;\n}\n@media print {\n .visible-print-block {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n}\n@media print {\n .visible-print-inline {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n}\n@media print {\n .visible-print-inline-block {\n display: inline-block !important;\n }\n}\n@media print {\n .hidden-print {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap.css.map */","/*! normalize.css v3.0.2 | MIT License | git.io/normalize */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS text size adjust after orientation change, without disabling\n// user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background-color: transparent;\n}\n\n//\n// Improve readability when focused and also mouse hovered in all browsers.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome\n// (include `-moz` to future-proof).\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box; // 2\n box-sizing: content-box;\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n box-shadow: none !important;\n text-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links that are fragment identifiers,\n // or use the `javascript:` pseudo protocol\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap specific changes start\n //\n // Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245\n // Once fixed, we can just straight up remove this.\n select {\n background: #fff !important;\n }\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n\n td,\n th {\n background-color: #fff !important;\n }\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// Star\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('@{icon-font-path}@{icon-font-name}.eot');\n src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\2a\"; } }\n.glyphicon-plus { &:before { content: \"\\2b\"; } }\n.glyphicon-euro,\n.glyphicon-eur { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n.glyphicon-cd { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up { &:before { content: \"\\e204\"; } }\n.glyphicon-copy { &:before { content: \"\\e205\"; } }\n.glyphicon-paste { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer { &:before { content: \"\\e210\"; } }\n.glyphicon-king { &:before { content: \"\\e211\"; } }\n.glyphicon-queen { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop { &:before { content: \"\\e214\"; } }\n.glyphicon-knight { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula { &:before { content: \"\\e216\"; } }\n.glyphicon-tent { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard { &:before { content: \"\\e218\"; } }\n.glyphicon-bed { &:before { content: \"\\e219\"; } }\n.glyphicon-apple { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin { &:before { content: \"\\e227\"; } }\n.glyphicon-yen { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted { &:before { content: \"\\e232\"; } }\n.glyphicon-education { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window { &:before { content: \"\\e237\"; } }\n.glyphicon-oil { &:before { content: \"\\e238\"; } }\n.glyphicon-grain { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top { &:before { content: \"\\e253\"; } }\n.glyphicon-console { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They will be removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// WebKit-style focus\n\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 300;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n background-color: @state-warning-bg;\n padding: .2em;\n}\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n.text-nowrap { white-space: nowrap; }\n\n// Transformation\n.text-lowercase { text-transform: lowercase; }\n.text-uppercase { text-transform: uppercase; }\n.text-capitalize { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n dd {\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n\n @media (min-width: @grid-float-breakpoint) {\n dt {\n float: left;\n width: (@dl-horizontal-offset - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @dl-horizontal-offset;\n }\n }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: '\\2014 \\00A0'; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n text-align: right;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: ''; }\n &:after {\n content: '\\00A0 \\2014'; // nbsp, em dash\n }\n }\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover {\n color: darken(@color, 10%);\n }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n background-color: @color;\n a&:hover {\n background-color: darken(@color, 10%);\n }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n }\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n left: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n right: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n background-color: @table-bg;\n}\ncaption {\n padding-top: @table-cell-padding;\n padding-bottom: @table-cell-padding;\n color: @text-muted;\n text-align: left;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(odd) {\n background-color: @table-bg-accent;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n background-color: @table-bg-hover;\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n @media screen and (max-width: @screen-xs-max) {\n width: 100%;\n margin-bottom: (@line-height-computed * 0.75);\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &:hover > .@{state},\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n}\n\n// Set the height of file controls to match text inputs\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius; // Note: This has no effect on s in some browsers, due to the limited stylability of s in CSS.\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n background-color: @input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n }\n\n // Reset height for `textarea`s\n textarea& {\n height: auto;\n }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n line-height: @input-height-base;\n\n &.input-sm,\n .input-group-sm & {\n line-height: @input-height-small;\n }\n\n &.input-lg,\n .input-group-lg & {\n line-height: @input-height-large;\n }\n }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n margin-bottom: 15px;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n\n label {\n min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because s don't inherit their parent's `cursor`.\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n &[disabled],\n &.disabled,\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n}\n// These classes are used directly on s\n.radio-inline,\n.checkbox-inline {\n &.disabled,\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n}\n// These classes are used on elements with descendants\n.radio,\n.checkbox {\n &.disabled,\n fieldset[disabled] & {\n label {\n cursor: @cursor-disabled;\n }\n }\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n // Size it appropriately next to real form controls\n padding-top: (@padding-base-vertical + 1);\n padding-bottom: (@padding-base-vertical + 1);\n // Remove default margin from `p`\n margin-bottom: 0;\n\n &.input-lg,\n &.input-sm {\n padding-left: 0;\n padding-right: 0;\n }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n .form-control {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n }\n .form-control-static {\n height: @input-height-small;\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n line-height: @line-height-small;\n }\n}\n\n.input-lg {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n .form-control {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n }\n .form-control-static {\n height: @input-height-large;\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-large;\n }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n // Enable absolute positioning\n position: relative;\n\n // Ensure icons don't overlap text\n .form-control {\n padding-right: (@input-height-base * 1.25);\n }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2; // Ensure icon is above input groups\n display: block;\n width: @input-height-base;\n height: @input-height-base;\n line-height: @input-height-base;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback {\n width: @input-height-large;\n height: @input-height-large;\n line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback {\n width: @input-height-small;\n height: @input-height-small;\n line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n & ~ .form-control-feedback {\n top: (@line-height-computed + 5); // Height of the `label` and its margin\n }\n &.sr-only ~ .form-control-feedback {\n top: 0;\n }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n display: block; // account for any element using help-block\n margin-top: 5px;\n margin-bottom: 10px;\n color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n // Kick in the inline\n @media (min-width: @screen-sm-min) {\n // Inline-block all the things for \"inline\"\n .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // In navbar-form, allow folks to *not* use `.form-group`\n .form-control {\n display: inline-block;\n width: auto; // Prevent labels from stacking above inputs in `.form-group`\n vertical-align: middle;\n }\n\n // Make static controls behave like regular ones\n .form-control-static {\n display: inline-block;\n }\n\n .input-group {\n display: inline-table;\n vertical-align: middle;\n\n .input-group-addon,\n .input-group-btn,\n .form-control {\n width: auto;\n }\n }\n\n // Input groups need that 100% width though\n .input-group > .form-control {\n width: 100%;\n }\n\n .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // Remove default margin on radios/checkboxes that were used for stacking, and\n // then undo the floating of radios and checkboxes to match.\n .radio,\n .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n\n label {\n padding-left: 0;\n }\n }\n .radio input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n\n // Re-override the feedback icon.\n .has-feedback .form-control-feedback {\n top: 0;\n }\n }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n // Consistent vertical alignment of radios and checkboxes\n //\n // Labels also get some reset styles, but that is scoped to a media query below.\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n // Account for padding we're adding to ensure the alignment and of help text\n // and other content below items\n .radio,\n .checkbox {\n min-height: (@line-height-computed + (@padding-base-vertical + 1));\n }\n\n // Make form groups behave like rows\n .form-group {\n .make-row();\n }\n\n // Reset spacing and right align labels, but scope to media queries so that\n // labels on narrow viewports stack the same as a default form example.\n @media (min-width: @screen-sm-min) {\n .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n right: (@grid-gutter-width / 2);\n }\n\n // Form group sizes\n //\n // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n // inputs and labels within a `.form-group`.\n .form-group-lg {\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: ((@padding-large-vertical * @line-height-large) + 1);\n }\n }\n }\n .form-group-sm {\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: (@padding-small-vertical + 1);\n }\n }\n }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline,\n &.radio label,\n &.checkbox label,\n &.radio-inline label,\n &.checkbox-inline label {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n border-color: @border-color;\n background-color: @background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @text-color;\n }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. ``\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n display: inline-block;\n margin-bottom: 0; // For input.btn\n font-weight: @btn-font-weight;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n white-space: nowrap;\n .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @border-radius-base);\n .user-select(none);\n\n &,\n &:active,\n &.active {\n &:focus,\n &.focus {\n .tab-focus();\n }\n }\n\n &:hover,\n &:focus,\n &.focus {\n color: @btn-default-color;\n text-decoration: none;\n }\n\n &:active,\n &.active {\n outline: 0;\n background-image: none;\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n pointer-events: none; // Future-proof disabling of clicks\n .opacity(.65);\n .box-shadow(none);\n }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n color: @link-color;\n font-weight: normal;\n border-radius: 0;\n\n &,\n &:active,\n &.active,\n &[disabled],\n fieldset[disabled] & {\n background-color: transparent;\n .box-shadow(none);\n }\n &,\n &:hover,\n &:focus,\n &:active {\n border-color: transparent;\n }\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n background-color: transparent;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @btn-link-disabled-color;\n text-decoration: none;\n }\n }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n // line-height: ensure even-numbered height of button next to large input\n .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n.btn-sm {\n // line-height: ensure proper height of button next to small input\n .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n.btn-xs {\n .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n &.btn-block {\n width: 100%;\n }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n opacity: 0;\n .transition(opacity .15s linear);\n &.in {\n opacity: 1;\n }\n}\n\n.collapse {\n display: none;\n visibility: hidden;\n\n &.in { display: block; visibility: visible; }\n tr&.in { display: table-row; }\n tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n .transition-property(~\"height, visibility\");\n .transition-duration(.35s);\n .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: @caret-width-base solid;\n border-right: @caret-width-base solid transparent;\n border-left: @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: @zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0; // override default ul\n list-style: none;\n font-size: @font-size-base;\n text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n background-color: @dropdown-bg;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: @border-radius-base;\n .box-shadow(0 6px 12px rgba(0,0,0,.175));\n background-clip: padding-box;\n\n // Aligns the dropdown menu to right\n //\n // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n &.pull-right {\n right: 0;\n left: auto;\n }\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: @line-height-base;\n color: @dropdown-link-color;\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n &:hover,\n &:focus {\n text-decoration: none;\n color: @dropdown-link-hover-color;\n background-color: @dropdown-link-hover-bg;\n }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n text-decoration: none;\n outline: 0;\n background-color: @dropdown-link-active-bg;\n }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-disabled-color;\n }\n\n // Nuke hover/focus effects\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none; // Remove CSS gradient\n .reset-filter();\n cursor: @cursor-disabled;\n }\n}\n\n// Open state for the dropdown\n.open {\n // Show the menu\n > .dropdown-menu {\n display: block;\n }\n\n // Remove the outline when :focus is triggered\n > a {\n outline: 0;\n }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n left: auto; // Reset the default from `.dropdown-menu`\n right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: @font-size-small;\n line-height: @line-height-base;\n color: @dropdown-header-color;\n white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n // Reverse the caret\n .caret {\n border-top: 0;\n border-bottom: @caret-width-base solid;\n content: \"\";\n }\n // Different positioning for bottom up menu\n .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .dropdown-menu-right();\n }\n // Necessary for overrides of the default right aligned menu.\n // Will remove come v4 in all likelihood.\n .dropdown-menu-left {\n .dropdown-menu-left();\n }\n }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle; // match .btn alignment given font-size hack above\n > .btn {\n position: relative;\n float: left;\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active,\n &.active {\n z-index: 2;\n }\n }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n .btn + .btn,\n .btn + .btn-group,\n .btn-group + .btn,\n .btn-group + .btn-group {\n margin-left: -1px;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n margin-left: -5px; // Offset the first child's margin\n &:extend(.clearfix all);\n\n .btn-group,\n .input-group {\n float: left;\n }\n > .btn,\n > .btn-group,\n > .input-group {\n margin-left: 5px;\n }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n margin-left: 0;\n &:not(:last-child):not(.dropdown-toggle) {\n .border-right-radius(0);\n }\n}\n// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-right-radius(0);\n }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n // Show no shadow for `.btn-link` since it has no other button styles.\n &.btn-link {\n .box-shadow(none);\n }\n}\n\n\n// Reposition the caret\n.btn .caret {\n margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n border-width: @caret-width-large @caret-width-large 0;\n border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n > .btn,\n > .btn-group,\n > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n }\n\n // Clear floats so dropdown menus can be properly placed\n > .btn-group {\n &:extend(.clearfix all);\n > .btn {\n float: none;\n }\n }\n\n > .btn + .btn,\n > .btn + .btn-group,\n > .btn-group + .btn,\n > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n }\n}\n\n.btn-group-vertical > .btn {\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n &:first-child:not(:last-child) {\n border-top-right-radius: @border-radius-base;\n .border-bottom-radius(0);\n }\n &:last-child:not(:first-child) {\n border-bottom-left-radius: @border-radius-base;\n .border-top-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-bottom-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n > .btn,\n > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n }\n > .btn-group .btn {\n width: 100%;\n }\n\n > .btn-group .dropdown-menu {\n left: auto;\n }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n > .btn,\n > .btn-group > .btn {\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0,0,0,0);\n pointer-events: none;\n }\n }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n position: relative; // For dropdowns\n display: table;\n border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n // Undo padding and float of grid classes\n &[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n }\n\n .form-control {\n // Ensure that the input is always above the *appended* addon button for\n // proper border colors.\n position: relative;\n z-index: 2;\n\n // IE9 fubars the placeholder attribute in text inputs and the arrows on\n // select elements in input groups. To fix it, we float the input. Details:\n // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n float: left;\n\n width: 100%;\n margin-bottom: 0;\n }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 1;\n color: @input-color;\n text-align: center;\n background-color: @input-group-addon-bg;\n border: 1px solid @input-group-addon-border-color;\n border-radius: @border-radius-base;\n\n // Sizing\n &.input-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n border-radius: @border-radius-small;\n }\n &.input-lg {\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n border-radius: @border-radius-large;\n }\n\n // Nuke default margins from checkboxes and radios to vertically center within.\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin-top: 0;\n }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n .border-right-radius(0);\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n .border-left-radius(0);\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n position: relative;\n // Jankily prevent input button groups from wrapping with `white-space` and\n // `font-size` in combination with `inline-block` on buttons.\n font-size: 0;\n white-space: nowrap;\n\n // Negative margin for spacing, position for bringing hovered/focused/actived\n // element above the siblings.\n > .btn {\n position: relative;\n + .btn {\n margin-left: -1px;\n }\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active {\n z-index: 2;\n }\n }\n\n // Negative margin to only have a 1px border between the two\n &:first-child {\n > .btn,\n > .btn-group {\n margin-right: -1px;\n }\n }\n &:last-child {\n > .btn,\n > .btn-group {\n margin-left: -1px;\n }\n }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n margin-bottom: 0;\n padding-left: 0; // Override default ul/ol\n list-style: none;\n &:extend(.clearfix all);\n\n > li {\n position: relative;\n display: block;\n\n > a {\n position: relative;\n display: block;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @nav-link-hover-bg;\n }\n }\n\n // Disabled state sets text to gray and nukes hover/tab effects\n &.disabled > a {\n color: @nav-disabled-link-color;\n\n &:hover,\n &:focus {\n color: @nav-disabled-link-hover-color;\n text-decoration: none;\n background-color: transparent;\n cursor: @cursor-disabled;\n }\n }\n }\n\n // Open dropdowns\n .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @nav-link-hover-bg;\n border-color: @link-color;\n }\n }\n\n // Nav dividers (deprecated with v3.0.1)\n //\n // This should have been removed in v3 with the dropping of `.nav-list`, but\n // we missed it. We don't currently support this anywhere, but in the interest\n // of maintaining backward compatibility in case you use it, it's deprecated.\n .nav-divider {\n .nav-divider();\n }\n\n // Prevent IE8 from misplacing imgs\n //\n // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n > li > a > img {\n max-width: none;\n }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n border-bottom: 1px solid @nav-tabs-border-color;\n > li {\n float: left;\n // Make the list-items overlay the bottom border\n margin-bottom: -1px;\n\n // Actual tabs (as links)\n > a {\n margin-right: 2px;\n line-height: @line-height-base;\n border: 1px solid transparent;\n border-radius: @border-radius-base @border-radius-base 0 0;\n &:hover {\n border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n }\n }\n\n // Active state, and its :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-tabs-active-link-hover-color;\n background-color: @nav-tabs-active-link-hover-bg;\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-bottom-color: transparent;\n cursor: default;\n }\n }\n }\n // pulling this in mainly for less shorthand\n &.nav-justified {\n .nav-justified();\n .nav-tabs-justified();\n }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n float: left;\n\n // Links rendered as pills\n > a {\n border-radius: @nav-pills-border-radius;\n }\n + li {\n margin-left: 2px;\n }\n\n // Active state\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-pills-active-link-hover-color;\n background-color: @nav-pills-active-link-hover-bg;\n }\n }\n }\n}\n\n\n// Stacked pills\n.nav-stacked {\n > li {\n float: none;\n + li {\n margin-top: 2px;\n margin-left: 0; // no need for this gap between nav items\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n width: 100%;\n\n > li {\n float: none;\n > a {\n text-align: center;\n margin-bottom: 5px;\n }\n }\n\n > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n }\n\n @media (min-width: @screen-sm-min) {\n > li {\n display: table-cell;\n width: 1%;\n > a {\n margin-bottom: 0;\n }\n }\n }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n border-bottom: 0;\n\n > li > a {\n // Override margin from .nav-tabs\n margin-right: 0;\n border-radius: @border-radius-base;\n }\n\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border: 1px solid @nav-tabs-justified-link-border-color;\n }\n\n @media (min-width: @screen-sm-min) {\n > li > a {\n border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border-bottom-color: @nav-tabs-justified-active-link-border-color;\n }\n }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n > .tab-pane {\n display: none;\n visibility: hidden;\n }\n > .active {\n display: block;\n visibility: visible;\n }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n // make dropdown border overlap tab border\n margin-top: -1px;\n // Remove the top rounded corners here since there is a hard edge above the menu\n .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-margin-bottom;\n border: 1px solid transparent;\n\n // Prevent floats from breaking the navbar\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n overflow-x: visible;\n padding-right: @navbar-padding-horizontal;\n padding-left: @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n &:extend(.clearfix all);\n -webkit-overflow-scrolling: touch;\n\n &.in {\n overflow-y: auto;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.collapse {\n display: block !important;\n visibility: visible !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n &.in {\n overflow-y: visible;\n }\n\n // Undo the collapse side padding for navbars with containers to ensure\n // alignment of right-aligned contents.\n .navbar-fixed-top &,\n .navbar-static-top &,\n .navbar-fixed-bottom & {\n padding-left: 0;\n padding-right: 0;\n }\n }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n .navbar-collapse {\n max-height: @navbar-collapse-max-height;\n\n @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n max-height: 200px;\n }\n }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n > .navbar-header,\n > .navbar-collapse {\n margin-right: -@navbar-padding-horizontal;\n margin-left: -@navbar-padding-horizontal;\n\n @media (min-width: @grid-float-breakpoint) {\n margin-right: 0;\n margin-left: 0;\n }\n }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n z-index: @zindex-navbar;\n border-width: 0 0 1px;\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: @zindex-navbar-fixed;\n\n // Undo the rounded corners\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0; // override .navbar defaults\n border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n float: left;\n padding: @navbar-padding-vertical @navbar-padding-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n height: @navbar-height;\n\n &:hover,\n &:focus {\n text-decoration: none;\n }\n\n > img {\n display: block;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: @navbar-padding-horizontal;\n padding: 9px 10px;\n .navbar-vertical-align(34px);\n background-color: transparent;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n border-radius: @border-radius-base;\n\n // We remove the `outline` here, but later compensate by attaching `:hover`\n // styles to `:focus`.\n &:focus {\n outline: 0;\n }\n\n // Bars\n .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n }\n .icon-bar + .icon-bar {\n margin-top: 4px;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n display: none;\n }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: @line-height-computed;\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n > li > a,\n .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n > li > a {\n line-height: @line-height-computed;\n &:hover,\n &:focus {\n background-image: none;\n }\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin: 0;\n\n > li {\n float: left;\n > a {\n padding-top: @navbar-padding-vertical;\n padding-bottom: @navbar-padding-vertical;\n }\n }\n }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n margin-left: -@navbar-padding-horizontal;\n margin-right: -@navbar-padding-horizontal;\n padding: 10px @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n\n // Mixin behavior for optimum display\n .form-inline();\n\n .form-group {\n @media (max-width: @grid-float-breakpoint-max) {\n margin-bottom: 5px;\n\n &:last-child {\n margin-bottom: 0;\n }\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@input-height-base);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n .box-shadow(none);\n }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n .border-top-radius(@navbar-border-radius);\n .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n .navbar-vertical-align(@input-height-base);\n\n &.btn-sm {\n .navbar-vertical-align(@input-height-small);\n }\n &.btn-xs {\n .navbar-vertical-align(22);\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n .navbar-vertical-align(@line-height-computed);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin-left: @navbar-padding-horizontal;\n margin-right: @navbar-padding-horizontal;\n }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-left { .pull-left(); }\n .navbar-right {\n .pull-right();\n margin-right: -@navbar-padding-horizontal;\n\n ~ .navbar-right {\n margin-right: 0;\n }\n }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n background-color: @navbar-default-bg;\n border-color: @navbar-default-border;\n\n .navbar-brand {\n color: @navbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-default-brand-hover-color;\n background-color: @navbar-default-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: @navbar-default-border;\n }\n\n // Dropdown menu items\n .navbar-nav {\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-default-link-active-bg;\n color: @navbar-default-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n }\n }\n }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n background-color: @navbar-inverse-bg;\n border-color: @navbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-brand-hover-color;\n background-color: @navbar-inverse-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-inverse-link-active-bg;\n color: @navbar-inverse-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-inverse-border;\n }\n .divider {\n background-color: @navbar-inverse-border;\n }\n > li > a {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n }\n }\n }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n .clearfix();\n}\n.center-block {\n .center-block();\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n display: none !important;\n visibility: hidden !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n position: fixed;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n margin-bottom: @line-height-computed;\n list-style: none;\n background-color: @breadcrumb-bg;\n border-radius: @border-radius-base;\n\n > li {\n display: inline-block;\n\n + li:before {\n content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n padding: 0 5px;\n color: @breadcrumb-color;\n }\n }\n\n > .active {\n color: @breadcrumb-active-color;\n }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: @line-height-computed 0;\n border-radius: @border-radius-base;\n\n > li {\n display: inline; // Remove list-style and block-level defaults\n > a,\n > span {\n position: relative;\n float: left; // Collapse white-space\n padding: @padding-base-vertical @padding-base-horizontal;\n line-height: @line-height-base;\n text-decoration: none;\n color: @pagination-color;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n margin-left: -1px;\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-left-radius(@border-radius-base);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius-base);\n }\n }\n }\n\n > li > a,\n > li > span {\n &:hover,\n &:focus {\n color: @pagination-hover-color;\n background-color: @pagination-hover-bg;\n border-color: @pagination-hover-border;\n }\n }\n\n > .active > a,\n > .active > span {\n &,\n &:hover,\n &:focus {\n z-index: 2;\n color: @pagination-active-color;\n background-color: @pagination-active-bg;\n border-color: @pagination-active-border;\n cursor: default;\n }\n }\n\n > .disabled {\n > span,\n > span:hover,\n > span:focus,\n > a,\n > a:hover,\n > a:focus {\n color: @pagination-disabled-color;\n background-color: @pagination-disabled-bg;\n border-color: @pagination-disabled-border;\n cursor: @cursor-disabled;\n }\n }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n padding-left: 0;\n margin: @line-height-computed 0;\n list-style: none;\n text-align: center;\n &:extend(.clearfix all);\n li {\n display: inline;\n > a,\n > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: @pager-bg;\n border: 1px solid @pager-border;\n border-radius: @pager-border-radius;\n }\n\n > a:hover,\n > a:focus {\n text-decoration: none;\n background-color: @pager-hover-bg;\n }\n }\n\n .next {\n > a,\n > span {\n float: right;\n }\n }\n\n .previous {\n > a,\n > span {\n float: left;\n }\n }\n\n .disabled {\n > a,\n > a:hover,\n > a:focus,\n > span {\n color: @pager-disabled-color;\n background-color: @pager-bg;\n cursor: @cursor-disabled;\n }\n }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: @label-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n\n // Add hover effects, but only for links\n a& {\n &:hover,\n &:focus {\n color: @label-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Empty labels collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for labels in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n .label-variant(@label-default-bg);\n}\n\n.label-primary {\n .label-variant(@label-primary-bg);\n}\n\n.label-success {\n .label-variant(@label-success-bg);\n}\n\n.label-info {\n .label-variant(@label-info-bg);\n}\n\n.label-warning {\n .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n background-color: @color;\n\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: @font-size-small;\n font-weight: @badge-font-weight;\n color: @badge-color;\n line-height: @badge-line-height;\n vertical-align: baseline;\n white-space: nowrap;\n text-align: center;\n background-color: @badge-bg;\n border-radius: @badge-border-radius;\n\n // Empty badges collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for badges in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n \n .btn-xs & {\n top: 0;\n padding: 1px 5px;\n }\n\n // Hover state, but only for links\n a& {\n &:hover,\n &:focus {\n color: @badge-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Account for badges in navs\n .list-group-item.active > &,\n .nav-pills > .active > a > & {\n color: @badge-active-color;\n background-color: @badge-active-bg;\n }\n \n .list-group-item > & {\n float: right;\n }\n \n .list-group-item > & + & {\n margin-right: 5px;\n }\n \n .nav-pills > li > a > & {\n margin-left: 3px;\n }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n padding: @jumbotron-padding (@jumbotron-padding / 2);\n margin-bottom: @jumbotron-padding;\n color: @jumbotron-color;\n background-color: @jumbotron-bg;\n\n h1,\n .h1 {\n color: @jumbotron-heading-color;\n }\n \n p {\n margin-bottom: (@jumbotron-padding / 2);\n font-size: @jumbotron-font-size;\n font-weight: 200;\n }\n\n > hr {\n border-top-color: darken(@jumbotron-bg, 10%);\n }\n\n .container &,\n .container-fluid & {\n border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n }\n\n .container {\n max-width: 100%;\n }\n\n @media screen and (min-width: @screen-sm-min) {\n padding: (@jumbotron-padding * 1.6) 0;\n\n .container &,\n .container-fluid & {\n padding-left: (@jumbotron-padding * 2);\n padding-right: (@jumbotron-padding * 2);\n }\n\n h1,\n .h1 {\n font-size: (@font-size-base * 4.5);\n }\n }\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n display: block;\n padding: @thumbnail-padding;\n margin-bottom: @line-height-computed;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(border .2s ease-in-out);\n\n > img,\n a > img {\n &:extend(.img-responsive);\n margin-left: auto;\n margin-right: auto;\n }\n\n // Add a hover state for linked versions only\n a&:hover,\n a&:focus,\n a&.active {\n border-color: @link-color;\n }\n\n // Image captions\n .caption {\n padding: @thumbnail-caption-padding;\n color: @thumbnail-caption-color;\n }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n padding: @alert-padding;\n margin-bottom: @line-height-computed;\n border: 1px solid transparent;\n border-radius: @alert-border-radius;\n\n // Headings for larger alerts\n h4 {\n margin-top: 0;\n // Specified for the h4 to prevent conflicts of changing @headings-color\n color: inherit;\n }\n \n // Provide class for links that match alerts\n .alert-link {\n font-weight: @alert-link-font-weight;\n }\n\n // Improve alignment and spacing of inner content\n > p,\n > ul {\n margin-bottom: 0;\n }\n \n > p + p {\n margin-top: 5px;\n }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n padding-right: (@alert-padding + 20);\n\n // Adjust close link position\n .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n overflow: hidden;\n height: @line-height-computed;\n margin-bottom: @line-height-computed;\n background-color: @progress-bg;\n border-radius: @progress-border-radius;\n .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: @font-size-small;\n line-height: @line-height-computed;\n color: @progress-bar-color;\n text-align: center;\n background-color: @progress-bar-bg;\n .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n #gradient > .striped();\n background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n background-color: @color;\n\n // Deprecated parent class requirement as of v3.2.0\n .progress-striped & {\n #gradient > .striped();\n }\n}\n",".media {\n // Proper spacing between instances of .media\n margin-top: 15px;\n\n &:first-child {\n margin-top: 0;\n }\n}\n\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n\n.media-body {\n width: 10000px;\n}\n\n.media-object {\n display: block;\n}\n\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n\n.media-middle {\n vertical-align: middle;\n}\n\n.media-bottom {\n vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on , , or .\n\n.list-group {\n // No need to set list-style: none; since .list-group-item is block level\n margin-bottom: 20px;\n padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n // Place the border on the list items and negative margin up for better styling\n margin-bottom: -1px;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n margin-bottom: 0;\n .border-bottom-radius(@list-group-border-radius);\n }\n}\n\n\n// Linked list items\n//\n// Use anchor elements instead of `li`s or `div`s to create linked list items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Hover state\n &:hover,\n &:focus {\n text-decoration: none;\n color: @list-group-link-hover-color;\n background-color: @list-group-hover-bg;\n }\n}\n\n.list-group-item {\n // Disabled state\n &.disabled,\n &.disabled:hover,\n &.disabled:focus {\n background-color: @list-group-disabled-bg;\n color: @list-group-disabled-color;\n cursor: @cursor-disabled;\n\n // Force color to inherit for custom content\n .list-group-item-heading {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-disabled-text-color;\n }\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: @list-group-active-color;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n\n // Force color to inherit for custom content\n .list-group-item-heading,\n .list-group-item-heading > small,\n .list-group-item-heading > .small {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-active-text-color;\n }\n }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a& {\n color: @color;\n\n .list-group-item-heading {\n color: inherit;\n }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n margin-bottom: @line-height-computed;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-radius: @panel-border-radius;\n .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n padding: @panel-body-padding;\n &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n padding: @panel-heading-padding;\n border-bottom: 1px solid transparent;\n .border-top-radius((@panel-border-radius - 1));\n\n > .dropdown .dropdown-toggle {\n color: inherit;\n }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: ceil((@font-size-base * 1.125));\n color: inherit;\n\n > a,\n > small,\n > .small,\n > small > a,\n > .small > a {\n color: inherit;\n }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: @panel-footer-padding;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group,\n > .panel-collapse > .list-group {\n margin-bottom: 0;\n\n .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n }\n\n // Add border top radius for first one\n &:first-child {\n .list-group-item:first-child {\n border-top: 0;\n .border-top-radius((@panel-border-radius - 1));\n }\n }\n // Add border bottom radius for last one\n &:last-child {\n .list-group-item:last-child {\n border-bottom: 0;\n .border-bottom-radius((@panel-border-radius - 1));\n }\n }\n }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n .list-group-item:first-child {\n border-top-width: 0;\n }\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n > .table,\n > .table-responsive > .table,\n > .panel-collapse > .table {\n margin-bottom: 0;\n\n caption {\n padding-left: @panel-body-padding;\n padding-right: @panel-body-padding;\n }\n }\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n .border-top-radius((@panel-border-radius - 1));\n\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n border-top-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-top-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n .border-bottom-radius((@panel-border-radius - 1));\n\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n border-bottom-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n > .panel-body + .table,\n > .panel-body + .table-responsive,\n > .table + .panel-body,\n > .table-responsive + .panel-body {\n border-top: 1px solid @table-border-color;\n }\n > .table > tbody:first-child > tr:first-child th,\n > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n }\n > .table-bordered,\n > .table-responsive > .table-bordered {\n border: 0;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n > thead,\n > tbody {\n > tr:first-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n > tbody,\n > tfoot {\n > tr:last-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n }\n > .table-responsive {\n border: 0;\n margin-bottom: 0;\n }\n}\n\n\n// Collapsable panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n margin-bottom: @line-height-computed;\n\n // Tighten up margin so it's only between panels\n .panel {\n margin-bottom: 0;\n border-radius: @panel-border-radius;\n\n + .panel {\n margin-top: 5px;\n }\n }\n\n .panel-heading {\n border-bottom: 0;\n\n + .panel-collapse > .panel-body,\n + .panel-collapse > .list-group {\n border-top: 1px solid @panel-inner-border;\n }\n }\n\n .panel-footer {\n border-top: 0;\n + .panel-collapse .panel-body {\n border-bottom: 1px solid @panel-inner-border;\n }\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse > .panel-body {\n border-top-color: @border;\n }\n .badge {\n color: @heading-bg-color;\n background-color: @heading-text-color;\n }\n }\n & > .panel-footer {\n + .panel-collapse > .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n\n .embed-responsive-item,\n iframe,\n embed,\n object,\n video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n }\n\n // Modifier class for 16:9 aspect ratio\n &.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n }\n\n // Modifier class for 4:3 aspect ratio\n &.embed-responsive-4by3 {\n padding-bottom: 75%;\n }\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: @well-bg;\n border: 1px solid @well-border;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n blockquote {\n border-color: #ddd;\n border-color: rgba(0,0,0,.15);\n }\n}\n\n// Sizes\n.well-lg {\n padding: 24px;\n border-radius: @border-radius-large;\n}\n.well-sm {\n padding: 9px;\n border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n float: right;\n font-size: (@font-size-base * 1.5);\n font-weight: @close-font-weight;\n line-height: 1;\n color: @close-color;\n text-shadow: @close-text-shadow;\n .opacity(.2);\n\n &:hover,\n &:focus {\n color: @close-color;\n text-decoration: none;\n cursor: pointer;\n .opacity(.5);\n }\n\n // Additional properties for button version\n // iOS requires the button element instead of an anchor tag.\n // If you want the anchor version, it requires `href=\"#\"`.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n button& {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal;\n -webkit-overflow-scrolling: touch;\n\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n\n // When fading in the modal, animate it to slide down\n &.fade .modal-dialog {\n .translate(0, -25%);\n .transition-transform(~\"0.3s ease-out\");\n }\n &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n background-color: @modal-content-bg;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 3px 9px rgba(0,0,0,.5));\n background-clip: padding-box;\n // Remove focus outline from opened modal\n outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n background-color: @modal-backdrop-bg;\n // Fade for backdrop\n &.fade { .opacity(0); }\n &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n padding: @modal-title-padding;\n border-bottom: 1px solid @modal-header-border-color;\n min-height: (@modal-title-padding + @modal-title-line-height);\n}\n// Close icon\n.modal-header .close {\n margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n margin: 0;\n line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n padding: @modal-inner-padding;\n text-align: right; // right align buttons\n border-top: 1px solid @modal-footer-border-color;\n &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-left: -1px;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-left: 0;\n }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n width: @modal-md;\n margin: 30px auto;\n }\n .modal-content {\n .box-shadow(0 5px 15px rgba(0,0,0,.5));\n }\n\n // Modal sizes\n .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n position: absolute;\n z-index: @zindex-tooltip;\n display: block;\n visibility: visible;\n // Reset font and text properties given new insertion method\n font-family: @font-family-base;\n font-size: @font-size-small;\n font-weight: normal;\n line-height: 1.4;\n .opacity(0);\n\n &.in { .opacity(@tooltip-opacity); }\n &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; }\n &.right { margin-left: 3px; padding: 0 @tooltip-arrow-width; }\n &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; }\n &.left { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: @tooltip-max-width;\n padding: 3px 8px;\n color: @tooltip-color;\n text-align: center;\n text-decoration: none;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n &.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-left .tooltip-arrow {\n bottom: 0;\n right: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-right .tooltip-arrow {\n bottom: 0;\n left: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n border-right-color: @tooltip-arrow-color;\n }\n &.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-left-color: @tooltip-arrow-color;\n }\n &.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-left .tooltip-arrow {\n top: 0;\n right: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-right .tooltip-arrow {\n top: 0;\n left: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: @zindex-popover;\n display: none;\n max-width: @popover-max-width;\n padding: 1px;\n // Reset font and text properties given new insertion method\n font-family: @font-family-base;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: @line-height-base;\n text-align: left;\n background-color: @popover-bg;\n background-clip: padding-box;\n border: 1px solid @popover-fallback-border-color;\n border: 1px solid @popover-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n // Overrides for proper insertion\n white-space: normal;\n\n // Offset the popover to account for the popover arrow\n &.top { margin-top: -@popover-arrow-width; }\n &.right { margin-left: @popover-arrow-width; }\n &.bottom { margin-top: @popover-arrow-width; }\n &.left { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n margin: 0; // reset heading margin\n padding: 8px 14px;\n font-size: @font-size-base;\n background-color: @popover-title-bg;\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\n border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n &,\n &:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n}\n.popover > .arrow {\n border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n border-width: @popover-arrow-width;\n content: \"\";\n}\n\n.popover {\n &.top > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-top-color: @popover-arrow-outer-color;\n bottom: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n bottom: 1px;\n margin-left: -@popover-arrow-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-color;\n }\n }\n &.right > .arrow {\n top: 50%;\n left: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-right-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n left: 1px;\n bottom: -@popover-arrow-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-color;\n }\n }\n &.bottom > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-bottom-color: @popover-arrow-outer-color;\n top: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n top: 1px;\n margin-left: -@popover-arrow-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-color;\n }\n }\n\n &.left > .arrow {\n top: 50%;\n right: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-width: 0;\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-left-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: @popover-arrow-color;\n bottom: -@popover-arrow-width;\n }\n }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n\n > .item {\n display: none;\n position: relative;\n .transition(.6s ease-in-out left);\n\n // Account for jankitude on images\n > img,\n > a > img {\n &:extend(.img-responsive);\n line-height: 1;\n }\n\n // WebKit CSS3 transforms for supported devices\n @media all and (transform-3d), (-webkit-transform-3d) {\n .transition-transform(~'0.6s ease-in-out');\n .backface-visibility(~'hidden');\n .perspective(1000);\n\n &.next,\n &.active.right {\n .translate3d(100%, 0, 0);\n left: 0;\n }\n &.prev,\n &.active.left {\n .translate3d(-100%, 0, 0);\n left: 0;\n }\n &.next.left,\n &.prev.right,\n &.active {\n .translate3d(0, 0, 0);\n left: 0;\n }\n }\n }\n\n > .active,\n > .next,\n > .prev {\n display: block;\n }\n\n > .active {\n left: 0;\n }\n\n > .next,\n > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n > .next {\n left: 100%;\n }\n > .prev {\n left: -100%;\n }\n > .next.left,\n > .prev.right {\n left: 0;\n }\n\n > .active.left {\n left: -100%;\n }\n > .active.right {\n left: 100%;\n }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: @carousel-control-width;\n .opacity(@carousel-control-opacity);\n font-size: @carousel-control-font-size;\n color: @carousel-control-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n // We can't have this transition here because WebKit cancels the carousel\n // animation if you trip this while in the middle of another animation.\n\n // Set gradients for backgrounds\n &.left {\n #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n }\n &.right {\n left: auto;\n right: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n outline: 0;\n color: @carousel-control-color;\n text-decoration: none;\n .opacity(.9);\n }\n\n // Toggles\n .icon-prev,\n .icon-next,\n .glyphicon-chevron-left,\n .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n }\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n }\n .icon-prev,\n .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n line-height: 1;\n font-family: serif;\n }\n\n\n .icon-prev {\n &:before {\n content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n }\n }\n .icon-next {\n &:before {\n content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n }\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n\n li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid @carousel-indicator-border-color;\n border-radius: 10px;\n cursor: pointer;\n\n // IE8-9 hack for event handling\n //\n // Internet Explorer 8-9 does not support clicks on elements without a set\n // `background-color`. We cannot use `filter` since that's not viewed as a\n // background color by the browser. Thus, a hack is needed.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n //\n // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n // set alpha transparency for the best results possible.\n background-color: #000 \\9; // IE8\n background-color: rgba(0,0,0,0); // IE9\n }\n .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: @carousel-caption-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n & .btn {\n text-shadow: none; // No shadow for button elements in carousel-caption\n }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicon-chevron-left,\n .glyphicon-chevron-right,\n .icon-prev,\n .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n font-size: 30px;\n }\n .glyphicon-chevron-left,\n .icon-prev {\n margin-left: -15px;\n }\n .glyphicon-chevron-right,\n .icon-next {\n margin-right: -15px;\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n\n // Move up the indicators\n .carousel-indicators {\n bottom: 20px;\n }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n","// Center-align a block level element\n\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (will be removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n\n.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n}\n.visible-xs-block {\n @media (max-width: @screen-xs-max) {\n display: block !important;\n }\n}\n.visible-xs-inline {\n @media (max-width: @screen-xs-max) {\n display: inline !important;\n }\n}\n.visible-xs-inline-block {\n @media (max-width: @screen-xs-max) {\n display: inline-block !important;\n }\n}\n\n.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n}\n.visible-sm-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: block !important;\n }\n}\n.visible-sm-inline {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline !important;\n }\n}\n.visible-sm-inline-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline-block !important;\n }\n}\n\n.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n}\n.visible-md-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: block !important;\n }\n}\n.visible-md-inline {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline !important;\n }\n}\n.visible-md-inline-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline-block !important;\n }\n}\n\n.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n}\n.visible-lg-block {\n @media (min-width: @screen-lg-min) {\n display: block !important;\n }\n}\n.visible-lg-inline {\n @media (min-width: @screen-lg-min) {\n display: inline !important;\n }\n}\n.visible-lg-inline-block {\n @media (min-width: @screen-lg-min) {\n display: inline-block !important;\n }\n}\n\n.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n}\n.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n}\n.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n}\n.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n .responsive-invisibility();\n\n @media print {\n .responsive-visibility();\n }\n}\n.visible-print-block {\n display: none !important;\n\n @media print {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n\n @media print {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n\n @media print {\n display: inline-block !important;\n }\n}\n\n.hidden-print {\n @media print {\n .responsive-invisibility();\n }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n}\n"]} \ No newline at end of file diff --git a/demo-web/static/css/bootstrap.min.css b/demo-web/static/css/bootstrap.min.css deleted file mode 100644 index 28f154de..00000000 --- a/demo-web/static/css/bootstrap.min.css +++ /dev/null @@ -1,5 +0,0 @@ -/*! - * Bootstrap v3.3.2 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - *//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px \9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.form-group-sm .form-control{height:30px;line-height:30px}select[multiple].form-group-sm .form-control,textarea.form-group-sm .form-control{height:auto}.form-group-sm .form-control-static{height:30px;padding:5px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.form-group-lg .form-control{height:46px;line-height:46px}select[multiple].form-group-lg .form-control,textarea.form-group-lg .form-control{height:auto}.form-group-lg .form-control-static{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.33px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.active,.btn-default.focus,.btn-default:active,.btn-default:focus,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.active,.btn-primary.focus,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.active,.btn-success.focus,.btn-success:active,.btn-success:focus,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.active,.btn-info.focus,.btn-info:active,.btn-info:focus,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.active,.btn-warning.focus,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.active,.btn-danger.focus,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none;visibility:hidden}.collapse.in{display:block;visibility:visible}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none;visibility:hidden}.tab-content>.active{display:block;visibility:visible}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important;visibility:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:absolute;top:0;right:0;left:0;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:1.4;visibility:visible;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:1.42857143;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;perspective:1000}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;margin-top:-10px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} \ No newline at end of file diff --git a/demo-web/static/css/dsr.css b/demo-web/static/css/dsr.css deleted file mode 100644 index 71d6666f..00000000 --- a/demo-web/static/css/dsr.css +++ /dev/null @@ -1,124 +0,0 @@ -.play-button{ - /* color: #ffffff; */ - /* background: #6a51a3; */ - border-color: #424242; - border-width: 1px; - padding-top: 0.6em; - padding-bottom: 0.6em; -} - -#controlPanel>div{ - padding-bottom: 20px; -} -#controlPanel>div>label{ - padding-top: 5px; - padding-bottom: 5px; -} - -.control-file{ - margin-bottom: 0.5em; -} - -.control-button{ - color: #000000; - background: #dadaeb; - border-color: #c5c5d6; - margin-top: 5%; -} - -#tableSliders{ - margin-top: 10px; - margin-bottom: 0px; -} - -#tableSliders>tbody>tr>td>input.input-sm{ - width: 35px; - padding: 0px; - padding-left: 3px; - margin-left: 1em; - margin-right: 0px; - margin-top: 5px; -} - -#sliders>div{ - padding-bottom: 23px; -} -#sliders>div>button{ - margin-top: 1em; -} - -.slider-name{ - /* position:relative; - top:15px; - left:15px; */ - text-align: left; - font-size: 11px; - font-weight: 500; - color: #959595; - text-transform: uppercase; - letter-spacing: 0.5px; - padding: 0px; - padding-top: 0.5em; - padding-bottom: 0.2em; - padding-left: 1em; -} - -.slider{ - margin: 0.5em; - margin-top: 0.9em; -} - -#tableSliders>tbody>tr>td{ - padding: 0px; - padding-top: 5px; -} - - -/* CENTER */ -#expressionsTitle{ - background-color: white; - /* border-right-style: none; - border-left-style: none; - border-bottom-style: none; */ -} - -/* CENTER - Expression table */ -th{ - text-align: center; -} -#tableBodyExprs{ - text-align: center; -} -.removed-expr{ - color: #959595; - /* text-decoration: line-through; */ - background-color: rgb(247, 247, 247); -} - -/* RIGHT */ -.nav-diagnostics>li>a { - /* font-family: 'Jost', sans-serif; */ - font-weight: 500; - color: #000000; - padding-top: 5px; - padding-bottom: 5px; -} - -.dropdown-menu>li>a { - /* font-family: 'Jost', sans-serif; */ - font-weight: 400; - color: #000000; -} - -.subplot { - margin-bottom: 15px; -} - -.rightPanel{ - padding-left: 0px; -} - -.diag-name{ - font-size: 15px; - -} \ No newline at end of file diff --git a/demo-web/static/fonts/glyphicons-halflings-regular.eot b/demo-web/static/fonts/glyphicons-halflings-regular.eot deleted file mode 100644 index b93a4953..00000000 Binary files a/demo-web/static/fonts/glyphicons-halflings-regular.eot and /dev/null differ diff --git a/demo-web/static/fonts/glyphicons-halflings-regular.svg b/demo-web/static/fonts/glyphicons-halflings-regular.svg deleted file mode 100644 index 94fb5490..00000000 --- a/demo-web/static/fonts/glyphicons-halflings-regular.svg +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/demo-web/static/fonts/glyphicons-halflings-regular.ttf b/demo-web/static/fonts/glyphicons-halflings-regular.ttf deleted file mode 100644 index 1413fc60..00000000 Binary files a/demo-web/static/fonts/glyphicons-halflings-regular.ttf and /dev/null differ diff --git a/demo-web/static/fonts/glyphicons-halflings-regular.woff b/demo-web/static/fonts/glyphicons-halflings-regular.woff deleted file mode 100644 index 9e612858..00000000 Binary files a/demo-web/static/fonts/glyphicons-halflings-regular.woff and /dev/null differ diff --git a/demo-web/static/fonts/glyphicons-halflings-regular.woff2 b/demo-web/static/fonts/glyphicons-halflings-regular.woff2 deleted file mode 100644 index 64539b54..00000000 Binary files a/demo-web/static/fonts/glyphicons-halflings-regular.woff2 and /dev/null differ diff --git a/demo-web/static/image/android-chrome-192x192.png b/demo-web/static/image/android-chrome-192x192.png deleted file mode 100755 index f17689b8..00000000 Binary files a/demo-web/static/image/android-chrome-192x192.png and /dev/null differ diff --git a/demo-web/static/image/android-chrome-512x512.png b/demo-web/static/image/android-chrome-512x512.png deleted file mode 100755 index b8946398..00000000 Binary files a/demo-web/static/image/android-chrome-512x512.png and /dev/null differ diff --git a/demo-web/static/image/apple-touch-icon.png b/demo-web/static/image/apple-touch-icon.png deleted file mode 100755 index a18045f0..00000000 Binary files a/demo-web/static/image/apple-touch-icon.png and /dev/null differ diff --git a/demo-web/static/image/eq5.png b/demo-web/static/image/eq5.png deleted file mode 100644 index 9dcaee50..00000000 Binary files a/demo-web/static/image/eq5.png and /dev/null differ diff --git a/demo-web/static/image/eq5_tree-symbol.gv.pdf b/demo-web/static/image/eq5_tree-symbol.gv.pdf deleted file mode 100644 index c9a687ab..00000000 Binary files a/demo-web/static/image/eq5_tree-symbol.gv.pdf and /dev/null differ diff --git a/demo-web/static/image/eq5_tree-text.gv.pdf b/demo-web/static/image/eq5_tree-text.gv.pdf deleted file mode 100644 index 35524a9d..00000000 Binary files a/demo-web/static/image/eq5_tree-text.gv.pdf and /dev/null differ diff --git a/demo-web/static/image/favicon-16x16.png b/demo-web/static/image/favicon-16x16.png deleted file mode 100644 index 570b7475..00000000 Binary files a/demo-web/static/image/favicon-16x16.png and /dev/null differ diff --git a/demo-web/static/image/favicon-32x32.png b/demo-web/static/image/favicon-32x32.png deleted file mode 100755 index f9c8112a..00000000 Binary files a/demo-web/static/image/favicon-32x32.png and /dev/null differ diff --git a/demo-web/static/image/favicon.ico b/demo-web/static/image/favicon.ico deleted file mode 100755 index f33d7416..00000000 Binary files a/demo-web/static/image/favicon.ico and /dev/null differ diff --git a/demo-web/static/image/ijcai_fig2.pdf b/demo-web/static/image/ijcai_fig2.pdf deleted file mode 100644 index bb84d2e9..00000000 Binary files a/demo-web/static/image/ijcai_fig2.pdf and /dev/null differ diff --git a/demo-web/static/js/bootstrap.min.js b/demo-web/static/js/bootstrap.min.js deleted file mode 100644 index c6d36920..00000000 --- a/demo-web/static/js/bootstrap.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v3.3.2 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.2",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.2",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.2",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&"show"==b&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a(this.options.trigger).filter('[href="#'+b.id+'"], [data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.2",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0,trigger:'[data-toggle="collapse"]'},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":a.extend({},e.data(),{trigger:this});c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.2",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(b){if(/(38|40|27|32)/.test(b.which)&&!/input|textarea/i.test(b.target.tagName)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var e=c(d),g=e.hasClass("open");if(!g&&27!=b.which||g&&27==b.which)return 27==b.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.divider):visible a",i=e.find('[role="menu"]'+h+', [role="listbox"]'+h);if(i.length){var j=i.index(b.target);38==b.which&&j>0&&j--,40==b.which&&j').prependTo(this.$element).on("click.dismiss.bs.modal",a.proxy(function(a){a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus.call(this.$element[0]):this.hide.call(this))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.options.backdrop&&this.adjustBackdrop(),this.adjustDialog()},c.prototype.adjustBackdrop=function(){this.$backdrop.css("height",0).css("height",this.$element[0].scrollHeight)},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){this.bodyIsOverflowing=document.body.scrollHeight>document.documentElement.clientHeight,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right","")},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||"destroy"!=b)&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=this.options=this.enabled=this.timeout=this.hoverState=this.$element=null,this.init("tooltip",a,b)};c.VERSION="3.3.2",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport);for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-mp.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.width&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||"destroy"!=b)&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.2",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},c.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){var e=a.proxy(this.process,this);this.$body=a("body"),this.$scrollElement=a(a(c).is("body")?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",e),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.2",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b="offset",c=0;a.isWindow(this.$scrollElement[0])||(b="position",c=this.$scrollElement.scrollTop()),this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight();var d=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[b]().top+c,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){d.offsets.push(this[0]),d.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.2",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e() -}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=this.unpin=this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.2",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a("body").height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); \ No newline at end of file diff --git a/demo-web/static/js/dsr.js b/demo-web/static/js/dsr.js deleted file mode 100644 index a9d5df32..00000000 --- a/demo-web/static/js/dsr.js +++ /dev/null @@ -1,597 +0,0 @@ -var done = false; -var bestFound = false; -var bestExprs = 0; -var step = 0; -var ajaxCall = 0; - -divMainPlot = document.getElementById('main_plot'); -divSubplot = document.getElementById('subplot'); -divSubplot2 = document.getElementById('subplot2'); -divSubplot3 = document.getElementById('subplot3'); - -function resetPlot(graphDiv){ - /* remove all traces */ - while(graphDiv.data.length>0){ - Plotly.deleteTraces(graphDiv, [0]); - } -} - -function resetButtons(){ - $('#btn_start').parent().show(); - $('#btn_step').parent().show(); - $('#btn_stop').parent().hide(); - $('#btn_pause').parent().hide(); - -} - -var layout_fix_range = { - 'xaxis.autorange': false, - 'yaxis.autorange': false - }; - -function plotDataPoints(){ - $.ajax({ - url: '/data_points', - type: 'POST', - data: 'training data', - dataType: "json", - success: function(response){ - console.log("Plot data points."); - resetPlot(divMainPlot); - Plotly.addTraces(divMainPlot, response); - Plotly.relayout(divMainPlot, layout_fix_range) - }, - error: function(error){ - console.log(error); - } - }); -} - -/* Plot data points */ -$(function(){ - $('#btn_data').on('click', function(){ - plotDataPoints(); - // resetPlot(divSubplot); //TODO: reset logic - // resetPlot(divSubplot2); - return false; - }); -}); - -/* Stop running: Button STOP */ -$(function(){ - $('#btn_stop').on('click', function(){ - done = true; - - /* Reset */ - resetButtons(); - plotDataPoints(); - resetPlot(divSubplot); - resetPlot(divSubplot2); - - bestFound = false; - bestExprs = 0; - step = 0; - ajaxCall = 0; - }); -}); - -/* Pause running: Button PAUSE */ -$(function(){ - $('#btn_pause').on('click', function(){ - done = true; - - $('#btn_start').parent().show(); - $(this).parent().hide(); - $(this).blur(); - }); -}); - -var subplotBlankData = [{ - x: [], - y: [], - type: 'scatter' -}]; - - - -function updateExprTable(info){ - var tbl = document.getElementById('tableBodyExprs') - var row = tbl.insertRow(0); - - var index = tbl.rows.length-1; - var expression = info.expression - var fitness = info.fitness - - row.insertCell(0).innerHTML = 9-index; // TODO: rank - row.insertCell(1).innerHTML = expression; - row.insertCell(2).innerHTML = Number.parseFloat(fitness).toFixed(3); - row.insertCell(3).innerHTML = "Remove".link("#"); - // row.insertCell(3).innerHTML = ''+'Remove'.link("#"); // TODO: remove add - - $(function(){ - $('#checkExpr'+index).on('change',function(){ - if ($(this).is(':checked')){ - // row.insertCell(4).innerHTML = 'Remove' - $(this).parent().parent().addClass('removed-expr') - row.cells.item(3).innerHTML = "Add".link("#"); - } - else{ - // $(this).parent().parent().addClass('removed-expr') - // row.cells.item(3).innerHTML = ' OUT' - } - }); - }); -} - -var ji = 0; // -function bringBestExpr(caller){ - $.ajax({ - url: '/main_lines', - type: 'POST', - data: JSON.stringify({step: step}), - contentType: 'application/json;charset=UTF-8', - dataType: "json", - success: function(response){ - console.log(step) - if (response.warn == true){ - console.log("End request: Data not uploaded."); - alert("Please upload data. (Click upload button first)"); - resetButtons(); - done = true; - } else { - if (step%1000 == 0){ - console.log(step) - console.log(ajaxCall) - } - - if (response.update == true && done != true){ - /* Plot new best expression */ - bestFound = true; - - var ii; - for (ii = 0; ii < divMainPlot.data.length-1; ii++){ - Plotly.restyle(divMainPlot, { - 'line.width': 2, - 'line.color': '#000000', - opacity: Math.pow(0.8, divMainPlot.data.length-1-ii) - },ii) - } - - Plotly.addTraces(divMainPlot, JSON.parse(response.plot),divMainPlot.data.length-1); - updateExprTable(response.info); - - bestExprs++; - } - - /* update training curves */ - for (let [key, value] of Object.entries(response.subplot)) { - if (key == 'subplot1'){ - Plotly.extendTraces(divSubplot, value.data, [0, 1, 2]) - - } else if (key == 'subplot2'){ - if (step % 50 == 0){ - var jj; - - for (jj = ji; jj < divSubplot2.data.length-1; jj++){ - var opa = Math.pow(0.8,divSubplot2.data.length-jj); - if (opa < 0.2){ - opa = 0.2; - ji = jj; - } - Plotly.restyle(divSubplot2, { - opacity: opa - },jj) - } - - Plotly.addTraces(divSubplot2, JSON.parse(value[0].reward.data.line)); - } - } else if (key == 'subplot3'){ - Plotly.extendTraces(divSubplot3, value.data, [0]) - } - } - - if (response.done == true){ - done = true; - resetButtons(); - } - }; - }, - error: function(error){ - console.log(error); - resetButtons(); - // console.log("Stop requesting"); - } - }).done(function(){ - if (caller == 'start'){ - if (done != true && ajaxCall < 300){ - // bringBestExpr(); - setTimeout(bringBestExpr.bind(null,'start'), 300); - step += 10; - ajaxCall++; - } - } else if (caller == 'step'){ - if (bestFound == false && done != true && ajaxCall < 300){ - // bringBestExpr(); - setTimeout(bringBestExpr.bind(null,'step'), 300); - step += 10; - ajaxCall++; - } - } - }); -} - -/* Plot expression: Button STEP (Finds next best expression, then pause) */ -$(function(){ - $('#btn_step').on('click', function(){ - $('#btn_stop').parent().show(); - $('#btn_start').parent().show(); - $(this).blur(); - - done = false; - bestFound = false; - - bringBestExpr('step'); - // TODO: change button -> RESUME - }); -}); - -/* Plot expression: Button START */ -$(function(){ - $('#btn_start').on('click', function(){ - console.log("Start"); - - /* change buttons */ - $('#btn_stop').parent().show(); - $('#btn_pause').parent().show(); - $(this).parent().hide(); - $(this).blur(); - - done = false; - - /* continue plotting */ - bringBestExpr('start'); - - return false; - }); -}); - - - -var blankData = [{ - x: [], - y: [], - mode: 'marker', - type: 'scatter', - line: { - color: 'rgb(115,115,115)' - } -}]; - -var layout = { - autosize: false, /* long tick labels automatically grow the figure margins */ - margin: { - t: 10, - l: 50, - r: 20, - b: 50 - }, - hovermode: 'closest', - config: { responsive: true }, // TODO: responsive not working.. - // plot_bgcolor:"white", - // paper_bgcolor:"white", - showlegend: false, - // legend: {orientation: "h"}, - xaxis: { - showgrid: false, - zeroline: false, - showline: true, - mirror: 'ticks', - // gridcolor: '#bdbdbd', - // gridwidth: 0.5, - zerolinecolor: '#969696', - zerolinewidth: 1, - linecolor: '#636363', - linewidth: 2, - // range: [-2,2] - autorange: true - }, - yaxis: { - showgrid: false, - zeroline: false, - showline: true, - mirror: 'ticks', - // gridcolor: '#bdbdbd', - // gridwidth: 0.5, - zerolinecolor: '#969696', - zerolinewidth: 1, - linecolor: '#636363', - linewidth: 2, - // range: [-2,2] - autorange: true - }, - width: 800, - height: 500 - -}; -Plotly.newPlot(divMainPlot, blankData, layout, {responsive: true}); - -/*** Subplots ***/ -// not using plotly subplotting -var blankDataSub11 = { - x: [], - y: [], - type: 'scatter', - mode: 'lines', - name: 'Best', - line: { - dash: 'solid' - } -}; -var blankDataSub12 = { - x: [], - y: [], - type: 'scatter', - mode: 'lines', - name: 'Top \u03B5', - line: { - dash: 'dash' - } -}; -var blankDataSub13 = { - x: [], - y: [], - type: 'scatter', - mode: 'lines', - name: 'Mean', - line: { - dash: 'dot' - } -}; -var blankDataSub2 = [{ - x: [], - y: [], - type: 'scatter' -}]; -var blankDataSub3 = [{ - x: [], - y: [], - type: 'scatter' -}]; - -var layoutSubplot1 = { - autosize: false, - margin: { - t: 3, - l: 80, - r: 70, - b: 10 - }, - legend: { //TODO: legend blocks lowest line - orientation: 'h', - xanchor: 'right', - yanchor: 'bottom', - x: 1, - y: 0, - bgcolor: 'transparent' - }, - xaxis: { - automargin: true, - title: { - text: "Iterations", - font:{ - size: 12 - } - }, - tickfont: { - size: 10, - color: 'black' - }, - showgrid: false, - zeroline: false, - showline: true, - mirror: 'ticks', - linecolor: '#636363', - linewidth: 1.5 - }, - yaxis: { - title: { - text: "Reward", - font:{ - size: 12 - }, - }, - tickfont: { - size: 10, - color: 'black' - }, - showgrid: false, - zeroline: false, - showline: true, - mirror: 'ticks', - linecolor: '#636363', - linewidth: 1.5 - }, - width: 580, - height: 215 -}; - -var layoutSubplot2 = { - autosize: false, - margin: { - t: 3, - l: 80, - r: 70, - b: 10 - }, - showlegend: false, - xaxis: { - automargin: true, - title: { - text: "Reward", - font:{ - size: 12 - } - }, - tickfont: { - size: 10, - color: 'black' - }, - showgrid: false, - zeroline: false, - showline: true, - mirror: 'ticks', - linecolor: '#636363', - linewidth: 1.5 - }, - yaxis: { - title: { - text: "Density", - font:{ - size: 12 - } - }, - tickfont: { - size: 10, - color: 'black' - }, - showgrid: false, - zeroline: false, - showline: true, - mirror: 'ticks', - linecolor: '#636363', - linewidth: 1.5 - }, - width: 580, - height: 215 -}; - -var layoutSubplot3 = { - autosize: false, - margin: { - t: 3, - l: 80, - r: 70, - b: 10 - }, - showlegend: false, - xaxis: { - automargin: true, - title: { - text: "Iterations", - font:{ - size: 12 - } - }, - tickfont: { - size: 10, - color: 'black' - }, - showgrid: false, - zeroline: false, - showline: true, - mirror: 'ticks', - linecolor: '#636363', - linewidth: 1.5 - }, - yaxis: { - title: { - text: "Complexity", - font:{ - size: 12 - } - }, - tickfont: { - size: 10, - color: 'black' - }, - showgrid: false, - zeroline: false, - showline: true, - mirror: 'ticks', - linecolor: '#636363', - linewidth: 1.5 - }, - width: 580, - height: 215 -}; - -Plotly.newPlot(divSubplot, [blankDataSub11, blankDataSub12, blankDataSub13], layoutSubplot1) -Plotly.newPlot(divSubplot2, blankDataSub2, layoutSubplot2) -Plotly.newPlot(divSubplot3, blankDataSub3, layoutSubplot3) - -/* JS tooltip opt-in */ -$(function () { - $('[data-toggle="tooltip"]').tooltip() - }) - - - -// #f7fcfd -// #e0ecf4 -// #bfd3e6 -// #9ebcda -// #8c96c6 -// #8c6bb1 -// #88419d -// #810f7c - -// #fcfbfd -// #efedf5 -// #dadaeb -// #bcbddc -// #9e9ac8 -// #807dba -// #6a51a3 -// #54278f -// #3f007d - -// #ffffff -// #f0f0f0 -// #d9d9d9 -// #bdbdbd -// #969696 -// #737373 -// #525252 -// #252525 -// #000000 - - -/* -TODO: - - model done -> reset numbers - - stop: force quit model - - stop plotting - - reset button - - remove plot - -Need to receive from server: - -- Fill in templates - - best expression, - - fitness, - - iteration # - -- data points: scatter - -- new expression plot (add trace) - -Server: -- Each plot trace w/ hover set - -Front: -- static layout - - bg, ticks, size, templates for current best -- update new scatters -- update old scatter colors -- interactions - - test w/ step - - play, pause, stop - - add, remove - -### diagnostics: -- axes match - -Extra -- Restart - -*/ \ No newline at end of file diff --git a/demo-web/static/js/jquery.min.js b/demo-web/static/js/jquery.min.js deleted file mode 100644 index 9fd22ca7..00000000 --- a/demo-web/static/js/jquery.min.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! jQuery v3.5.0 | (c) JS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="x",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"",""],col:[2,"",""],tr:[2,"",""],td:[3,"",""],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0:not(.watermark)":"opacity:0;-webkit-transition:opacity 0.3s ease 0s;-moz-transition:opacity 0.3s ease 0s;-ms-transition:opacity 0.3s ease 0s;-o-transition:opacity 0.3s ease 0s;transition:opacity 0.3s ease 0s;","X:hover .modebar--hover .modebar-group":"opacity:1;","X .modebar-group":"float:left;display:inline-block;box-sizing:border-box;padding-left:8px;position:relative;vertical-align:middle;white-space:nowrap;","X .modebar-btn":"position:relative;font-size:16px;padding:3px 4px;height:22px;cursor:pointer;line-height:normal;box-sizing:border-box;","X .modebar-btn svg":"position:relative;top:2px;","X .modebar.vertical":"display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-end;max-height:100%;","X .modebar.vertical svg":"top:-1px;","X .modebar.vertical .modebar-group":"display:block;float:none;padding-left:0px;padding-bottom:8px;","X .modebar.vertical .modebar-group .modebar-btn":"display:block;text-align:center;","X [data-title]:before,X [data-title]:after":"position:absolute;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);display:none;opacity:0;z-index:1001;pointer-events:none;top:110%;right:50%;","X [data-title]:hover:before,X [data-title]:hover:after":"display:block;opacity:1;","X [data-title]:before":"content:'';position:absolute;background:transparent;border:6px solid transparent;z-index:1002;margin-top:-12px;border-bottom-color:#69738a;margin-right:-6px;","X [data-title]:after":"content:attr(data-title);background:#69738a;color:white;padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;margin-right:-18px;border-radius:2px;","X .vertical [data-title]:before,X .vertical [data-title]:after":"top:0%;right:200%;","X .vertical [data-title]:before":"border:6px solid transparent;border-left-color:#69738a;margin-top:8px;margin-right:-30px;","X .select-outline":"fill:none;stroke-width:1;shape-rendering:crispEdges;","X .select-outline-1":"stroke:white;","X .select-outline-2":"stroke:black;stroke-dasharray:2px 2px;",Y:"font-family:'Open Sans';position:fixed;top:50px;right:20px;z-index:10000;font-size:10pt;max-width:180px;","Y p":"margin:0;","Y .notifier-note":"min-width:180px;max-width:250px;border:1px solid #fff;z-index:3000;margin:0;background-color:#8c97af;background-color:rgba(140,151,175,0.9);color:#fff;padding:10px;overflow-wrap:break-word;word-wrap:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;","Y .notifier-close":"color:#fff;opacity:0.8;float:right;padding:0 5px;background:none;border:none;font-size:20px;font-weight:bold;line-height:20px;","Y .notifier-close:hover":"color:#444;text-decoration:none;cursor:pointer;"};for(var i in a){var o=i.replace(/^,/," ,").replace(/X/g,".js-plotly-plot .plotly").replace(/Y/g,".plotly-notifier");n.addStyleRule(o,a[i])}},{"../src/lib":717}],2:[function(t,e,r){"use strict";e.exports=t("../src/transforms/aggregate")},{"../src/transforms/aggregate":1297}],3:[function(t,e,r){"use strict";e.exports=t("../src/traces/bar")},{"../src/traces/bar":864}],4:[function(t,e,r){"use strict";e.exports=t("../src/traces/barpolar")},{"../src/traces/barpolar":877}],5:[function(t,e,r){"use strict";e.exports=t("../src/traces/box")},{"../src/traces/box":887}],6:[function(t,e,r){"use strict";e.exports=t("../src/components/calendars")},{"../src/components/calendars":589}],7:[function(t,e,r){"use strict";e.exports=t("../src/traces/candlestick")},{"../src/traces/candlestick":896}],8:[function(t,e,r){"use strict";e.exports=t("../src/traces/carpet")},{"../src/traces/carpet":915}],9:[function(t,e,r){"use strict";e.exports=t("../src/traces/choropleth")},{"../src/traces/choropleth":929}],10:[function(t,e,r){"use strict";e.exports=t("../src/traces/choroplethmapbox")},{"../src/traces/choroplethmapbox":936}],11:[function(t,e,r){"use strict";e.exports=t("../src/traces/cone")},{"../src/traces/cone":942}],12:[function(t,e,r){"use strict";e.exports=t("../src/traces/contour")},{"../src/traces/contour":957}],13:[function(t,e,r){"use strict";e.exports=t("../src/traces/contourcarpet")},{"../src/traces/contourcarpet":968}],14:[function(t,e,r){"use strict";e.exports=t("../src/core")},{"../src/core":695}],15:[function(t,e,r){"use strict";e.exports=t("../src/traces/densitymapbox")},{"../src/traces/densitymapbox":976}],16:[function(t,e,r){"use strict";e.exports=t("../src/transforms/filter")},{"../src/transforms/filter":1298}],17:[function(t,e,r){"use strict";e.exports=t("../src/traces/funnel")},{"../src/traces/funnel":986}],18:[function(t,e,r){"use strict";e.exports=t("../src/traces/funnelarea")},{"../src/traces/funnelarea":995}],19:[function(t,e,r){"use strict";e.exports=t("../src/transforms/groupby")},{"../src/transforms/groupby":1299}],20:[function(t,e,r){"use strict";e.exports=t("../src/traces/heatmap")},{"../src/traces/heatmap":1008}],21:[function(t,e,r){"use strict";e.exports=t("../src/traces/heatmapgl")},{"../src/traces/heatmapgl":1017}],22:[function(t,e,r){"use strict";e.exports=t("../src/traces/histogram")},{"../src/traces/histogram":1029}],23:[function(t,e,r){"use strict";e.exports=t("../src/traces/histogram2d")},{"../src/traces/histogram2d":1035}],24:[function(t,e,r){"use strict";e.exports=t("../src/traces/histogram2dcontour")},{"../src/traces/histogram2dcontour":1039}],25:[function(t,e,r){"use strict";e.exports=t("../src/traces/image")},{"../src/traces/image":1046}],26:[function(t,e,r){"use strict";var n=t("./core");n.register([t("./bar"),t("./box"),t("./heatmap"),t("./histogram"),t("./histogram2d"),t("./histogram2dcontour"),t("./contour"),t("./scatterternary"),t("./violin"),t("./funnel"),t("./waterfall"),t("./image"),t("./pie"),t("./sunburst"),t("./treemap"),t("./funnelarea"),t("./scatter3d"),t("./surface"),t("./isosurface"),t("./volume"),t("./mesh3d"),t("./cone"),t("./streamtube"),t("./scattergeo"),t("./choropleth"),t("./scattergl"),t("./splom"),t("./pointcloud"),t("./heatmapgl"),t("./parcoords"),t("./parcats"),t("./scattermapbox"),t("./choroplethmapbox"),t("./densitymapbox"),t("./sankey"),t("./indicator"),t("./table"),t("./carpet"),t("./scattercarpet"),t("./contourcarpet"),t("./ohlc"),t("./candlestick"),t("./scatterpolar"),t("./scatterpolargl"),t("./barpolar")]),n.register([t("./aggregate"),t("./filter"),t("./groupby"),t("./sort")]),n.register([t("./calendars")]),e.exports=n},{"./aggregate":2,"./bar":3,"./barpolar":4,"./box":5,"./calendars":6,"./candlestick":7,"./carpet":8,"./choropleth":9,"./choroplethmapbox":10,"./cone":11,"./contour":12,"./contourcarpet":13,"./core":14,"./densitymapbox":15,"./filter":16,"./funnel":17,"./funnelarea":18,"./groupby":19,"./heatmap":20,"./heatmapgl":21,"./histogram":22,"./histogram2d":23,"./histogram2dcontour":24,"./image":25,"./indicator":27,"./isosurface":28,"./mesh3d":29,"./ohlc":30,"./parcats":31,"./parcoords":32,"./pie":33,"./pointcloud":34,"./sankey":35,"./scatter3d":36,"./scattercarpet":37,"./scattergeo":38,"./scattergl":39,"./scattermapbox":40,"./scatterpolar":41,"./scatterpolargl":42,"./scatterternary":43,"./sort":44,"./splom":45,"./streamtube":46,"./sunburst":47,"./surface":48,"./table":49,"./treemap":50,"./violin":51,"./volume":52,"./waterfall":53}],27:[function(t,e,r){"use strict";e.exports=t("../src/traces/indicator")},{"../src/traces/indicator":1054}],28:[function(t,e,r){"use strict";e.exports=t("../src/traces/isosurface")},{"../src/traces/isosurface":1060}],29:[function(t,e,r){"use strict";e.exports=t("../src/traces/mesh3d")},{"../src/traces/mesh3d":1065}],30:[function(t,e,r){"use strict";e.exports=t("../src/traces/ohlc")},{"../src/traces/ohlc":1070}],31:[function(t,e,r){"use strict";e.exports=t("../src/traces/parcats")},{"../src/traces/parcats":1079}],32:[function(t,e,r){"use strict";e.exports=t("../src/traces/parcoords")},{"../src/traces/parcoords":1089}],33:[function(t,e,r){"use strict";e.exports=t("../src/traces/pie")},{"../src/traces/pie":1100}],34:[function(t,e,r){"use strict";e.exports=t("../src/traces/pointcloud")},{"../src/traces/pointcloud":1109}],35:[function(t,e,r){"use strict";e.exports=t("../src/traces/sankey")},{"../src/traces/sankey":1115}],36:[function(t,e,r){"use strict";e.exports=t("../src/traces/scatter3d")},{"../src/traces/scatter3d":1152}],37:[function(t,e,r){"use strict";e.exports=t("../src/traces/scattercarpet")},{"../src/traces/scattercarpet":1159}],38:[function(t,e,r){"use strict";e.exports=t("../src/traces/scattergeo")},{"../src/traces/scattergeo":1167}],39:[function(t,e,r){"use strict";e.exports=t("../src/traces/scattergl")},{"../src/traces/scattergl":1180}],40:[function(t,e,r){"use strict";e.exports=t("../src/traces/scattermapbox")},{"../src/traces/scattermapbox":1190}],41:[function(t,e,r){"use strict";e.exports=t("../src/traces/scatterpolar")},{"../src/traces/scatterpolar":1198}],42:[function(t,e,r){"use strict";e.exports=t("../src/traces/scatterpolargl")},{"../src/traces/scatterpolargl":1205}],43:[function(t,e,r){"use strict";e.exports=t("../src/traces/scatterternary")},{"../src/traces/scatterternary":1213}],44:[function(t,e,r){"use strict";e.exports=t("../src/transforms/sort")},{"../src/transforms/sort":1301}],45:[function(t,e,r){"use strict";e.exports=t("../src/traces/splom")},{"../src/traces/splom":1222}],46:[function(t,e,r){"use strict";e.exports=t("../src/traces/streamtube")},{"../src/traces/streamtube":1230}],47:[function(t,e,r){"use strict";e.exports=t("../src/traces/sunburst")},{"../src/traces/sunburst":1238}],48:[function(t,e,r){"use strict";e.exports=t("../src/traces/surface")},{"../src/traces/surface":1247}],49:[function(t,e,r){"use strict";e.exports=t("../src/traces/table")},{"../src/traces/table":1255}],50:[function(t,e,r){"use strict";e.exports=t("../src/traces/treemap")},{"../src/traces/treemap":1264}],51:[function(t,e,r){"use strict";e.exports=t("../src/traces/violin")},{"../src/traces/violin":1276}],52:[function(t,e,r){"use strict";e.exports=t("../src/traces/volume")},{"../src/traces/volume":1284}],53:[function(t,e,r){"use strict";e.exports=t("../src/traces/waterfall")},{"../src/traces/waterfall":1292}],54:[function(t,e,r){"use strict";e.exports=function(t){var e=(t=t||{}).eye||[0,0,1],r=t.center||[0,0,0],s=t.up||[0,1,0],l=t.distanceLimits||[0,1/0],c=t.mode||"turntable",u=n(),h=a(),f=i();return u.setDistanceLimits(l[0],l[1]),u.lookAt(0,e,r,s),h.setDistanceLimits(l[0],l[1]),h.lookAt(0,e,r,s),f.setDistanceLimits(l[0],l[1]),f.lookAt(0,e,r,s),new o({turntable:u,orbit:h,matrix:f},c)};var n=t("turntable-camera-controller"),a=t("orbit-camera-controller"),i=t("matrix-camera-controller");function o(t,e){this._controllerNames=Object.keys(t),this._controllerList=this._controllerNames.map(function(e){return t[e]}),this._mode=e,this._active=t[e],this._active||(this._mode="turntable",this._active=t.turntable),this.modes=this._controllerNames,this.computedMatrix=this._active.computedMatrix,this.computedEye=this._active.computedEye,this.computedUp=this._active.computedUp,this.computedCenter=this._active.computedCenter,this.computedRadius=this._active.computedRadius}var s=o.prototype;[["flush",1],["idle",1],["lookAt",4],["rotate",4],["pan",4],["translate",4],["setMatrix",2],["setDistanceLimits",2],["setDistance",2]].forEach(function(t){for(var e=t[0],r=[],n=0;n1||a>1)}function E(t,e,r){return t.sort(C),t.forEach(function(n,a){var i,o,s=0;if(Y(n,r)&&S(n))n.circularPathData.verticalBuffer=s+n.width/2;else{for(var l=0;lo.source.column)){var c=t[l].circularPathData.verticalBuffer+t[l].width/2+e;s=c>s?c:s}n.circularPathData.verticalBuffer=s+n.width/2}}),t}function L(t,r,a,i){var o=e.min(t.links,function(t){return t.source.y0});t.links.forEach(function(t){t.circular&&(t.circularPathData={})}),E(t.links.filter(function(t){return"top"==t.circularLinkType}),r,i),E(t.links.filter(function(t){return"bottom"==t.circularLinkType}),r,i),t.links.forEach(function(e){if(e.circular){if(e.circularPathData.arcRadius=e.width+w,e.circularPathData.leftNodeBuffer=5,e.circularPathData.rightNodeBuffer=5,e.circularPathData.sourceWidth=e.source.x1-e.source.x0,e.circularPathData.sourceX=e.source.x0+e.circularPathData.sourceWidth,e.circularPathData.targetX=e.target.x0,e.circularPathData.sourceY=e.y0,e.circularPathData.targetY=e.y1,Y(e,i)&&S(e))e.circularPathData.leftSmallArcRadius=w+e.width/2,e.circularPathData.leftLargeArcRadius=w+e.width/2,e.circularPathData.rightSmallArcRadius=w+e.width/2,e.circularPathData.rightLargeArcRadius=w+e.width/2,"bottom"==e.circularLinkType?(e.circularPathData.verticalFullExtent=e.source.y1+_+e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius):(e.circularPathData.verticalFullExtent=e.source.y0-_-e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius);else{var s=e.source.column,l=e.circularLinkType,c=t.links.filter(function(t){return t.source.column==s&&t.circularLinkType==l});"bottom"==e.circularLinkType?c.sort(O):c.sort(P);var u=0;c.forEach(function(t,n){t.circularLinkID==e.circularLinkID&&(e.circularPathData.leftSmallArcRadius=w+e.width/2+u,e.circularPathData.leftLargeArcRadius=w+e.width/2+n*r+u),u+=t.width}),s=e.target.column,c=t.links.filter(function(t){return t.target.column==s&&t.circularLinkType==l}),"bottom"==e.circularLinkType?c.sort(I):c.sort(z),u=0,c.forEach(function(t,n){t.circularLinkID==e.circularLinkID&&(e.circularPathData.rightSmallArcRadius=w+e.width/2+u,e.circularPathData.rightLargeArcRadius=w+e.width/2+n*r+u),u+=t.width}),"bottom"==e.circularLinkType?(e.circularPathData.verticalFullExtent=Math.max(a,e.source.y1,e.target.y1)+_+e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius):(e.circularPathData.verticalFullExtent=o-_-e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius)}e.circularPathData.leftInnerExtent=e.circularPathData.sourceX+e.circularPathData.leftNodeBuffer,e.circularPathData.rightInnerExtent=e.circularPathData.targetX-e.circularPathData.rightNodeBuffer,e.circularPathData.leftFullExtent=e.circularPathData.sourceX+e.circularPathData.leftLargeArcRadius+e.circularPathData.leftNodeBuffer,e.circularPathData.rightFullExtent=e.circularPathData.targetX-e.circularPathData.rightLargeArcRadius-e.circularPathData.rightNodeBuffer}if(e.circular)e.path=function(t){var e="";e="top"==t.circularLinkType?"M"+t.circularPathData.sourceX+" "+t.circularPathData.sourceY+" L"+t.circularPathData.leftInnerExtent+" "+t.circularPathData.sourceY+" A"+t.circularPathData.leftLargeArcRadius+" "+t.circularPathData.leftSmallArcRadius+" 0 0 0 "+t.circularPathData.leftFullExtent+" "+(t.circularPathData.sourceY-t.circularPathData.leftSmallArcRadius)+" L"+t.circularPathData.leftFullExtent+" "+t.circularPathData.verticalLeftInnerExtent+" A"+t.circularPathData.leftLargeArcRadius+" "+t.circularPathData.leftLargeArcRadius+" 0 0 0 "+t.circularPathData.leftInnerExtent+" "+t.circularPathData.verticalFullExtent+" L"+t.circularPathData.rightInnerExtent+" "+t.circularPathData.verticalFullExtent+" A"+t.circularPathData.rightLargeArcRadius+" "+t.circularPathData.rightLargeArcRadius+" 0 0 0 "+t.circularPathData.rightFullExtent+" "+t.circularPathData.verticalRightInnerExtent+" L"+t.circularPathData.rightFullExtent+" "+(t.circularPathData.targetY-t.circularPathData.rightSmallArcRadius)+" A"+t.circularPathData.rightLargeArcRadius+" "+t.circularPathData.rightSmallArcRadius+" 0 0 0 "+t.circularPathData.rightInnerExtent+" "+t.circularPathData.targetY+" L"+t.circularPathData.targetX+" "+t.circularPathData.targetY:"M"+t.circularPathData.sourceX+" "+t.circularPathData.sourceY+" L"+t.circularPathData.leftInnerExtent+" "+t.circularPathData.sourceY+" A"+t.circularPathData.leftLargeArcRadius+" "+t.circularPathData.leftSmallArcRadius+" 0 0 1 "+t.circularPathData.leftFullExtent+" "+(t.circularPathData.sourceY+t.circularPathData.leftSmallArcRadius)+" L"+t.circularPathData.leftFullExtent+" "+t.circularPathData.verticalLeftInnerExtent+" A"+t.circularPathData.leftLargeArcRadius+" "+t.circularPathData.leftLargeArcRadius+" 0 0 1 "+t.circularPathData.leftInnerExtent+" "+t.circularPathData.verticalFullExtent+" L"+t.circularPathData.rightInnerExtent+" "+t.circularPathData.verticalFullExtent+" A"+t.circularPathData.rightLargeArcRadius+" "+t.circularPathData.rightLargeArcRadius+" 0 0 1 "+t.circularPathData.rightFullExtent+" "+t.circularPathData.verticalRightInnerExtent+" L"+t.circularPathData.rightFullExtent+" "+(t.circularPathData.targetY+t.circularPathData.rightSmallArcRadius)+" A"+t.circularPathData.rightLargeArcRadius+" "+t.circularPathData.rightSmallArcRadius+" 0 0 1 "+t.circularPathData.rightInnerExtent+" "+t.circularPathData.targetY+" L"+t.circularPathData.targetX+" "+t.circularPathData.targetY;return e}(e);else{var h=n.linkHorizontal().source(function(t){return[t.source.x0+(t.source.x1-t.source.x0),t.y0]}).target(function(t){return[t.target.x0,t.y1]});e.path=h(e)}})}function C(t,e){return D(t)==D(e)?"bottom"==t.circularLinkType?O(t,e):P(t,e):D(e)-D(t)}function P(t,e){return t.y0-e.y0}function O(t,e){return e.y0-t.y0}function z(t,e){return t.y1-e.y1}function I(t,e){return e.y1-t.y1}function D(t){return t.target.column-t.source.column}function R(t){return t.target.x0-t.source.x1}function F(t,e){var r=M(t),n=R(e)/Math.tan(r);return"up"==G(t)?t.y1+n:t.y1-n}function B(t,e){var r=M(t),n=R(e)/Math.tan(r);return"up"==G(t)?t.y1-n:t.y1+n}function N(t,e,r,n){t.links.forEach(function(a){if(!a.circular&&a.target.column-a.source.column>1){var i=a.source.column+1,o=a.target.column-1,s=1,l=o-i+1;for(s=1;i<=o;i++,s++)t.nodes.forEach(function(o){if(o.column==i){var c,u=s/(l+1),h=Math.pow(1-u,3),f=3*u*Math.pow(1-u,2),p=3*Math.pow(u,2)*(1-u),d=Math.pow(u,3),g=h*a.y0+f*a.y0+p*a.y1+d*a.y1,v=g-a.width/2,m=g+a.width/2;v>o.y0&&vo.y0&&mo.y1&&V(t,c,e,r)})):vo.y1&&(c=m-o.y0+10,o=V(o,c,e,r),t.nodes.forEach(function(t){b(t,n)!=b(o,n)&&t.column==o.column&&t.y0o.y1&&V(t,c,e,r)}))}})}})}function j(t,e){return t.y0>e.y0&&t.y0e.y0&&t.y1e.y1)}function V(t,e,r,n){return t.y0+e>=r&&t.y1+e<=n&&(t.y0=t.y0+e,t.y1=t.y1+e,t.targetLinks.forEach(function(t){t.y1=t.y1+e}),t.sourceLinks.forEach(function(t){t.y0=t.y0+e})),t}function U(t,e,r,n){t.nodes.forEach(function(a){n&&a.y+(a.y1-a.y0)>e&&(a.y=a.y-(a.y+(a.y1-a.y0)-e));var i=t.links.filter(function(t){return b(t.source,r)==b(a,r)}),o=i.length;o>1&&i.sort(function(t,e){if(!t.circular&&!e.circular){if(t.target.column==e.target.column)return t.y1-e.y1;if(!H(t,e))return t.y1-e.y1;if(t.target.column>e.target.column){var r=B(e,t);return t.y1-r}if(e.target.column>t.target.column)return B(t,e)-e.y1}return t.circular&&!e.circular?"top"==t.circularLinkType?-1:1:e.circular&&!t.circular?"top"==e.circularLinkType?1:-1:t.circular&&e.circular?t.circularLinkType===e.circularLinkType&&"top"==t.circularLinkType?t.target.column===e.target.column?t.target.y1-e.target.y1:e.target.column-t.target.column:t.circularLinkType===e.circularLinkType&&"bottom"==t.circularLinkType?t.target.column===e.target.column?e.target.y1-t.target.y1:t.target.column-e.target.column:"top"==t.circularLinkType?-1:1:void 0});var s=a.y0;i.forEach(function(t){t.y0=s+t.width/2,s+=t.width}),i.forEach(function(t,e){if("bottom"==t.circularLinkType){for(var r=e+1,n=0;r1&&n.sort(function(t,e){if(!t.circular&&!e.circular){if(t.source.column==e.source.column)return t.y0-e.y0;if(!H(t,e))return t.y0-e.y0;if(e.source.column0?"up":"down"}function Y(t,e){return b(t.source,e)==b(t.target,e)}t.sankeyCircular=function(){var t,n,i=0,b=0,M=1,S=1,E=24,C=v,P=o,O=m,z=y,I=32,D=2,R=null;function F(){var o={nodes:O.apply(null,arguments),links:z.apply(null,arguments)};!function(t){t.nodes.forEach(function(t,e){t.index=e,t.sourceLinks=[],t.targetLinks=[]});var e=r.map(t.nodes,C);t.links.forEach(function(t,r){t.index=r;var n=t.source,a=t.target;"object"!==("undefined"==typeof n?"undefined":l(n))&&(n=t.source=x(e,n)),"object"!==("undefined"==typeof a?"undefined":l(a))&&(a=t.target=x(e,a)),n.sourceLinks.push(t),a.targetLinks.push(t)})}(o),function(t,e,r){var n=0;if(null===r){for(var i=[],o=0;o0?r+_+w:r,bottom:n=n>0?n+_+w:n,left:i=i>0?i+_+w:i,right:a=a>0?a+_+w:a}}(a),u=function(t,r){var n=e.max(t.nodes,function(t){return t.column}),a=M-i,o=S-b,s=a+r.right+r.left,l=o+r.top+r.bottom,c=a/s,u=o/l;return i=i*c+r.left,M=0==r.right?M:M*c,b=b*u+r.top,S*=u,t.nodes.forEach(function(t){t.x0=i+t.column*((M-i-E)/n),t.x1=t.x0+E}),u}(a,c);s*=u,a.links.forEach(function(t){t.width=t.value*s}),l.forEach(function(t){var e=t.length;t.forEach(function(t,n){t.depth==l.length-1&&1==e?(t.y0=S/2-t.value*s,t.y1=t.y0+t.value*s):0==t.depth&&1==e?(t.y0=S/2-t.value*s,t.y1=t.y0+t.value*s):t.partOfCycle?0==A(t,r)?(t.y0=S/2+n,t.y1=t.y0+t.value*s):"top"==t.circularLinkType?(t.y0=b+n,t.y1=t.y0+t.value*s):(t.y0=S-t.value*s-n,t.y1=t.y0+t.value*s):0==c.top||0==c.bottom?(t.y0=(S-b)/e*n,t.y1=t.y0+t.value*s):(t.y0=(S-b)/2-e/2+n,t.y1=t.y0+t.value*s)})})})(s),m();for(var c=1,u=o;u>0;--u)v(c*=.99,s),m();function v(t,r){var n=l.length;l.forEach(function(a){var i=a.length,o=a[0].depth;a.forEach(function(a){var s;if(a.sourceLinks.length||a.targetLinks.length)if(a.partOfCycle&&A(a,r)>0);else if(0==o&&1==i)s=a.y1-a.y0,a.y0=S/2-s/2,a.y1=S/2+s/2;else if(o==n-1&&1==i)s=a.y1-a.y0,a.y0=S/2-s/2,a.y1=S/2+s/2;else{var l=e.mean(a.sourceLinks,g),c=e.mean(a.targetLinks,d),u=((l&&c?(l+c)/2:l||c)-p(a))*t;a.y0+=u,a.y1+=u}})})}function m(){l.forEach(function(e){var r,n,a,i=b,o=e.length;for(e.sort(h),a=0;a0&&(r.y0+=n,r.y1+=n),i=r.y1+t;if((n=i-t-S)>0)for(i=r.y0-=n,r.y1-=n,a=o-2;a>=0;--a)r=e[a],(n=r.y1+t-i)>0&&(r.y0-=n,r.y1-=n),i=r.y0})}}(o,I,C),B(o);for(var s=0;s<4;s++)U(o,S,C),q(o,0,C),N(o,b,S,C),U(o,S,C),q(o,0,C);return function(t,r,n){var a=t.nodes,i=t.links,o=!1,s=!1;if(i.forEach(function(t){"top"==t.circularLinkType?o=!0:"bottom"==t.circularLinkType&&(s=!0)}),0==o||0==s){var l=e.min(a,function(t){return t.y0}),c=e.max(a,function(t){return t.y1}),u=c-l,h=n-r,f=h/u;a.forEach(function(t){var e=(t.y1-t.y0)*f;t.y0=(t.y0-l)*f,t.y1=t.y0+e}),i.forEach(function(t){t.y0=(t.y0-l)*f,t.y1=(t.y1-l)*f,t.width=t.width*f})}}(o,b,S),L(o,D,S,C),o}function B(t){t.nodes.forEach(function(t){t.sourceLinks.sort(u),t.targetLinks.sort(c)}),t.nodes.forEach(function(t){var e=t.y0,r=e,n=t.y1,a=n;t.sourceLinks.forEach(function(t){t.circular?(t.y0=n-t.width/2,n-=t.width):(t.y0=e+t.width/2,e+=t.width)}),t.targetLinks.forEach(function(t){t.circular?(t.y1=a-t.width/2,a-=t.width):(t.y1=r+t.width/2,r+=t.width)})})}return F.nodeId=function(t){return arguments.length?(C="function"==typeof t?t:s(t),F):C},F.nodeAlign=function(t){return arguments.length?(P="function"==typeof t?t:s(t),F):P},F.nodeWidth=function(t){return arguments.length?(E=+t,F):E},F.nodePadding=function(e){return arguments.length?(t=+e,F):t},F.nodes=function(t){return arguments.length?(O="function"==typeof t?t:s(t),F):O},F.links=function(t){return arguments.length?(z="function"==typeof t?t:s(t),F):z},F.size=function(t){return arguments.length?(i=b=0,M=+t[0],S=+t[1],F):[M-i,S-b]},F.extent=function(t){return arguments.length?(i=+t[0][0],M=+t[1][0],b=+t[0][1],S=+t[1][1],F):[[i,b],[M,S]]},F.iterations=function(t){return arguments.length?(I=+t,F):I},F.circularLinkGap=function(t){return arguments.length?(D=+t,F):D},F.nodePaddingRatio=function(t){return arguments.length?(n=+t,F):n},F.sortNodes=function(t){return arguments.length?(R=t,F):R},F.update=function(t){return T(t,C),B(t),t.links.forEach(function(t){t.circular&&(t.circularLinkType=t.y0+t.y1i&&(b=i);var o=e.min(a,function(t){return(y-n-(t.length-1)*b)/e.sum(t,u)});a.forEach(function(t){t.forEach(function(t,e){t.y1=(t.y0=e)+t.value*o})}),t.links.forEach(function(t){t.width=t.value*o})})(),d();for(var i=1,o=M;o>0;--o)l(i*=.99),d(),s(i),d();function s(t){a.forEach(function(r){r.forEach(function(r){if(r.targetLinks.length){var n=(e.sum(r.targetLinks,f)/e.sum(r.targetLinks,u)-h(r))*t;r.y0+=n,r.y1+=n}})})}function l(t){a.slice().reverse().forEach(function(r){r.forEach(function(r){if(r.sourceLinks.length){var n=(e.sum(r.sourceLinks,p)/e.sum(r.sourceLinks,u)-h(r))*t;r.y0+=n,r.y1+=n}})})}function d(){a.forEach(function(t){var e,r,a,i=n,o=t.length;for(t.sort(c),a=0;a0&&(e.y0+=r,e.y1+=r),i=e.y1+b;if((r=i-b-y)>0)for(i=e.y0-=r,e.y1-=r,a=o-2;a>=0;--a)e=t[a],(r=e.y1+b-i)>0&&(e.y0-=r,e.y1-=r),i=e.y0})}}(i),E(i),i}function E(t){t.nodes.forEach(function(t){t.sourceLinks.sort(l),t.targetLinks.sort(s)}),t.nodes.forEach(function(t){var e=t.y0,r=e;t.sourceLinks.forEach(function(t){t.y0=e+t.width/2,e+=t.width}),t.targetLinks.forEach(function(t){t.y1=r+t.width/2,r+=t.width})})}return S.update=function(t){return E(t),t},S.nodeId=function(t){return arguments.length?(_="function"==typeof t?t:o(t),S):_},S.nodeAlign=function(t){return arguments.length?(w="function"==typeof t?t:o(t),S):w},S.nodeWidth=function(t){return arguments.length?(x=+t,S):x},S.nodePadding=function(t){return arguments.length?(b=+t,S):b},S.nodes=function(t){return arguments.length?(k="function"==typeof t?t:o(t),S):k},S.links=function(t){return arguments.length?(T="function"==typeof t?t:o(t),S):T},S.size=function(e){return arguments.length?(t=n=0,a=+e[0],y=+e[1],S):[a-t,y-n]},S.extent=function(e){return arguments.length?(t=+e[0][0],a=+e[1][0],n=+e[0][1],y=+e[1][1],S):[[t,n],[a,y]]},S.iterations=function(t){return arguments.length?(M=+t,S):M},S},t.sankeyCenter=function(t){return t.targetLinks.length?t.depth:t.sourceLinks.length?e.min(t.sourceLinks,a)-1:0},t.sankeyLeft=function(t){return t.depth},t.sankeyRight=function(t,e){return e-1-t.height},t.sankeyJustify=i,t.sankeyLinkHorizontal=function(){return n.linkHorizontal().source(y).target(x)},Object.defineProperty(t,"__esModule",{value:!0})},"object"==typeof r&&"undefined"!=typeof e?a(r,t("d3-array"),t("d3-collection"),t("d3-shape")):a(n.d3=n.d3||{},n.d3,n.d3,n.d3)},{"d3-array":154,"d3-collection":155,"d3-shape":163}],57:[function(t,e,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=t("@turf/meta"),a=6378137;function i(t){var e=0;if(t&&t.length>0){e+=Math.abs(o(t[0]));for(var r=1;r2){for(l=0;lt[0]&&(e[0]=t[0]),e[1]>t[1]&&(e[1]=t[1]),e[2]=0))throw new Error("precision must be a positive number");var r=Math.pow(10,e||0);return Math.round(t*r)/r},r.radiansToLength=h,r.lengthToRadians=f,r.lengthToDegrees=function(t,e){return p(f(t,e))},r.bearingToAzimuth=function(t){var e=t%360;return e<0&&(e+=360),e},r.radiansToDegrees=p,r.degreesToRadians=function(t){return t%360*Math.PI/180},r.convertLength=function(t,e,r){if(void 0===e&&(e="kilometers"),void 0===r&&(r="kilometers"),!(t>=0))throw new Error("length must be a positive number");return h(f(t,e),r)},r.convertArea=function(t,e,n){if(void 0===e&&(e="meters"),void 0===n&&(n="kilometers"),!(t>=0))throw new Error("area must be a positive number");var a=r.areaFactors[e];if(!a)throw new Error("invalid original units");var i=r.areaFactors[n];if(!i)throw new Error("invalid final units");return t/a*i},r.isNumber=d,r.isObject=function(t){return!!t&&t.constructor===Object},r.validateBBox=function(t){if(!t)throw new Error("bbox is required");if(!Array.isArray(t))throw new Error("bbox must be an Array");if(4!==t.length&&6!==t.length)throw new Error("bbox must be an Array of 4 or 6 numbers");t.forEach(function(t){if(!d(t))throw new Error("bbox must only contain numbers")})},r.validateId=function(t){if(!t)throw new Error("id is required");if(-1===["string","number"].indexOf(typeof t))throw new Error("id must be a number or a string")},r.radians2degrees=function(){throw new Error("method has been renamed to `radiansToDegrees`")},r.degrees2radians=function(){throw new Error("method has been renamed to `degreesToRadians`")},r.distanceToDegrees=function(){throw new Error("method has been renamed to `lengthToDegrees`")},r.distanceToRadians=function(){throw new Error("method has been renamed to `lengthToRadians`")},r.radiansToDistance=function(){throw new Error("method has been renamed to `radiansToLength`")},r.bearingToAngle=function(){throw new Error("method has been renamed to `bearingToAzimuth`")},r.convertDistance=function(){throw new Error("method has been renamed to `convertLength`")}},{}],61:[function(t,e,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=t("@turf/helpers");function a(t,e,r){if(null!==t)for(var n,i,o,s,l,c,u,h,f=0,p=0,d=t.type,g="FeatureCollection"===d,v="Feature"===d,m=g?t.features.length:1,y=0;yc||p>u||d>h)return l=a,c=r,u=p,h=d,void(o=0);var g=n.lineString([l,a],t.properties);if(!1===e(g,r,i,d,o))return!1;o++,l=a})&&void 0}}})}function u(t,e){if(!t)throw new Error("geojson is required");l(t,function(t,r,a){if(null!==t.geometry){var i=t.geometry.type,o=t.geometry.coordinates;switch(i){case"LineString":if(!1===e(t,r,a,0,0))return!1;break;case"Polygon":for(var s=0;sa&&(a=t[o]),t[o]=0;c--)if(u[c]!==h[c])return!1;for(c=u.length-1;c>=0;c--)if(s=u[c],!x(t[s],e[s],r,n))return!1;return!0}(t,e,r,n))}return r?t===e:t==e}function b(t){return"[object Arguments]"==Object.prototype.toString.call(t)}function _(t,e){if(!t||!e)return!1;if("[object RegExp]"==Object.prototype.toString.call(e))return e.test(t);try{if(t instanceof e)return!0}catch(t){}return!Error.isPrototypeOf(e)&&!0===e.call({},t)}function w(t,e,r,n){var a;if("function"!=typeof e)throw new TypeError('"block" argument must be a function');"string"==typeof r&&(n=r,r=null),a=function(t){var e;try{t()}catch(t){e=t}return e}(e),n=(r&&r.name?" ("+r.name+").":".")+(n?" "+n:"."),t&&!a&&m(a,r,"Missing expected exception"+n);var i="string"==typeof n,s=!t&&a&&!r;if((!t&&o.isError(a)&&i&&_(a,r)||s)&&m(a,r,"Got unwanted exception"+n),t&&a&&r&&!_(a,r)||!t&&a)throw a}f.AssertionError=function(t){var e;this.name="AssertionError",this.actual=t.actual,this.expected=t.expected,this.operator=t.operator,t.message?(this.message=t.message,this.generatedMessage=!1):(this.message=g(v((e=this).actual),128)+" "+e.operator+" "+g(v(e.expected),128),this.generatedMessage=!0);var r=t.stackStartFunction||m;if(Error.captureStackTrace)Error.captureStackTrace(this,r);else{var n=new Error;if(n.stack){var a=n.stack,i=d(r),o=a.indexOf("\n"+i);if(o>=0){var s=a.indexOf("\n",o+1);a=a.substring(s+1)}this.stack=a}}},o.inherits(f.AssertionError,Error),f.fail=m,f.ok=y,f.equal=function(t,e,r){t!=e&&m(t,e,r,"==",f.equal)},f.notEqual=function(t,e,r){t==e&&m(t,e,r,"!=",f.notEqual)},f.deepEqual=function(t,e,r){x(t,e,!1)||m(t,e,r,"deepEqual",f.deepEqual)},f.deepStrictEqual=function(t,e,r){x(t,e,!0)||m(t,e,r,"deepStrictEqual",f.deepStrictEqual)},f.notDeepEqual=function(t,e,r){x(t,e,!1)&&m(t,e,r,"notDeepEqual",f.notDeepEqual)},f.notDeepStrictEqual=function t(e,r,n){x(e,r,!0)&&m(e,r,n,"notDeepStrictEqual",t)},f.strictEqual=function(t,e,r){t!==e&&m(t,e,r,"===",f.strictEqual)},f.notStrictEqual=function(t,e,r){t===e&&m(t,e,r,"!==",f.notStrictEqual)},f.throws=function(t,e,r){w(!0,t,e,r)},f.doesNotThrow=function(t,e,r){w(!1,t,e,r)},f.ifError=function(t){if(t)throw t},f.strict=n(function t(e,r){e||m(e,!0,r,"==",t)},f,{equal:f.strictEqual,deepEqual:f.deepStrictEqual,notEqual:f.notStrictEqual,notDeepEqual:f.notDeepStrictEqual}),f.strict.strict=f.strict;var k=Object.keys||function(t){var e=[];for(var r in t)s.call(t,r)&&e.push(r);return e}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"object-assign":455,"util/":73}],71:[function(t,e,r){"function"==typeof Object.create?e.exports=function(t,e){t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}})}:e.exports=function(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}},{}],72:[function(t,e,r){e.exports=function(t){return t&&"object"==typeof t&&"function"==typeof t.copy&&"function"==typeof t.fill&&"function"==typeof t.readUInt8}},{}],73:[function(t,e,r){(function(e,n){var a=/%[sdj%]/g;r.format=function(t){if(!m(t)){for(var e=[],r=0;r=i)return t;switch(t){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch(t){return"[Circular]"}default:return t}}),l=n[r];r=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),d(e)?n.showHidden=e:e&&r._extend(n,e),y(n.showHidden)&&(n.showHidden=!1),y(n.depth)&&(n.depth=2),y(n.colors)&&(n.colors=!1),y(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=l),u(n,t,n.depth)}function l(t,e){var r=s.styles[e];return r?"\x1b["+s.colors[r][0]+"m"+t+"\x1b["+s.colors[r][1]+"m":t}function c(t,e){return t}function u(t,e,n){if(t.customInspect&&e&&k(e.inspect)&&e.inspect!==r.inspect&&(!e.constructor||e.constructor.prototype!==e)){var a=e.inspect(n,t);return m(a)||(a=u(t,a,n)),a}var i=function(t,e){if(y(e))return t.stylize("undefined","undefined");if(m(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}if(v(e))return t.stylize(""+e,"number");if(d(e))return t.stylize(""+e,"boolean");if(g(e))return t.stylize("null","null")}(t,e);if(i)return i;var o=Object.keys(e),s=function(t){var e={};return t.forEach(function(t,r){e[t]=!0}),e}(o);if(t.showHidden&&(o=Object.getOwnPropertyNames(e)),w(e)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return h(e);if(0===o.length){if(k(e)){var l=e.name?": "+e.name:"";return t.stylize("[Function"+l+"]","special")}if(x(e))return t.stylize(RegExp.prototype.toString.call(e),"regexp");if(_(e))return t.stylize(Date.prototype.toString.call(e),"date");if(w(e))return h(e)}var c,b="",T=!1,M=["{","}"];(p(e)&&(T=!0,M=["[","]"]),k(e))&&(b=" [Function"+(e.name?": "+e.name:"")+"]");return x(e)&&(b=" "+RegExp.prototype.toString.call(e)),_(e)&&(b=" "+Date.prototype.toUTCString.call(e)),w(e)&&(b=" "+h(e)),0!==o.length||T&&0!=e.length?n<0?x(e)?t.stylize(RegExp.prototype.toString.call(e),"regexp"):t.stylize("[Object]","special"):(t.seen.push(e),c=T?function(t,e,r,n,a){for(var i=[],o=0,s=e.length;o=0&&0,t+e.replace(/\u001b\[\d\d?m/g,"").length+1},0)>60)return r[0]+(""===e?"":e+"\n ")+" "+t.join(",\n ")+" "+r[1];return r[0]+e+" "+t.join(", ")+" "+r[1]}(c,b,M)):M[0]+b+M[1]}function h(t){return"["+Error.prototype.toString.call(t)+"]"}function f(t,e,r,n,a,i){var o,s,l;if((l=Object.getOwnPropertyDescriptor(e,a)||{value:e[a]}).get?s=l.set?t.stylize("[Getter/Setter]","special"):t.stylize("[Getter]","special"):l.set&&(s=t.stylize("[Setter]","special")),S(n,a)||(o="["+a+"]"),s||(t.seen.indexOf(l.value)<0?(s=g(r)?u(t,l.value,null):u(t,l.value,r-1)).indexOf("\n")>-1&&(s=i?s.split("\n").map(function(t){return" "+t}).join("\n").substr(2):"\n"+s.split("\n").map(function(t){return" "+t}).join("\n")):s=t.stylize("[Circular]","special")),y(o)){if(i&&a.match(/^\d+$/))return s;(o=JSON.stringify(""+a)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(o=o.substr(1,o.length-2),o=t.stylize(o,"name")):(o=o.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),o=t.stylize(o,"string"))}return o+": "+s}function p(t){return Array.isArray(t)}function d(t){return"boolean"==typeof t}function g(t){return null===t}function v(t){return"number"==typeof t}function m(t){return"string"==typeof t}function y(t){return void 0===t}function x(t){return b(t)&&"[object RegExp]"===T(t)}function b(t){return"object"==typeof t&&null!==t}function _(t){return b(t)&&"[object Date]"===T(t)}function w(t){return b(t)&&("[object Error]"===T(t)||t instanceof Error)}function k(t){return"function"==typeof t}function T(t){return Object.prototype.toString.call(t)}function M(t){return t<10?"0"+t.toString(10):t.toString(10)}r.debuglog=function(t){if(y(i)&&(i=e.env.NODE_DEBUG||""),t=t.toUpperCase(),!o[t])if(new RegExp("\\b"+t+"\\b","i").test(i)){var n=e.pid;o[t]=function(){var e=r.format.apply(r,arguments);console.error("%s %d: %s",t,n,e)}}else o[t]=function(){};return o[t]},r.inspect=s,s.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},s.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},r.isArray=p,r.isBoolean=d,r.isNull=g,r.isNullOrUndefined=function(t){return null==t},r.isNumber=v,r.isString=m,r.isSymbol=function(t){return"symbol"==typeof t},r.isUndefined=y,r.isRegExp=x,r.isObject=b,r.isDate=_,r.isError=w,r.isFunction=k,r.isPrimitive=function(t){return null===t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||"symbol"==typeof t||"undefined"==typeof t},r.isBuffer=t("./support/isBuffer");var A=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function S(t,e){return Object.prototype.hasOwnProperty.call(t,e)}r.log=function(){var t,e;console.log("%s - %s",(t=new Date,e=[M(t.getHours()),M(t.getMinutes()),M(t.getSeconds())].join(":"),[t.getDate(),A[t.getMonth()],e].join(" ")),r.format.apply(r,arguments))},r.inherits=t("inherits"),r._extend=function(t,e){if(!e||!b(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t}}).call(this,t("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./support/isBuffer":72,_process:483,inherits:71}],74:[function(t,e,r){e.exports=function(t){return atob(t)}},{}],75:[function(t,e,r){"use strict";e.exports=function(t,e){for(var r=e.length,i=new Array(r+1),o=0;o0?o-4:o;for(r=0;r>16&255,l[u++]=e>>8&255,l[u++]=255&e;2===s&&(e=a[t.charCodeAt(r)]<<2|a[t.charCodeAt(r+1)]>>4,l[u++]=255&e);1===s&&(e=a[t.charCodeAt(r)]<<10|a[t.charCodeAt(r+1)]<<4|a[t.charCodeAt(r+2)]>>2,l[u++]=e>>8&255,l[u++]=255&e);return l},r.fromByteArray=function(t){for(var e,r=t.length,a=r%3,i=[],o=0,s=r-a;os?s:o+16383));1===a?(e=t[r-1],i.push(n[e>>2]+n[e<<4&63]+"==")):2===a&&(e=(t[r-2]<<8)+t[r-1],i.push(n[e>>10]+n[e>>4&63]+n[e<<2&63]+"="));return i.join("")};for(var n=[],a=[],i="undefined"!=typeof Uint8Array?Uint8Array:Array,o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,l=o.length;s0)throw new Error("Invalid string. Length must be a multiple of 4");var r=t.indexOf("=");return-1===r&&(r=e),[r,r===e?0:4-r%4]}function u(t,e,r){for(var a,i,o=[],s=e;s>18&63]+n[i>>12&63]+n[i>>6&63]+n[63&i]);return o.join("")}a["-".charCodeAt(0)]=62,a["_".charCodeAt(0)]=63},{}],77:[function(t,e,r){"use strict";var n=t("./lib/rationalize");e.exports=function(t,e){return n(t[0].mul(e[1]).add(e[0].mul(t[1])),t[1].mul(e[1]))}},{"./lib/rationalize":87}],78:[function(t,e,r){"use strict";e.exports=function(t,e){return t[0].mul(e[1]).cmp(e[0].mul(t[1]))}},{}],79:[function(t,e,r){"use strict";var n=t("./lib/rationalize");e.exports=function(t,e){return n(t[0].mul(e[1]),t[1].mul(e[0]))}},{"./lib/rationalize":87}],80:[function(t,e,r){"use strict";var n=t("./is-rat"),a=t("./lib/is-bn"),i=t("./lib/num-to-bn"),o=t("./lib/str-to-bn"),s=t("./lib/rationalize"),l=t("./div");e.exports=function t(e,r){if(n(e))return r?l(e,t(r)):[e[0].clone(),e[1].clone()];var c=0;var u,h;if(a(e))u=e.clone();else if("string"==typeof e)u=o(e);else{if(0===e)return[i(0),i(1)];if(e===Math.floor(e))u=i(e);else{for(;e!==Math.floor(e);)e*=Math.pow(2,256),c-=256;u=i(e)}}if(n(r))u.mul(r[1]),h=r[0].clone();else if(a(r))h=r.clone();else if("string"==typeof r)h=o(r);else if(r)if(r===Math.floor(r))h=i(r);else{for(;r!==Math.floor(r);)r*=Math.pow(2,256),c+=256;h=i(r)}else h=i(1);c>0?u=u.ushln(c):c<0&&(h=h.ushln(-c));return s(u,h)}},{"./div":79,"./is-rat":81,"./lib/is-bn":85,"./lib/num-to-bn":86,"./lib/rationalize":87,"./lib/str-to-bn":88}],81:[function(t,e,r){"use strict";var n=t("./lib/is-bn");e.exports=function(t){return Array.isArray(t)&&2===t.length&&n(t[0])&&n(t[1])}},{"./lib/is-bn":85}],82:[function(t,e,r){"use strict";var n=t("bn.js");e.exports=function(t){return t.cmp(new n(0))}},{"bn.js":96}],83:[function(t,e,r){"use strict";var n=t("./bn-sign");e.exports=function(t){var e=t.length,r=t.words,a=0;if(1===e)a=r[0];else if(2===e)a=r[0]+67108864*r[1];else for(var i=0;i20)return 52;return r+32}},{"bit-twiddle":94,"double-bits":169}],85:[function(t,e,r){"use strict";t("bn.js");e.exports=function(t){return t&&"object"==typeof t&&Boolean(t.words)}},{"bn.js":96}],86:[function(t,e,r){"use strict";var n=t("bn.js"),a=t("double-bits");e.exports=function(t){var e=a.exponent(t);return e<52?new n(t):new n(t*Math.pow(2,52-e)).ushln(e-52)}},{"bn.js":96,"double-bits":169}],87:[function(t,e,r){"use strict";var n=t("./num-to-bn"),a=t("./bn-sign");e.exports=function(t,e){var r=a(t),i=a(e);if(0===r)return[n(0),n(1)];if(0===i)return[n(0),n(0)];i<0&&(t=t.neg(),e=e.neg());var o=t.gcd(e);if(o.cmpn(1))return[t.div(o),e.div(o)];return[t,e]}},{"./bn-sign":82,"./num-to-bn":86}],88:[function(t,e,r){"use strict";var n=t("bn.js");e.exports=function(t){return new n(t)}},{"bn.js":96}],89:[function(t,e,r){"use strict";var n=t("./lib/rationalize");e.exports=function(t,e){return n(t[0].mul(e[0]),t[1].mul(e[1]))}},{"./lib/rationalize":87}],90:[function(t,e,r){"use strict";var n=t("./lib/bn-sign");e.exports=function(t){return n(t[0])*n(t[1])}},{"./lib/bn-sign":82}],91:[function(t,e,r){"use strict";var n=t("./lib/rationalize");e.exports=function(t,e){return n(t[0].mul(e[1]).sub(t[1].mul(e[0])),t[1].mul(e[1]))}},{"./lib/rationalize":87}],92:[function(t,e,r){"use strict";var n=t("./lib/bn-to-num"),a=t("./lib/ctz");e.exports=function(t){var e=t[0],r=t[1];if(0===e.cmpn(0))return 0;var i=e.abs().divmod(r.abs()),o=i.div,s=n(o),l=i.mod,c=e.negative!==r.negative?-1:1;if(0===l.cmpn(0))return c*s;if(s){var u=a(s)+4,h=n(l.ushln(u).divRound(r));return c*(s+h*Math.pow(2,-u))}var f=r.bitLength()-l.bitLength()+53,h=n(l.ushln(f).divRound(r));return f<1023?c*h*Math.pow(2,-f):(h*=Math.pow(2,-1023),c*h*Math.pow(2,1023-f))}},{"./lib/bn-to-num":83,"./lib/ctz":84}],93:[function(t,e,r){"use strict";function n(t,e,r,n,a,i){var o=["function ",t,"(a,l,h,",n.join(","),"){",i?"":"var i=",r?"l-1":"h+1",";while(l<=h){var m=(l+h)>>>1,x=a",a?".get(m)":"[m]"];return i?e.indexOf("c")<0?o.push(";if(x===y){return m}else if(x<=y){"):o.push(";var p=c(x,y);if(p===0){return m}else if(p<=0){"):o.push(";if(",e,"){i=m;"),r?o.push("l=m+1}else{h=m-1}"):o.push("h=m-1}else{l=m+1}"),o.push("}"),i?o.push("return -1};"):o.push("return i};"),o.join("")}function a(t,e,r,a){return new Function([n("A","x"+t+"y",e,["y"],!1,a),n("B","x"+t+"y",e,["y"],!0,a),n("P","c(x,y)"+t+"0",e,["y","c"],!1,a),n("Q","c(x,y)"+t+"0",e,["y","c"],!0,a),"function dispatchBsearch",r,"(a,y,c,l,h){if(a.shape){if(typeof(c)==='function'){return Q(a,(l===undefined)?0:l|0,(h===undefined)?a.shape[0]-1:h|0,y,c)}else{return B(a,(c===undefined)?0:c|0,(l===undefined)?a.shape[0]-1:l|0,y)}}else{if(typeof(c)==='function'){return P(a,(l===undefined)?0:l|0,(h===undefined)?a.length-1:h|0,y,c)}else{return A(a,(c===undefined)?0:c|0,(l===undefined)?a.length-1:l|0,y)}}}return dispatchBsearch",r].join(""))()}e.exports={ge:a(">=",!1,"GE"),gt:a(">",!1,"GT"),lt:a("<",!0,"LT"),le:a("<=",!0,"LE"),eq:a("-",!0,"EQ",!0)}},{}],94:[function(t,e,r){"use strict";function n(t){var e=32;return(t&=-t)&&e--,65535&t&&(e-=16),16711935&t&&(e-=8),252645135&t&&(e-=4),858993459&t&&(e-=2),1431655765&t&&(e-=1),e}r.INT_BITS=32,r.INT_MAX=2147483647,r.INT_MIN=-1<<31,r.sign=function(t){return(t>0)-(t<0)},r.abs=function(t){var e=t>>31;return(t^e)-e},r.min=function(t,e){return e^(t^e)&-(t65535)<<4,e|=r=((t>>>=e)>255)<<3,e|=r=((t>>>=r)>15)<<2,(e|=r=((t>>>=r)>3)<<1)|(t>>>=r)>>1},r.log10=function(t){return t>=1e9?9:t>=1e8?8:t>=1e7?7:t>=1e6?6:t>=1e5?5:t>=1e4?4:t>=1e3?3:t>=100?2:t>=10?1:0},r.popCount=function(t){return 16843009*((t=(858993459&(t-=t>>>1&1431655765))+(t>>>2&858993459))+(t>>>4)&252645135)>>>24},r.countTrailingZeros=n,r.nextPow2=function(t){return t+=0===t,--t,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,(t|=t>>>16)+1},r.prevPow2=function(t){return t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,(t|=t>>>16)-(t>>>1)},r.parity=function(t){return t^=t>>>16,t^=t>>>8,t^=t>>>4,27030>>>(t&=15)&1};var a=new Array(256);!function(t){for(var e=0;e<256;++e){var r=e,n=e,a=7;for(r>>>=1;r;r>>>=1)n<<=1,n|=1&r,--a;t[e]=n<>>8&255]<<16|a[t>>>16&255]<<8|a[t>>>24&255]},r.interleave2=function(t,e){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t&=65535)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e&=65535)|e<<8))|e<<4))|e<<2))|e<<1))<<1},r.deinterleave2=function(t,e){return(t=65535&((t=16711935&((t=252645135&((t=858993459&((t=t>>>e&1431655765)|t>>>1))|t>>>2))|t>>>4))|t>>>16))<<16>>16},r.interleave3=function(t,e,r){return t=1227133513&((t=3272356035&((t=251719695&((t=4278190335&((t&=1023)|t<<16))|t<<8))|t<<4))|t<<2),(t|=(e=1227133513&((e=3272356035&((e=251719695&((e=4278190335&((e&=1023)|e<<16))|e<<8))|e<<4))|e<<2))<<1)|(r=1227133513&((r=3272356035&((r=251719695&((r=4278190335&((r&=1023)|r<<16))|r<<8))|r<<4))|r<<2))<<2},r.deinterleave3=function(t,e){return(t=1023&((t=4278190335&((t=251719695&((t=3272356035&((t=t>>>e&1227133513)|t>>>2))|t>>>4))|t>>>8))|t>>>16))<<22>>22},r.nextCombination=function(t){var e=t|t-1;return e+1|(~e&-~e)-1>>>n(t)+1}},{}],95:[function(t,e,r){"use strict";var n=t("clamp");e.exports=function(t,e){e||(e={});var r,o,s,l,c,u,h,f,p,d,g,v=null==e.cutoff?.25:e.cutoff,m=null==e.radius?8:e.radius,y=e.channel||0;if(ArrayBuffer.isView(t)||Array.isArray(t)){if(!e.width||!e.height)throw Error("For raw data width and height should be provided by options");r=e.width,o=e.height,l=t,u=e.stride?e.stride:Math.floor(t.length/r/o)}else window.HTMLCanvasElement&&t instanceof window.HTMLCanvasElement?(h=(f=t).getContext("2d"),r=f.width,o=f.height,p=h.getImageData(0,0,r,o),l=p.data,u=4):window.CanvasRenderingContext2D&&t instanceof window.CanvasRenderingContext2D?(f=t.canvas,h=t,r=f.width,o=f.height,p=h.getImageData(0,0,r,o),l=p.data,u=4):window.ImageData&&t instanceof window.ImageData&&(p=t,r=t.width,o=t.height,l=p.data,u=4);if(s=Math.max(r,o),window.Uint8ClampedArray&&l instanceof window.Uint8ClampedArray||window.Uint8Array&&l instanceof window.Uint8Array)for(c=l,l=Array(r*o),d=0,g=c.length;d=49&&o<=54?o-49+10:o>=17&&o<=22?o-17+10:15&o}return n}function l(t,e,r,n){for(var a=0,i=Math.min(t.length,r),o=e;o=49?s-49+10:s>=17?s-17+10:s}return a}i.isBN=function(t){return t instanceof i||null!==t&&"object"==typeof t&&t.constructor.wordSize===i.wordSize&&Array.isArray(t.words)},i.max=function(t,e){return t.cmp(e)>0?t:e},i.min=function(t,e){return t.cmp(e)<0?t:e},i.prototype._init=function(t,e,r){if("number"==typeof t)return this._initNumber(t,e,r);if("object"==typeof t)return this._initArray(t,e,r);"hex"===e&&(e=16),n(e===(0|e)&&e>=2&&e<=36);var a=0;"-"===(t=t.toString().replace(/\s+/g,""))[0]&&a++,16===e?this._parseHex(t,a):this._parseBase(t,e,a),"-"===t[0]&&(this.negative=1),this.strip(),"le"===r&&this._initArray(this.toArray(),e,r)},i.prototype._initNumber=function(t,e,r){t<0&&(this.negative=1,t=-t),t<67108864?(this.words=[67108863&t],this.length=1):t<4503599627370496?(this.words=[67108863&t,t/67108864&67108863],this.length=2):(n(t<9007199254740992),this.words=[67108863&t,t/67108864&67108863,1],this.length=3),"le"===r&&this._initArray(this.toArray(),e,r)},i.prototype._initArray=function(t,e,r){if(n("number"==typeof t.length),t.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(t.length/3),this.words=new Array(this.length);for(var a=0;a=0;a-=3)o=t[a]|t[a-1]<<8|t[a-2]<<16,this.words[i]|=o<>>26-s&67108863,(s+=24)>=26&&(s-=26,i++);else if("le"===r)for(a=0,i=0;a>>26-s&67108863,(s+=24)>=26&&(s-=26,i++);return this.strip()},i.prototype._parseHex=function(t,e){this.length=Math.ceil((t.length-e)/6),this.words=new Array(this.length);for(var r=0;r=e;r-=6)a=s(t,r,r+6),this.words[n]|=a<>>26-i&4194303,(i+=24)>=26&&(i-=26,n++);r+6!==e&&(a=s(t,e,r+6),this.words[n]|=a<>>26-i&4194303),this.strip()},i.prototype._parseBase=function(t,e,r){this.words=[0],this.length=1;for(var n=0,a=1;a<=67108863;a*=e)n++;n--,a=a/e|0;for(var i=t.length-r,o=i%n,s=Math.min(i,i-o)+r,c=0,u=r;u1&&0===this.words[this.length-1];)this.length--;return this._normSign()},i.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},i.prototype.inspect=function(){return(this.red?""};var c=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],u=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],h=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function f(t,e,r){r.negative=e.negative^t.negative;var n=t.length+e.length|0;r.length=n,n=n-1|0;var a=0|t.words[0],i=0|e.words[0],o=a*i,s=67108863&o,l=o/67108864|0;r.words[0]=s;for(var c=1;c>>26,h=67108863&l,f=Math.min(c,e.length-1),p=Math.max(0,c-t.length+1);p<=f;p++){var d=c-p|0;u+=(o=(a=0|t.words[d])*(i=0|e.words[p])+h)/67108864|0,h=67108863&o}r.words[c]=0|h,l=0|u}return 0!==l?r.words[c]=0|l:r.length--,r.strip()}i.prototype.toString=function(t,e){var r;if(e=0|e||1,16===(t=t||10)||"hex"===t){r="";for(var a=0,i=0,o=0;o>>24-a&16777215)||o!==this.length-1?c[6-l.length]+l+r:l+r,(a+=2)>=26&&(a-=26,o--)}for(0!==i&&(r=i.toString(16)+r);r.length%e!=0;)r="0"+r;return 0!==this.negative&&(r="-"+r),r}if(t===(0|t)&&t>=2&&t<=36){var f=u[t],p=h[t];r="";var d=this.clone();for(d.negative=0;!d.isZero();){var g=d.modn(p).toString(t);r=(d=d.idivn(p)).isZero()?g+r:c[f-g.length]+g+r}for(this.isZero()&&(r="0"+r);r.length%e!=0;)r="0"+r;return 0!==this.negative&&(r="-"+r),r}n(!1,"Base should be between 2 and 36")},i.prototype.toNumber=function(){var t=this.words[0];return 2===this.length?t+=67108864*this.words[1]:3===this.length&&1===this.words[2]?t+=4503599627370496+67108864*this.words[1]:this.length>2&&n(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-t:t},i.prototype.toJSON=function(){return this.toString(16)},i.prototype.toBuffer=function(t,e){return n("undefined"!=typeof o),this.toArrayLike(o,t,e)},i.prototype.toArray=function(t,e){return this.toArrayLike(Array,t,e)},i.prototype.toArrayLike=function(t,e,r){var a=this.byteLength(),i=r||Math.max(1,a);n(a<=i,"byte array longer than desired length"),n(i>0,"Requested array length <= 0"),this.strip();var o,s,l="le"===e,c=new t(i),u=this.clone();if(l){for(s=0;!u.isZero();s++)o=u.andln(255),u.iushrn(8),c[s]=o;for(;s=4096&&(r+=13,e>>>=13),e>=64&&(r+=7,e>>>=7),e>=8&&(r+=4,e>>>=4),e>=2&&(r+=2,e>>>=2),r+e},i.prototype._zeroBits=function(t){if(0===t)return 26;var e=t,r=0;return 0==(8191&e)&&(r+=13,e>>>=13),0==(127&e)&&(r+=7,e>>>=7),0==(15&e)&&(r+=4,e>>>=4),0==(3&e)&&(r+=2,e>>>=2),0==(1&e)&&r++,r},i.prototype.bitLength=function(){var t=this.words[this.length-1],e=this._countBits(t);return 26*(this.length-1)+e},i.prototype.zeroBits=function(){if(this.isZero())return 0;for(var t=0,e=0;et.length?this.clone().ior(t):t.clone().ior(this)},i.prototype.uor=function(t){return this.length>t.length?this.clone().iuor(t):t.clone().iuor(this)},i.prototype.iuand=function(t){var e;e=this.length>t.length?t:this;for(var r=0;rt.length?this.clone().iand(t):t.clone().iand(this)},i.prototype.uand=function(t){return this.length>t.length?this.clone().iuand(t):t.clone().iuand(this)},i.prototype.iuxor=function(t){var e,r;this.length>t.length?(e=this,r=t):(e=t,r=this);for(var n=0;nt.length?this.clone().ixor(t):t.clone().ixor(this)},i.prototype.uxor=function(t){return this.length>t.length?this.clone().iuxor(t):t.clone().iuxor(this)},i.prototype.inotn=function(t){n("number"==typeof t&&t>=0);var e=0|Math.ceil(t/26),r=t%26;this._expand(e),r>0&&e--;for(var a=0;a0&&(this.words[a]=~this.words[a]&67108863>>26-r),this.strip()},i.prototype.notn=function(t){return this.clone().inotn(t)},i.prototype.setn=function(t,e){n("number"==typeof t&&t>=0);var r=t/26|0,a=t%26;return this._expand(r+1),this.words[r]=e?this.words[r]|1<t.length?(r=this,n=t):(r=t,n=this);for(var a=0,i=0;i>>26;for(;0!==a&&i>>26;if(this.length=r.length,0!==a)this.words[this.length]=a,this.length++;else if(r!==this)for(;it.length?this.clone().iadd(t):t.clone().iadd(this)},i.prototype.isub=function(t){if(0!==t.negative){t.negative=0;var e=this.iadd(t);return t.negative=1,e._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(t),this.negative=1,this._normSign();var r,n,a=this.cmp(t);if(0===a)return this.negative=0,this.length=1,this.words[0]=0,this;a>0?(r=this,n=t):(r=t,n=this);for(var i=0,o=0;o>26,this.words[o]=67108863&e;for(;0!==i&&o>26,this.words[o]=67108863&e;if(0===i&&o>>13,p=0|o[1],d=8191&p,g=p>>>13,v=0|o[2],m=8191&v,y=v>>>13,x=0|o[3],b=8191&x,_=x>>>13,w=0|o[4],k=8191&w,T=w>>>13,M=0|o[5],A=8191&M,S=M>>>13,E=0|o[6],L=8191&E,C=E>>>13,P=0|o[7],O=8191&P,z=P>>>13,I=0|o[8],D=8191&I,R=I>>>13,F=0|o[9],B=8191&F,N=F>>>13,j=0|s[0],V=8191&j,U=j>>>13,q=0|s[1],H=8191&q,G=q>>>13,Y=0|s[2],W=8191&Y,X=Y>>>13,Z=0|s[3],J=8191&Z,K=Z>>>13,Q=0|s[4],$=8191&Q,tt=Q>>>13,et=0|s[5],rt=8191&et,nt=et>>>13,at=0|s[6],it=8191&at,ot=at>>>13,st=0|s[7],lt=8191&st,ct=st>>>13,ut=0|s[8],ht=8191&ut,ft=ut>>>13,pt=0|s[9],dt=8191&pt,gt=pt>>>13;r.negative=t.negative^e.negative,r.length=19;var vt=(c+(n=Math.imul(h,V))|0)+((8191&(a=(a=Math.imul(h,U))+Math.imul(f,V)|0))<<13)|0;c=((i=Math.imul(f,U))+(a>>>13)|0)+(vt>>>26)|0,vt&=67108863,n=Math.imul(d,V),a=(a=Math.imul(d,U))+Math.imul(g,V)|0,i=Math.imul(g,U);var mt=(c+(n=n+Math.imul(h,H)|0)|0)+((8191&(a=(a=a+Math.imul(h,G)|0)+Math.imul(f,H)|0))<<13)|0;c=((i=i+Math.imul(f,G)|0)+(a>>>13)|0)+(mt>>>26)|0,mt&=67108863,n=Math.imul(m,V),a=(a=Math.imul(m,U))+Math.imul(y,V)|0,i=Math.imul(y,U),n=n+Math.imul(d,H)|0,a=(a=a+Math.imul(d,G)|0)+Math.imul(g,H)|0,i=i+Math.imul(g,G)|0;var yt=(c+(n=n+Math.imul(h,W)|0)|0)+((8191&(a=(a=a+Math.imul(h,X)|0)+Math.imul(f,W)|0))<<13)|0;c=((i=i+Math.imul(f,X)|0)+(a>>>13)|0)+(yt>>>26)|0,yt&=67108863,n=Math.imul(b,V),a=(a=Math.imul(b,U))+Math.imul(_,V)|0,i=Math.imul(_,U),n=n+Math.imul(m,H)|0,a=(a=a+Math.imul(m,G)|0)+Math.imul(y,H)|0,i=i+Math.imul(y,G)|0,n=n+Math.imul(d,W)|0,a=(a=a+Math.imul(d,X)|0)+Math.imul(g,W)|0,i=i+Math.imul(g,X)|0;var xt=(c+(n=n+Math.imul(h,J)|0)|0)+((8191&(a=(a=a+Math.imul(h,K)|0)+Math.imul(f,J)|0))<<13)|0;c=((i=i+Math.imul(f,K)|0)+(a>>>13)|0)+(xt>>>26)|0,xt&=67108863,n=Math.imul(k,V),a=(a=Math.imul(k,U))+Math.imul(T,V)|0,i=Math.imul(T,U),n=n+Math.imul(b,H)|0,a=(a=a+Math.imul(b,G)|0)+Math.imul(_,H)|0,i=i+Math.imul(_,G)|0,n=n+Math.imul(m,W)|0,a=(a=a+Math.imul(m,X)|0)+Math.imul(y,W)|0,i=i+Math.imul(y,X)|0,n=n+Math.imul(d,J)|0,a=(a=a+Math.imul(d,K)|0)+Math.imul(g,J)|0,i=i+Math.imul(g,K)|0;var bt=(c+(n=n+Math.imul(h,$)|0)|0)+((8191&(a=(a=a+Math.imul(h,tt)|0)+Math.imul(f,$)|0))<<13)|0;c=((i=i+Math.imul(f,tt)|0)+(a>>>13)|0)+(bt>>>26)|0,bt&=67108863,n=Math.imul(A,V),a=(a=Math.imul(A,U))+Math.imul(S,V)|0,i=Math.imul(S,U),n=n+Math.imul(k,H)|0,a=(a=a+Math.imul(k,G)|0)+Math.imul(T,H)|0,i=i+Math.imul(T,G)|0,n=n+Math.imul(b,W)|0,a=(a=a+Math.imul(b,X)|0)+Math.imul(_,W)|0,i=i+Math.imul(_,X)|0,n=n+Math.imul(m,J)|0,a=(a=a+Math.imul(m,K)|0)+Math.imul(y,J)|0,i=i+Math.imul(y,K)|0,n=n+Math.imul(d,$)|0,a=(a=a+Math.imul(d,tt)|0)+Math.imul(g,$)|0,i=i+Math.imul(g,tt)|0;var _t=(c+(n=n+Math.imul(h,rt)|0)|0)+((8191&(a=(a=a+Math.imul(h,nt)|0)+Math.imul(f,rt)|0))<<13)|0;c=((i=i+Math.imul(f,nt)|0)+(a>>>13)|0)+(_t>>>26)|0,_t&=67108863,n=Math.imul(L,V),a=(a=Math.imul(L,U))+Math.imul(C,V)|0,i=Math.imul(C,U),n=n+Math.imul(A,H)|0,a=(a=a+Math.imul(A,G)|0)+Math.imul(S,H)|0,i=i+Math.imul(S,G)|0,n=n+Math.imul(k,W)|0,a=(a=a+Math.imul(k,X)|0)+Math.imul(T,W)|0,i=i+Math.imul(T,X)|0,n=n+Math.imul(b,J)|0,a=(a=a+Math.imul(b,K)|0)+Math.imul(_,J)|0,i=i+Math.imul(_,K)|0,n=n+Math.imul(m,$)|0,a=(a=a+Math.imul(m,tt)|0)+Math.imul(y,$)|0,i=i+Math.imul(y,tt)|0,n=n+Math.imul(d,rt)|0,a=(a=a+Math.imul(d,nt)|0)+Math.imul(g,rt)|0,i=i+Math.imul(g,nt)|0;var wt=(c+(n=n+Math.imul(h,it)|0)|0)+((8191&(a=(a=a+Math.imul(h,ot)|0)+Math.imul(f,it)|0))<<13)|0;c=((i=i+Math.imul(f,ot)|0)+(a>>>13)|0)+(wt>>>26)|0,wt&=67108863,n=Math.imul(O,V),a=(a=Math.imul(O,U))+Math.imul(z,V)|0,i=Math.imul(z,U),n=n+Math.imul(L,H)|0,a=(a=a+Math.imul(L,G)|0)+Math.imul(C,H)|0,i=i+Math.imul(C,G)|0,n=n+Math.imul(A,W)|0,a=(a=a+Math.imul(A,X)|0)+Math.imul(S,W)|0,i=i+Math.imul(S,X)|0,n=n+Math.imul(k,J)|0,a=(a=a+Math.imul(k,K)|0)+Math.imul(T,J)|0,i=i+Math.imul(T,K)|0,n=n+Math.imul(b,$)|0,a=(a=a+Math.imul(b,tt)|0)+Math.imul(_,$)|0,i=i+Math.imul(_,tt)|0,n=n+Math.imul(m,rt)|0,a=(a=a+Math.imul(m,nt)|0)+Math.imul(y,rt)|0,i=i+Math.imul(y,nt)|0,n=n+Math.imul(d,it)|0,a=(a=a+Math.imul(d,ot)|0)+Math.imul(g,it)|0,i=i+Math.imul(g,ot)|0;var kt=(c+(n=n+Math.imul(h,lt)|0)|0)+((8191&(a=(a=a+Math.imul(h,ct)|0)+Math.imul(f,lt)|0))<<13)|0;c=((i=i+Math.imul(f,ct)|0)+(a>>>13)|0)+(kt>>>26)|0,kt&=67108863,n=Math.imul(D,V),a=(a=Math.imul(D,U))+Math.imul(R,V)|0,i=Math.imul(R,U),n=n+Math.imul(O,H)|0,a=(a=a+Math.imul(O,G)|0)+Math.imul(z,H)|0,i=i+Math.imul(z,G)|0,n=n+Math.imul(L,W)|0,a=(a=a+Math.imul(L,X)|0)+Math.imul(C,W)|0,i=i+Math.imul(C,X)|0,n=n+Math.imul(A,J)|0,a=(a=a+Math.imul(A,K)|0)+Math.imul(S,J)|0,i=i+Math.imul(S,K)|0,n=n+Math.imul(k,$)|0,a=(a=a+Math.imul(k,tt)|0)+Math.imul(T,$)|0,i=i+Math.imul(T,tt)|0,n=n+Math.imul(b,rt)|0,a=(a=a+Math.imul(b,nt)|0)+Math.imul(_,rt)|0,i=i+Math.imul(_,nt)|0,n=n+Math.imul(m,it)|0,a=(a=a+Math.imul(m,ot)|0)+Math.imul(y,it)|0,i=i+Math.imul(y,ot)|0,n=n+Math.imul(d,lt)|0,a=(a=a+Math.imul(d,ct)|0)+Math.imul(g,lt)|0,i=i+Math.imul(g,ct)|0;var Tt=(c+(n=n+Math.imul(h,ht)|0)|0)+((8191&(a=(a=a+Math.imul(h,ft)|0)+Math.imul(f,ht)|0))<<13)|0;c=((i=i+Math.imul(f,ft)|0)+(a>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,n=Math.imul(B,V),a=(a=Math.imul(B,U))+Math.imul(N,V)|0,i=Math.imul(N,U),n=n+Math.imul(D,H)|0,a=(a=a+Math.imul(D,G)|0)+Math.imul(R,H)|0,i=i+Math.imul(R,G)|0,n=n+Math.imul(O,W)|0,a=(a=a+Math.imul(O,X)|0)+Math.imul(z,W)|0,i=i+Math.imul(z,X)|0,n=n+Math.imul(L,J)|0,a=(a=a+Math.imul(L,K)|0)+Math.imul(C,J)|0,i=i+Math.imul(C,K)|0,n=n+Math.imul(A,$)|0,a=(a=a+Math.imul(A,tt)|0)+Math.imul(S,$)|0,i=i+Math.imul(S,tt)|0,n=n+Math.imul(k,rt)|0,a=(a=a+Math.imul(k,nt)|0)+Math.imul(T,rt)|0,i=i+Math.imul(T,nt)|0,n=n+Math.imul(b,it)|0,a=(a=a+Math.imul(b,ot)|0)+Math.imul(_,it)|0,i=i+Math.imul(_,ot)|0,n=n+Math.imul(m,lt)|0,a=(a=a+Math.imul(m,ct)|0)+Math.imul(y,lt)|0,i=i+Math.imul(y,ct)|0,n=n+Math.imul(d,ht)|0,a=(a=a+Math.imul(d,ft)|0)+Math.imul(g,ht)|0,i=i+Math.imul(g,ft)|0;var Mt=(c+(n=n+Math.imul(h,dt)|0)|0)+((8191&(a=(a=a+Math.imul(h,gt)|0)+Math.imul(f,dt)|0))<<13)|0;c=((i=i+Math.imul(f,gt)|0)+(a>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,n=Math.imul(B,H),a=(a=Math.imul(B,G))+Math.imul(N,H)|0,i=Math.imul(N,G),n=n+Math.imul(D,W)|0,a=(a=a+Math.imul(D,X)|0)+Math.imul(R,W)|0,i=i+Math.imul(R,X)|0,n=n+Math.imul(O,J)|0,a=(a=a+Math.imul(O,K)|0)+Math.imul(z,J)|0,i=i+Math.imul(z,K)|0,n=n+Math.imul(L,$)|0,a=(a=a+Math.imul(L,tt)|0)+Math.imul(C,$)|0,i=i+Math.imul(C,tt)|0,n=n+Math.imul(A,rt)|0,a=(a=a+Math.imul(A,nt)|0)+Math.imul(S,rt)|0,i=i+Math.imul(S,nt)|0,n=n+Math.imul(k,it)|0,a=(a=a+Math.imul(k,ot)|0)+Math.imul(T,it)|0,i=i+Math.imul(T,ot)|0,n=n+Math.imul(b,lt)|0,a=(a=a+Math.imul(b,ct)|0)+Math.imul(_,lt)|0,i=i+Math.imul(_,ct)|0,n=n+Math.imul(m,ht)|0,a=(a=a+Math.imul(m,ft)|0)+Math.imul(y,ht)|0,i=i+Math.imul(y,ft)|0;var At=(c+(n=n+Math.imul(d,dt)|0)|0)+((8191&(a=(a=a+Math.imul(d,gt)|0)+Math.imul(g,dt)|0))<<13)|0;c=((i=i+Math.imul(g,gt)|0)+(a>>>13)|0)+(At>>>26)|0,At&=67108863,n=Math.imul(B,W),a=(a=Math.imul(B,X))+Math.imul(N,W)|0,i=Math.imul(N,X),n=n+Math.imul(D,J)|0,a=(a=a+Math.imul(D,K)|0)+Math.imul(R,J)|0,i=i+Math.imul(R,K)|0,n=n+Math.imul(O,$)|0,a=(a=a+Math.imul(O,tt)|0)+Math.imul(z,$)|0,i=i+Math.imul(z,tt)|0,n=n+Math.imul(L,rt)|0,a=(a=a+Math.imul(L,nt)|0)+Math.imul(C,rt)|0,i=i+Math.imul(C,nt)|0,n=n+Math.imul(A,it)|0,a=(a=a+Math.imul(A,ot)|0)+Math.imul(S,it)|0,i=i+Math.imul(S,ot)|0,n=n+Math.imul(k,lt)|0,a=(a=a+Math.imul(k,ct)|0)+Math.imul(T,lt)|0,i=i+Math.imul(T,ct)|0,n=n+Math.imul(b,ht)|0,a=(a=a+Math.imul(b,ft)|0)+Math.imul(_,ht)|0,i=i+Math.imul(_,ft)|0;var St=(c+(n=n+Math.imul(m,dt)|0)|0)+((8191&(a=(a=a+Math.imul(m,gt)|0)+Math.imul(y,dt)|0))<<13)|0;c=((i=i+Math.imul(y,gt)|0)+(a>>>13)|0)+(St>>>26)|0,St&=67108863,n=Math.imul(B,J),a=(a=Math.imul(B,K))+Math.imul(N,J)|0,i=Math.imul(N,K),n=n+Math.imul(D,$)|0,a=(a=a+Math.imul(D,tt)|0)+Math.imul(R,$)|0,i=i+Math.imul(R,tt)|0,n=n+Math.imul(O,rt)|0,a=(a=a+Math.imul(O,nt)|0)+Math.imul(z,rt)|0,i=i+Math.imul(z,nt)|0,n=n+Math.imul(L,it)|0,a=(a=a+Math.imul(L,ot)|0)+Math.imul(C,it)|0,i=i+Math.imul(C,ot)|0,n=n+Math.imul(A,lt)|0,a=(a=a+Math.imul(A,ct)|0)+Math.imul(S,lt)|0,i=i+Math.imul(S,ct)|0,n=n+Math.imul(k,ht)|0,a=(a=a+Math.imul(k,ft)|0)+Math.imul(T,ht)|0,i=i+Math.imul(T,ft)|0;var Et=(c+(n=n+Math.imul(b,dt)|0)|0)+((8191&(a=(a=a+Math.imul(b,gt)|0)+Math.imul(_,dt)|0))<<13)|0;c=((i=i+Math.imul(_,gt)|0)+(a>>>13)|0)+(Et>>>26)|0,Et&=67108863,n=Math.imul(B,$),a=(a=Math.imul(B,tt))+Math.imul(N,$)|0,i=Math.imul(N,tt),n=n+Math.imul(D,rt)|0,a=(a=a+Math.imul(D,nt)|0)+Math.imul(R,rt)|0,i=i+Math.imul(R,nt)|0,n=n+Math.imul(O,it)|0,a=(a=a+Math.imul(O,ot)|0)+Math.imul(z,it)|0,i=i+Math.imul(z,ot)|0,n=n+Math.imul(L,lt)|0,a=(a=a+Math.imul(L,ct)|0)+Math.imul(C,lt)|0,i=i+Math.imul(C,ct)|0,n=n+Math.imul(A,ht)|0,a=(a=a+Math.imul(A,ft)|0)+Math.imul(S,ht)|0,i=i+Math.imul(S,ft)|0;var Lt=(c+(n=n+Math.imul(k,dt)|0)|0)+((8191&(a=(a=a+Math.imul(k,gt)|0)+Math.imul(T,dt)|0))<<13)|0;c=((i=i+Math.imul(T,gt)|0)+(a>>>13)|0)+(Lt>>>26)|0,Lt&=67108863,n=Math.imul(B,rt),a=(a=Math.imul(B,nt))+Math.imul(N,rt)|0,i=Math.imul(N,nt),n=n+Math.imul(D,it)|0,a=(a=a+Math.imul(D,ot)|0)+Math.imul(R,it)|0,i=i+Math.imul(R,ot)|0,n=n+Math.imul(O,lt)|0,a=(a=a+Math.imul(O,ct)|0)+Math.imul(z,lt)|0,i=i+Math.imul(z,ct)|0,n=n+Math.imul(L,ht)|0,a=(a=a+Math.imul(L,ft)|0)+Math.imul(C,ht)|0,i=i+Math.imul(C,ft)|0;var Ct=(c+(n=n+Math.imul(A,dt)|0)|0)+((8191&(a=(a=a+Math.imul(A,gt)|0)+Math.imul(S,dt)|0))<<13)|0;c=((i=i+Math.imul(S,gt)|0)+(a>>>13)|0)+(Ct>>>26)|0,Ct&=67108863,n=Math.imul(B,it),a=(a=Math.imul(B,ot))+Math.imul(N,it)|0,i=Math.imul(N,ot),n=n+Math.imul(D,lt)|0,a=(a=a+Math.imul(D,ct)|0)+Math.imul(R,lt)|0,i=i+Math.imul(R,ct)|0,n=n+Math.imul(O,ht)|0,a=(a=a+Math.imul(O,ft)|0)+Math.imul(z,ht)|0,i=i+Math.imul(z,ft)|0;var Pt=(c+(n=n+Math.imul(L,dt)|0)|0)+((8191&(a=(a=a+Math.imul(L,gt)|0)+Math.imul(C,dt)|0))<<13)|0;c=((i=i+Math.imul(C,gt)|0)+(a>>>13)|0)+(Pt>>>26)|0,Pt&=67108863,n=Math.imul(B,lt),a=(a=Math.imul(B,ct))+Math.imul(N,lt)|0,i=Math.imul(N,ct),n=n+Math.imul(D,ht)|0,a=(a=a+Math.imul(D,ft)|0)+Math.imul(R,ht)|0,i=i+Math.imul(R,ft)|0;var Ot=(c+(n=n+Math.imul(O,dt)|0)|0)+((8191&(a=(a=a+Math.imul(O,gt)|0)+Math.imul(z,dt)|0))<<13)|0;c=((i=i+Math.imul(z,gt)|0)+(a>>>13)|0)+(Ot>>>26)|0,Ot&=67108863,n=Math.imul(B,ht),a=(a=Math.imul(B,ft))+Math.imul(N,ht)|0,i=Math.imul(N,ft);var zt=(c+(n=n+Math.imul(D,dt)|0)|0)+((8191&(a=(a=a+Math.imul(D,gt)|0)+Math.imul(R,dt)|0))<<13)|0;c=((i=i+Math.imul(R,gt)|0)+(a>>>13)|0)+(zt>>>26)|0,zt&=67108863;var It=(c+(n=Math.imul(B,dt))|0)+((8191&(a=(a=Math.imul(B,gt))+Math.imul(N,dt)|0))<<13)|0;return c=((i=Math.imul(N,gt))+(a>>>13)|0)+(It>>>26)|0,It&=67108863,l[0]=vt,l[1]=mt,l[2]=yt,l[3]=xt,l[4]=bt,l[5]=_t,l[6]=wt,l[7]=kt,l[8]=Tt,l[9]=Mt,l[10]=At,l[11]=St,l[12]=Et,l[13]=Lt,l[14]=Ct,l[15]=Pt,l[16]=Ot,l[17]=zt,l[18]=It,0!==c&&(l[19]=c,r.length++),r};function d(t,e,r){return(new g).mulp(t,e,r)}function g(t,e){this.x=t,this.y=e}Math.imul||(p=f),i.prototype.mulTo=function(t,e){var r=this.length+t.length;return 10===this.length&&10===t.length?p(this,t,e):r<63?f(this,t,e):r<1024?function(t,e,r){r.negative=e.negative^t.negative,r.length=t.length+e.length;for(var n=0,a=0,i=0;i>>26)|0)>>>26,o&=67108863}r.words[i]=s,n=o,o=a}return 0!==n?r.words[i]=n:r.length--,r.strip()}(this,t,e):d(this,t,e)},g.prototype.makeRBT=function(t){for(var e=new Array(t),r=i.prototype._countBits(t)-1,n=0;n>=1;return n},g.prototype.permute=function(t,e,r,n,a,i){for(var o=0;o>>=1)a++;return 1<>>=13,r[2*o+1]=8191&i,i>>>=13;for(o=2*e;o>=26,e+=a/67108864|0,e+=i>>>26,this.words[r]=67108863&i}return 0!==e&&(this.words[r]=e,this.length++),this},i.prototype.muln=function(t){return this.clone().imuln(t)},i.prototype.sqr=function(){return this.mul(this)},i.prototype.isqr=function(){return this.imul(this.clone())},i.prototype.pow=function(t){var e=function(t){for(var e=new Array(t.bitLength()),r=0;r>>a}return e}(t);if(0===e.length)return new i(1);for(var r=this,n=0;n=0);var e,r=t%26,a=(t-r)/26,i=67108863>>>26-r<<26-r;if(0!==r){var o=0;for(e=0;e>>26-r}o&&(this.words[e]=o,this.length++)}if(0!==a){for(e=this.length-1;e>=0;e--)this.words[e+a]=this.words[e];for(e=0;e=0),a=e?(e-e%26)/26:0;var i=t%26,o=Math.min((t-i)/26,this.length),s=67108863^67108863>>>i<o)for(this.length-=o,c=0;c=0&&(0!==u||c>=a);c--){var h=0|this.words[c];this.words[c]=u<<26-i|h>>>i,u=h&s}return l&&0!==u&&(l.words[l.length++]=u),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},i.prototype.ishrn=function(t,e,r){return n(0===this.negative),this.iushrn(t,e,r)},i.prototype.shln=function(t){return this.clone().ishln(t)},i.prototype.ushln=function(t){return this.clone().iushln(t)},i.prototype.shrn=function(t){return this.clone().ishrn(t)},i.prototype.ushrn=function(t){return this.clone().iushrn(t)},i.prototype.testn=function(t){n("number"==typeof t&&t>=0);var e=t%26,r=(t-e)/26,a=1<=0);var e=t%26,r=(t-e)/26;if(n(0===this.negative,"imaskn works only with positive numbers"),this.length<=r)return this;if(0!==e&&r++,this.length=Math.min(r,this.length),0!==e){var a=67108863^67108863>>>e<=67108864;e++)this.words[e]-=67108864,e===this.length-1?this.words[e+1]=1:this.words[e+1]++;return this.length=Math.max(this.length,e+1),this},i.prototype.isubn=function(t){if(n("number"==typeof t),n(t<67108864),t<0)return this.iaddn(-t);if(0!==this.negative)return this.negative=0,this.iaddn(t),this.negative=1,this;if(this.words[0]-=t,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var e=0;e>26)-(l/67108864|0),this.words[a+r]=67108863&i}for(;a>26,this.words[a+r]=67108863&i;if(0===s)return this.strip();for(n(-1===s),s=0,a=0;a>26,this.words[a]=67108863&i;return this.negative=1,this.strip()},i.prototype._wordDiv=function(t,e){var r=(this.length,t.length),n=this.clone(),a=t,o=0|a.words[a.length-1];0!==(r=26-this._countBits(o))&&(a=a.ushln(r),n.iushln(r),o=0|a.words[a.length-1]);var s,l=n.length-a.length;if("mod"!==e){(s=new i(null)).length=l+1,s.words=new Array(s.length);for(var c=0;c=0;h--){var f=67108864*(0|n.words[a.length+h])+(0|n.words[a.length+h-1]);for(f=Math.min(f/o|0,67108863),n._ishlnsubmul(a,f,h);0!==n.negative;)f--,n.negative=0,n._ishlnsubmul(a,1,h),n.isZero()||(n.negative^=1);s&&(s.words[h]=f)}return s&&s.strip(),n.strip(),"div"!==e&&0!==r&&n.iushrn(r),{div:s||null,mod:n}},i.prototype.divmod=function(t,e,r){return n(!t.isZero()),this.isZero()?{div:new i(0),mod:new i(0)}:0!==this.negative&&0===t.negative?(s=this.neg().divmod(t,e),"mod"!==e&&(a=s.div.neg()),"div"!==e&&(o=s.mod.neg(),r&&0!==o.negative&&o.iadd(t)),{div:a,mod:o}):0===this.negative&&0!==t.negative?(s=this.divmod(t.neg(),e),"mod"!==e&&(a=s.div.neg()),{div:a,mod:s.mod}):0!=(this.negative&t.negative)?(s=this.neg().divmod(t.neg(),e),"div"!==e&&(o=s.mod.neg(),r&&0!==o.negative&&o.isub(t)),{div:s.div,mod:o}):t.length>this.length||this.cmp(t)<0?{div:new i(0),mod:this}:1===t.length?"div"===e?{div:this.divn(t.words[0]),mod:null}:"mod"===e?{div:null,mod:new i(this.modn(t.words[0]))}:{div:this.divn(t.words[0]),mod:new i(this.modn(t.words[0]))}:this._wordDiv(t,e);var a,o,s},i.prototype.div=function(t){return this.divmod(t,"div",!1).div},i.prototype.mod=function(t){return this.divmod(t,"mod",!1).mod},i.prototype.umod=function(t){return this.divmod(t,"mod",!0).mod},i.prototype.divRound=function(t){var e=this.divmod(t);if(e.mod.isZero())return e.div;var r=0!==e.div.negative?e.mod.isub(t):e.mod,n=t.ushrn(1),a=t.andln(1),i=r.cmp(n);return i<0||1===a&&0===i?e.div:0!==e.div.negative?e.div.isubn(1):e.div.iaddn(1)},i.prototype.modn=function(t){n(t<=67108863);for(var e=(1<<26)%t,r=0,a=this.length-1;a>=0;a--)r=(e*r+(0|this.words[a]))%t;return r},i.prototype.idivn=function(t){n(t<=67108863);for(var e=0,r=this.length-1;r>=0;r--){var a=(0|this.words[r])+67108864*e;this.words[r]=a/t|0,e=a%t}return this.strip()},i.prototype.divn=function(t){return this.clone().idivn(t)},i.prototype.egcd=function(t){n(0===t.negative),n(!t.isZero());var e=this,r=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var a=new i(1),o=new i(0),s=new i(0),l=new i(1),c=0;e.isEven()&&r.isEven();)e.iushrn(1),r.iushrn(1),++c;for(var u=r.clone(),h=e.clone();!e.isZero();){for(var f=0,p=1;0==(e.words[0]&p)&&f<26;++f,p<<=1);if(f>0)for(e.iushrn(f);f-- >0;)(a.isOdd()||o.isOdd())&&(a.iadd(u),o.isub(h)),a.iushrn(1),o.iushrn(1);for(var d=0,g=1;0==(r.words[0]&g)&&d<26;++d,g<<=1);if(d>0)for(r.iushrn(d);d-- >0;)(s.isOdd()||l.isOdd())&&(s.iadd(u),l.isub(h)),s.iushrn(1),l.iushrn(1);e.cmp(r)>=0?(e.isub(r),a.isub(s),o.isub(l)):(r.isub(e),s.isub(a),l.isub(o))}return{a:s,b:l,gcd:r.iushln(c)}},i.prototype._invmp=function(t){n(0===t.negative),n(!t.isZero());var e=this,r=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var a,o=new i(1),s=new i(0),l=r.clone();e.cmpn(1)>0&&r.cmpn(1)>0;){for(var c=0,u=1;0==(e.words[0]&u)&&c<26;++c,u<<=1);if(c>0)for(e.iushrn(c);c-- >0;)o.isOdd()&&o.iadd(l),o.iushrn(1);for(var h=0,f=1;0==(r.words[0]&f)&&h<26;++h,f<<=1);if(h>0)for(r.iushrn(h);h-- >0;)s.isOdd()&&s.iadd(l),s.iushrn(1);e.cmp(r)>=0?(e.isub(r),o.isub(s)):(r.isub(e),s.isub(o))}return(a=0===e.cmpn(1)?o:s).cmpn(0)<0&&a.iadd(t),a},i.prototype.gcd=function(t){if(this.isZero())return t.abs();if(t.isZero())return this.abs();var e=this.clone(),r=t.clone();e.negative=0,r.negative=0;for(var n=0;e.isEven()&&r.isEven();n++)e.iushrn(1),r.iushrn(1);for(;;){for(;e.isEven();)e.iushrn(1);for(;r.isEven();)r.iushrn(1);var a=e.cmp(r);if(a<0){var i=e;e=r,r=i}else if(0===a||0===r.cmpn(1))break;e.isub(r)}return r.iushln(n)},i.prototype.invm=function(t){return this.egcd(t).a.umod(t)},i.prototype.isEven=function(){return 0==(1&this.words[0])},i.prototype.isOdd=function(){return 1==(1&this.words[0])},i.prototype.andln=function(t){return this.words[0]&t},i.prototype.bincn=function(t){n("number"==typeof t);var e=t%26,r=(t-e)/26,a=1<>>26,s&=67108863,this.words[o]=s}return 0!==i&&(this.words[o]=i,this.length++),this},i.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},i.prototype.cmpn=function(t){var e,r=t<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)e=1;else{r&&(t=-t),n(t<=67108863,"Number is too big");var a=0|this.words[0];e=a===t?0:at.length)return 1;if(this.length=0;r--){var n=0|this.words[r],a=0|t.words[r];if(n!==a){na&&(e=1);break}}return e},i.prototype.gtn=function(t){return 1===this.cmpn(t)},i.prototype.gt=function(t){return 1===this.cmp(t)},i.prototype.gten=function(t){return this.cmpn(t)>=0},i.prototype.gte=function(t){return this.cmp(t)>=0},i.prototype.ltn=function(t){return-1===this.cmpn(t)},i.prototype.lt=function(t){return-1===this.cmp(t)},i.prototype.lten=function(t){return this.cmpn(t)<=0},i.prototype.lte=function(t){return this.cmp(t)<=0},i.prototype.eqn=function(t){return 0===this.cmpn(t)},i.prototype.eq=function(t){return 0===this.cmp(t)},i.red=function(t){return new w(t)},i.prototype.toRed=function(t){return n(!this.red,"Already a number in reduction context"),n(0===this.negative,"red works only with positives"),t.convertTo(this)._forceRed(t)},i.prototype.fromRed=function(){return n(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},i.prototype._forceRed=function(t){return this.red=t,this},i.prototype.forceRed=function(t){return n(!this.red,"Already a number in reduction context"),this._forceRed(t)},i.prototype.redAdd=function(t){return n(this.red,"redAdd works only with red numbers"),this.red.add(this,t)},i.prototype.redIAdd=function(t){return n(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,t)},i.prototype.redSub=function(t){return n(this.red,"redSub works only with red numbers"),this.red.sub(this,t)},i.prototype.redISub=function(t){return n(this.red,"redISub works only with red numbers"),this.red.isub(this,t)},i.prototype.redShl=function(t){return n(this.red,"redShl works only with red numbers"),this.red.shl(this,t)},i.prototype.redMul=function(t){return n(this.red,"redMul works only with red numbers"),this.red._verify2(this,t),this.red.mul(this,t)},i.prototype.redIMul=function(t){return n(this.red,"redMul works only with red numbers"),this.red._verify2(this,t),this.red.imul(this,t)},i.prototype.redSqr=function(){return n(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},i.prototype.redISqr=function(){return n(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},i.prototype.redSqrt=function(){return n(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},i.prototype.redInvm=function(){return n(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},i.prototype.redNeg=function(){return n(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},i.prototype.redPow=function(t){return n(this.red&&!t.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,t)};var v={k256:null,p224:null,p192:null,p25519:null};function m(t,e){this.name=t,this.p=new i(e,16),this.n=this.p.bitLength(),this.k=new i(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function y(){m.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function x(){m.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function b(){m.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function _(){m.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function w(t){if("string"==typeof t){var e=i._prime(t);this.m=e.p,this.prime=e}else n(t.gtn(1),"modulus must be greater than 1"),this.m=t,this.prime=null}function k(t){w.call(this,t),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new i(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}m.prototype._tmp=function(){var t=new i(null);return t.words=new Array(Math.ceil(this.n/13)),t},m.prototype.ireduce=function(t){var e,r=t;do{this.split(r,this.tmp),e=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(e>this.n);var n=e0?r.isub(this.p):r.strip(),r},m.prototype.split=function(t,e){t.iushrn(this.n,0,e)},m.prototype.imulK=function(t){return t.imul(this.k)},a(y,m),y.prototype.split=function(t,e){for(var r=Math.min(t.length,9),n=0;n>>22,a=i}a>>>=22,t.words[n-10]=a,0===a&&t.length>10?t.length-=10:t.length-=9},y.prototype.imulK=function(t){t.words[t.length]=0,t.words[t.length+1]=0,t.length+=2;for(var e=0,r=0;r>>=26,t.words[r]=a,e=n}return 0!==e&&(t.words[t.length++]=e),t},i._prime=function(t){if(v[t])return v[t];var e;if("k256"===t)e=new y;else if("p224"===t)e=new x;else if("p192"===t)e=new b;else{if("p25519"!==t)throw new Error("Unknown prime "+t);e=new _}return v[t]=e,e},w.prototype._verify1=function(t){n(0===t.negative,"red works only with positives"),n(t.red,"red works only with red numbers")},w.prototype._verify2=function(t,e){n(0==(t.negative|e.negative),"red works only with positives"),n(t.red&&t.red===e.red,"red works only with red numbers")},w.prototype.imod=function(t){return this.prime?this.prime.ireduce(t)._forceRed(this):t.umod(this.m)._forceRed(this)},w.prototype.neg=function(t){return t.isZero()?t.clone():this.m.sub(t)._forceRed(this)},w.prototype.add=function(t,e){this._verify2(t,e);var r=t.add(e);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},w.prototype.iadd=function(t,e){this._verify2(t,e);var r=t.iadd(e);return r.cmp(this.m)>=0&&r.isub(this.m),r},w.prototype.sub=function(t,e){this._verify2(t,e);var r=t.sub(e);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},w.prototype.isub=function(t,e){this._verify2(t,e);var r=t.isub(e);return r.cmpn(0)<0&&r.iadd(this.m),r},w.prototype.shl=function(t,e){return this._verify1(t),this.imod(t.ushln(e))},w.prototype.imul=function(t,e){return this._verify2(t,e),this.imod(t.imul(e))},w.prototype.mul=function(t,e){return this._verify2(t,e),this.imod(t.mul(e))},w.prototype.isqr=function(t){return this.imul(t,t.clone())},w.prototype.sqr=function(t){return this.mul(t,t)},w.prototype.sqrt=function(t){if(t.isZero())return t.clone();var e=this.m.andln(3);if(n(e%2==1),3===e){var r=this.m.add(new i(1)).iushrn(2);return this.pow(t,r)}for(var a=this.m.subn(1),o=0;!a.isZero()&&0===a.andln(1);)o++,a.iushrn(1);n(!a.isZero());var s=new i(1).toRed(this),l=s.redNeg(),c=this.m.subn(1).iushrn(1),u=this.m.bitLength();for(u=new i(2*u*u).toRed(this);0!==this.pow(u,c).cmp(l);)u.redIAdd(l);for(var h=this.pow(u,a),f=this.pow(t,a.addn(1).iushrn(1)),p=this.pow(t,a),d=o;0!==p.cmp(s);){for(var g=p,v=0;0!==g.cmp(s);v++)g=g.redSqr();n(v=0;n--){for(var c=e.words[n],u=l-1;u>=0;u--){var h=c>>u&1;a!==r[0]&&(a=this.sqr(a)),0!==h||0!==o?(o<<=1,o|=h,(4===++s||0===n&&0===u)&&(a=this.mul(a,r[o]),s=0,o=0)):s=0}l=26}return a},w.prototype.convertTo=function(t){var e=t.umod(this.m);return e===t?e.clone():e},w.prototype.convertFrom=function(t){var e=t.clone();return e.red=null,e},i.mont=function(t){return new k(t)},a(k,w),k.prototype.convertTo=function(t){return this.imod(t.ushln(this.shift))},k.prototype.convertFrom=function(t){var e=this.imod(t.mul(this.rinv));return e.red=null,e},k.prototype.imul=function(t,e){if(t.isZero()||e.isZero())return t.words[0]=0,t.length=1,t;var r=t.imul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),a=r.isub(n).iushrn(this.shift),i=a;return a.cmp(this.m)>=0?i=a.isub(this.m):a.cmpn(0)<0&&(i=a.iadd(this.m)),i._forceRed(this)},k.prototype.mul=function(t,e){if(t.isZero()||e.isZero())return new i(0)._forceRed(this);var r=t.mul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),a=r.isub(n).iushrn(this.shift),o=a;return a.cmp(this.m)>=0?o=a.isub(this.m):a.cmpn(0)<0&&(o=a.iadd(this.m)),o._forceRed(this)},k.prototype.invm=function(t){return this.imod(t._invmp(this.m).mul(this.r2))._forceRed(this)}}("undefined"==typeof e||e,this)},{buffer:105}],97:[function(t,e,r){"use strict";e.exports=function(t){var e,r,n,a=t.length,i=0;for(e=0;e>>1;if(!(u<=0)){var h,f=a.mallocDouble(2*u*s),p=a.mallocInt32(s);if((s=l(t,u,f,p))>0){if(1===u&&n)i.init(s),h=i.sweepComplete(u,r,0,s,f,p,0,s,f,p);else{var d=a.mallocDouble(2*u*c),g=a.mallocInt32(c);(c=l(e,u,d,g))>0&&(i.init(s+c),h=1===u?i.sweepBipartite(u,r,0,s,f,p,0,c,d,g):o(u,r,n,s,f,p,c,d,g),a.free(d),a.free(g))}a.free(f),a.free(p)}return h}}}function u(t,e){n.push([t,e])}},{"./lib/intersect":100,"./lib/sweep":104,"typedarray-pool":543}],99:[function(t,e,r){"use strict";var n="d",a="ax",i="vv",o="fp",s="es",l="rs",c="re",u="rb",h="ri",f="rp",p="bs",d="be",g="bb",v="bi",m="bp",y="rv",x="Q",b=[n,a,i,l,c,u,h,p,d,g,v];function _(t){var e="bruteForce"+(t?"Full":"Partial"),r=[],_=b.slice();t||_.splice(3,0,o);var w=["function "+e+"("+_.join()+"){"];function k(e,o){var _=function(t,e,r){var o="bruteForce"+(t?"Red":"Blue")+(e?"Flip":"")+(r?"Full":""),_=["function ",o,"(",b.join(),"){","var ",s,"=2*",n,";"],w="for(var i="+l+","+f+"="+s+"*"+l+";i<"+c+";++i,"+f+"+="+s+"){var x0="+u+"["+a+"+"+f+"],x1="+u+"["+a+"+"+f+"+"+n+"],xi="+h+"[i];",k="for(var j="+p+","+m+"="+s+"*"+p+";j<"+d+";++j,"+m+"+="+s+"){var y0="+g+"["+a+"+"+m+"],"+(r?"y1="+g+"["+a+"+"+m+"+"+n+"],":"")+"yi="+v+"[j];";return t?_.push(w,x,":",k):_.push(k,x,":",w),r?_.push("if(y1"+d+"-"+p+"){"),t?(k(!0,!1),w.push("}else{"),k(!1,!1)):(w.push("if("+o+"){"),k(!0,!0),w.push("}else{"),k(!0,!1),w.push("}}else{if("+o+"){"),k(!1,!0),w.push("}else{"),k(!1,!1),w.push("}")),w.push("}}return "+e);var T=r.join("")+w.join("");return new Function(T)()}r.partial=_(!1),r.full=_(!0)},{}],100:[function(t,e,r){"use strict";e.exports=function(t,e,r,i,u,S,E,L,C){!function(t,e){var r=8*a.log2(e+1)*(t+1)|0,i=a.nextPow2(b*r);w.length0;){var I=(O-=1)*b,D=w[I],R=w[I+1],F=w[I+2],B=w[I+3],N=w[I+4],j=w[I+5],V=O*_,U=k[V],q=k[V+1],H=1&j,G=!!(16&j),Y=u,W=S,X=L,Z=C;if(H&&(Y=L,W=C,X=u,Z=S),!(2&j&&(F=v(t,D,R,F,Y,W,q),R>=F)||4&j&&(R=m(t,D,R,F,Y,W,U))>=F)){var J=F-R,K=N-B;if(G){if(t*J*(J+K)=p0)&&!(p1>=hi)",["p0","p1"]),g=u("lo===p0",["p0"]),v=u("lo>>1,f=2*t,p=h,d=s[f*h+e];for(;c=x?(p=y,d=x):m>=_?(p=v,d=m):(p=b,d=_):x>=_?(p=y,d=x):_>=m?(p=v,d=m):(p=b,d=_);for(var w=f*(u-1),k=f*p,T=0;Tr&&a[h+e]>c;--u,h-=o){for(var f=h,p=h+o,d=0;d=0&&a.push("lo=e[k+n]");t.indexOf("hi")>=0&&a.push("hi=e[k+o]");return r.push(n.replace("_",a.join()).replace("$",t)),Function.apply(void 0,r)};var n="for(var j=2*a,k=j*c,l=k,m=c,n=b,o=a+b,p=c;d>p;++p,k+=j){var _;if($)if(m===p)m+=1,l+=j;else{for(var s=0;j>s;++s){var t=e[k+s];e[k+s]=e[l],e[l++]=t}var u=f[p];f[p]=f[m],f[m++]=u}}return m"},{}],103:[function(t,e,r){"use strict";e.exports=function(t,e){e<=4*n?a(0,e-1,t):function t(e,r,h){var f=(r-e+1)/6|0,p=e+f,d=r-f,g=e+r>>1,v=g-f,m=g+f,y=p,x=v,b=g,_=m,w=d,k=e+1,T=r-1,M=0;c(y,x,h)&&(M=y,y=x,x=M);c(_,w,h)&&(M=_,_=w,w=M);c(y,b,h)&&(M=y,y=b,b=M);c(x,b,h)&&(M=x,x=b,b=M);c(y,_,h)&&(M=y,y=_,_=M);c(b,_,h)&&(M=b,b=_,_=M);c(x,w,h)&&(M=x,x=w,w=M);c(x,b,h)&&(M=x,x=b,b=M);c(_,w,h)&&(M=_,_=w,w=M);var A=h[2*x];var S=h[2*x+1];var E=h[2*_];var L=h[2*_+1];var C=2*y;var P=2*b;var O=2*w;var z=2*p;var I=2*g;var D=2*d;for(var R=0;R<2;++R){var F=h[C+R],B=h[P+R],N=h[O+R];h[z+R]=F,h[I+R]=B,h[D+R]=N}o(v,e,h);o(m,r,h);for(var j=k;j<=T;++j)if(u(j,A,S,h))j!==k&&i(j,k,h),++k;else if(!u(j,E,L,h))for(;;){if(u(T,E,L,h)){u(T,A,S,h)?(s(j,k,T,h),++k,--T):(i(j,T,h),--T);break}if(--Tt;){var c=r[l-2],u=r[l-1];if(cr[e+1])}function u(t,e,r,n){var a=n[t*=2];return a>>1;i(p,S);for(var E=0,L=0,k=0;k=o)d(c,u,L--,C=C-o|0);else if(C>=0)d(s,l,E--,C);else if(C<=-o){C=-C-o|0;for(var P=0;P>>1;i(p,E);for(var L=0,C=0,P=0,T=0;T>1==p[2*T+3]>>1&&(z=2,T+=1),O<0){for(var I=-(O>>1)-1,D=0;D>1)-1;0===z?d(s,l,L--,I):1===z?d(c,u,C--,I):2===z&&d(h,f,P--,I)}}},scanBipartite:function(t,e,r,n,a,c,u,h,f,v,m,y){var x=0,b=2*t,_=e,w=e+t,k=1,T=1;n?T=o:k=o;for(var M=a;M>>1;i(p,L);for(var C=0,M=0;M=o?(O=!n,A-=o):(O=!!n,A-=1),O)g(s,l,C++,A);else{var z=y[A],I=b*A,D=m[I+e+1],R=m[I+e+1+t];t:for(var F=0;F>>1;i(p,k);for(var T=0,x=0;x=o)s[T++]=b-o;else{var A=d[b-=1],S=v*b,E=f[S+e+1],L=f[S+e+1+t];t:for(var C=0;C=0;--C)if(s[C]===b){for(var I=C+1;I0&&s.length>i){s.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+s.length+' "'+String(e)+'" listeners added. Use emitter.setMaxListeners() to increase limit.');l.name="MaxListenersExceededWarning",l.emitter=t,l.type=e,l.count=s.length,"object"==typeof console&&console.warn&&console.warn("%s: %s",l.name,l.message)}}else s=o[e]=r,++t._eventsCount;return t}function f(){if(!this.fired)switch(this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length){case 0:return this.listener.call(this.target);case 1:return this.listener.call(this.target,arguments[0]);case 2:return this.listener.call(this.target,arguments[0],arguments[1]);case 3:return this.listener.call(this.target,arguments[0],arguments[1],arguments[2]);default:for(var t=new Array(arguments.length),e=0;e1&&(e=arguments[1]),e instanceof Error)throw e;var l=new Error('Unhandled "error" event. ('+e+")");throw l.context=e,l}if(!(r=o[t]))return!1;var c="function"==typeof r;switch(n=arguments.length){case 1:!function(t,e,r){if(e)t.call(r);else for(var n=t.length,a=v(t,n),i=0;i=0;o--)if(r[o]===e||r[o].listener===e){s=r[o].listener,i=o;break}if(i<0)return this;0===i?r.shift():function(t,e){for(var r=e,n=r+1,a=t.length;n=0;i--)this.removeListener(t,e[i]);return this},o.prototype.listeners=function(t){return d(this,t,!0)},o.prototype.rawListeners=function(t){return d(this,t,!1)},o.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):g.call(t,e)},o.prototype.listenerCount=g,o.prototype.eventNames=function(){return this._eventsCount>0?Reflect.ownKeys(this._events):[]}},{}],107:[function(t,e,r){(function(e){"use strict";var n=t("base64-js"),a=t("ieee754"),i="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;r.Buffer=e,r.SlowBuffer=function(t){+t!=t&&(t=0);return e.alloc(+t)},r.INSPECT_MAX_BYTES=50;var o=2147483647;function s(t){if(t>o)throw new RangeError('The value "'+t+'" is invalid for option "size"');var r=new Uint8Array(t);return Object.setPrototypeOf(r,e.prototype),r}function e(t,e,r){if("number"==typeof t){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return u(t)}return l(t,e,r)}function l(t,r,n){if("string"==typeof t)return function(t,r){"string"==typeof r&&""!==r||(r="utf8");if(!e.isEncoding(r))throw new TypeError("Unknown encoding: "+r);var n=0|p(t,r),a=s(n),i=a.write(t,r);i!==n&&(a=a.slice(0,i));return a}(t,r);if(ArrayBuffer.isView(t))return h(t);if(null==t)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(j(t,ArrayBuffer)||t&&j(t.buffer,ArrayBuffer))return function(t,r,n){if(r<0||t.byteLength=o)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+o.toString(16)+" bytes");return 0|t}function p(t,r){if(e.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||j(t,ArrayBuffer))return t.byteLength;if("string"!=typeof t)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var n=t.length,a=arguments.length>2&&!0===arguments[2];if(!a&&0===n)return 0;for(var i=!1;;)switch(r){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return F(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return B(t).length;default:if(i)return a?-1:F(t).length;r=(""+r).toLowerCase(),i=!0}}function d(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function g(t,r,n,a,i){if(0===t.length)return-1;if("string"==typeof n?(a=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),V(n=+n)&&(n=i?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(i)return-1;n=t.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof r&&(r=e.from(r,a)),e.isBuffer(r))return 0===r.length?-1:v(t,r,n,a,i);if("number"==typeof r)return r&=255,"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,r,n):Uint8Array.prototype.lastIndexOf.call(t,r,n):v(t,[r],n,a,i);throw new TypeError("val must be string, number or Buffer")}function v(t,e,r,n,a){var i,o=1,s=t.length,l=e.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(t.length<2||e.length<2)return-1;o=2,s/=2,l/=2,r/=2}function c(t,e){return 1===o?t[e]:t.readUInt16BE(e*o)}if(a){var u=-1;for(i=r;is&&(r=s-l),i=r;i>=0;i--){for(var h=!0,f=0;fa&&(n=a):n=a;var i=e.length;n>i/2&&(n=i/2);for(var o=0;o>8,a=r%256,i.push(a),i.push(n);return i}(e,t.length-r),t,r,n)}function k(t,e,r){return 0===e&&r===t.length?n.fromByteArray(t):n.fromByteArray(t.slice(e,r))}function T(t,e,r){r=Math.min(t.length,r);for(var n=[],a=e;a239?4:c>223?3:c>191?2:1;if(a+h<=r)switch(h){case 1:c<128&&(u=c);break;case 2:128==(192&(i=t[a+1]))&&(l=(31&c)<<6|63&i)>127&&(u=l);break;case 3:i=t[a+1],o=t[a+2],128==(192&i)&&128==(192&o)&&(l=(15&c)<<12|(63&i)<<6|63&o)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:i=t[a+1],o=t[a+2],s=t[a+3],128==(192&i)&&128==(192&o)&&128==(192&s)&&(l=(15&c)<<18|(63&i)<<12|(63&o)<<6|63&s)>65535&&l<1114112&&(u=l)}null===u?(u=65533,h=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|1023&u),n.push(u),a+=h}return function(t){var e=t.length;if(e<=M)return String.fromCharCode.apply(String,t);var r="",n=0;for(;nthis.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return E(this,e,r);case"utf8":case"utf-8":return T(this,e,r);case"ascii":return A(this,e,r);case"latin1":case"binary":return S(this,e,r);case"base64":return k(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return L(this,e,r);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}.apply(this,arguments)},e.prototype.toLocaleString=e.prototype.toString,e.prototype.equals=function(t){if(!e.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===e.compare(this,t)},e.prototype.inspect=function(){var t="",e=r.INSPECT_MAX_BYTES;return t=this.toString("hex",0,e).replace(/(.{2})/g,"$1 ").trim(),this.length>e&&(t+=" ... "),""},i&&(e.prototype[i]=e.prototype.inspect),e.prototype.compare=function(t,r,n,a,i){if(j(t,Uint8Array)&&(t=e.from(t,t.offset,t.byteLength)),!e.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===r&&(r=0),void 0===n&&(n=t?t.length:0),void 0===a&&(a=0),void 0===i&&(i=this.length),r<0||n>t.length||a<0||i>this.length)throw new RangeError("out of range index");if(a>=i&&r>=n)return 0;if(a>=i)return-1;if(r>=n)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(a>>>=0),s=(n>>>=0)-(r>>>=0),l=Math.min(o,s),c=this.slice(a,i),u=t.slice(r,n),h=0;h>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0)}var a=this.length-e;if((void 0===r||r>a)&&(r=a),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var i=!1;;)switch(n){case"hex":return m(this,t,e,r);case"utf8":case"utf-8":return y(this,t,e,r);case"ascii":return x(this,t,e,r);case"latin1":case"binary":return b(this,t,e,r);case"base64":return _(this,t,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return w(this,t,e,r);default:if(i)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),i=!0}},e.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var M=4096;function A(t,e,r){var n="";r=Math.min(t.length,r);for(var a=e;an)&&(r=n);for(var a="",i=e;ir)throw new RangeError("Trying to access beyond buffer length")}function P(t,r,n,a,i,o){if(!e.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(r>i||rt.length)throw new RangeError("Index out of range")}function O(t,e,r,n,a,i){if(r+n>t.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function z(t,e,r,n,i){return e=+e,r>>>=0,i||O(t,0,r,4),a.write(t,e,r,n,23,4),r+4}function I(t,e,r,n,i){return e=+e,r>>>=0,i||O(t,0,r,8),a.write(t,e,r,n,52,8),r+8}e.prototype.slice=function(t,r){var n=this.length;(t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(r=void 0===r?n:~~r)<0?(r+=n)<0&&(r=0):r>n&&(r=n),r>>=0,e>>>=0,r||C(t,e,this.length);for(var n=this[t],a=1,i=0;++i>>=0,e>>>=0,r||C(t,e,this.length);for(var n=this[t+--e],a=1;e>0&&(a*=256);)n+=this[t+--e]*a;return n},e.prototype.readUInt8=function(t,e){return t>>>=0,e||C(t,1,this.length),this[t]},e.prototype.readUInt16LE=function(t,e){return t>>>=0,e||C(t,2,this.length),this[t]|this[t+1]<<8},e.prototype.readUInt16BE=function(t,e){return t>>>=0,e||C(t,2,this.length),this[t]<<8|this[t+1]},e.prototype.readUInt32LE=function(t,e){return t>>>=0,e||C(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},e.prototype.readUInt32BE=function(t,e){return t>>>=0,e||C(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},e.prototype.readIntLE=function(t,e,r){t>>>=0,e>>>=0,r||C(t,e,this.length);for(var n=this[t],a=1,i=0;++i=(a*=128)&&(n-=Math.pow(2,8*e)),n},e.prototype.readIntBE=function(t,e,r){t>>>=0,e>>>=0,r||C(t,e,this.length);for(var n=e,a=1,i=this[t+--n];n>0&&(a*=256);)i+=this[t+--n]*a;return i>=(a*=128)&&(i-=Math.pow(2,8*e)),i},e.prototype.readInt8=function(t,e){return t>>>=0,e||C(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},e.prototype.readInt16LE=function(t,e){t>>>=0,e||C(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},e.prototype.readInt16BE=function(t,e){t>>>=0,e||C(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},e.prototype.readInt32LE=function(t,e){return t>>>=0,e||C(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},e.prototype.readInt32BE=function(t,e){return t>>>=0,e||C(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},e.prototype.readFloatLE=function(t,e){return t>>>=0,e||C(t,4,this.length),a.read(this,t,!0,23,4)},e.prototype.readFloatBE=function(t,e){return t>>>=0,e||C(t,4,this.length),a.read(this,t,!1,23,4)},e.prototype.readDoubleLE=function(t,e){return t>>>=0,e||C(t,8,this.length),a.read(this,t,!0,52,8)},e.prototype.readDoubleBE=function(t,e){return t>>>=0,e||C(t,8,this.length),a.read(this,t,!1,52,8)},e.prototype.writeUIntLE=function(t,e,r,n){(t=+t,e>>>=0,r>>>=0,n)||P(this,t,e,r,Math.pow(2,8*r)-1,0);var a=1,i=0;for(this[e]=255&t;++i>>=0,r>>>=0,n)||P(this,t,e,r,Math.pow(2,8*r)-1,0);var a=r-1,i=1;for(this[e+a]=255&t;--a>=0&&(i*=256);)this[e+a]=t/i&255;return e+r},e.prototype.writeUInt8=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,1,255,0),this[e]=255&t,e+1},e.prototype.writeUInt16LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},e.prototype.writeUInt16BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},e.prototype.writeUInt32LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},e.prototype.writeUInt32BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},e.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var a=Math.pow(2,8*r-1);P(this,t,e,r,a-1,-a)}var i=0,o=1,s=0;for(this[e]=255&t;++i>0)-s&255;return e+r},e.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var a=Math.pow(2,8*r-1);P(this,t,e,r,a-1,-a)}var i=r-1,o=1,s=0;for(this[e+i]=255&t;--i>=0&&(o*=256);)t<0&&0===s&&0!==this[e+i+1]&&(s=1),this[e+i]=(t/o>>0)-s&255;return e+r},e.prototype.writeInt8=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},e.prototype.writeInt16LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},e.prototype.writeInt16BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},e.prototype.writeInt32LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},e.prototype.writeInt32BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},e.prototype.writeFloatLE=function(t,e,r){return z(this,t,e,!0,r)},e.prototype.writeFloatBE=function(t,e,r){return z(this,t,e,!1,r)},e.prototype.writeDoubleLE=function(t,e,r){return I(this,t,e,!0,r)},e.prototype.writeDoubleBE=function(t,e,r){return I(this,t,e,!1,r)},e.prototype.copy=function(t,r,n,a){if(!e.isBuffer(t))throw new TypeError("argument should be a Buffer");if(n||(n=0),a||0===a||(a=this.length),r>=t.length&&(r=t.length),r||(r=0),a>0&&a=this.length)throw new RangeError("Index out of range");if(a<0)throw new RangeError("sourceEnd out of bounds");a>this.length&&(a=this.length),t.length-r=0;--o)t[o+r]=this[o+n];else Uint8Array.prototype.set.call(t,this.subarray(n,a),r);return i},e.prototype.fill=function(t,r,n,a){if("string"==typeof t){if("string"==typeof r?(a=r,r=0,n=this.length):"string"==typeof n&&(a=n,n=this.length),void 0!==a&&"string"!=typeof a)throw new TypeError("encoding must be a string");if("string"==typeof a&&!e.isEncoding(a))throw new TypeError("Unknown encoding: "+a);if(1===t.length){var i=t.charCodeAt(0);("utf8"===a&&i<128||"latin1"===a)&&(t=i)}}else"number"==typeof t?t&=255:"boolean"==typeof t&&(t=Number(t));if(r<0||this.length>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"==typeof t)for(o=r;o55295&&r<57344){if(!a){if(r>56319){(e-=3)>-1&&i.push(239,191,189);continue}if(o+1===n){(e-=3)>-1&&i.push(239,191,189);continue}a=r;continue}if(r<56320){(e-=3)>-1&&i.push(239,191,189),a=r;continue}r=65536+(a-55296<<10|r-56320)}else a&&(e-=3)>-1&&i.push(239,191,189);if(a=null,r<128){if((e-=1)<0)break;i.push(r)}else if(r<2048){if((e-=2)<0)break;i.push(r>>6|192,63&r|128)}else if(r<65536){if((e-=3)<0)break;i.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;i.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return i}function B(t){return n.toByteArray(function(t){if((t=(t=t.split("=")[0]).trim().replace(D,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function N(t,e,r,n){for(var a=0;a=e.length||a>=t.length);++a)e[a+r]=t[a];return a}function j(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function V(t){return t!=t}}).call(this,t("buffer").Buffer)},{"base64-js":76,buffer:107,ieee754:413}],108:[function(t,e,r){"use strict";var n=t("./lib/monotone"),a=t("./lib/triangulation"),i=t("./lib/delaunay"),o=t("./lib/filter");function s(t){return[Math.min(t[0],t[1]),Math.max(t[0],t[1])]}function l(t,e){return t[0]-e[0]||t[1]-e[1]}function c(t,e,r){return e in t?t[e]:r}e.exports=function(t,e,r){Array.isArray(e)?(r=r||{},e=e||[]):(r=e||{},e=[]);var u=!!c(r,"delaunay",!0),h=!!c(r,"interior",!0),f=!!c(r,"exterior",!0),p=!!c(r,"infinity",!1);if(!h&&!f||0===t.length)return[];var d=n(t,e);if(u||h!==f||p){for(var g=a(t.length,function(t){return t.map(s).sort(l)}(e)),v=0;v0;){for(var u=r.pop(),s=r.pop(),h=-1,f=-1,l=o[s],d=1;d=0||(e.flip(s,u),a(t,e,r,h,s,f),a(t,e,r,s,f,h),a(t,e,r,f,u,h),a(t,e,r,u,h,f)))}}},{"binary-search-bounds":113,"robust-in-sphere":506}],110:[function(t,e,r){"use strict";var n,a=t("binary-search-bounds");function i(t,e,r,n,a,i,o){this.cells=t,this.neighbor=e,this.flags=n,this.constraint=r,this.active=a,this.next=i,this.boundary=o}function o(t,e){return t[0]-e[0]||t[1]-e[1]||t[2]-e[2]}e.exports=function(t,e,r){var n=function(t,e){for(var r=t.cells(),n=r.length,a=0;a0||l.length>0;){for(;s.length>0;){var p=s.pop();if(c[p]!==-a){c[p]=a;u[p];for(var d=0;d<3;++d){var g=f[3*p+d];g>=0&&0===c[g]&&(h[3*p+d]?l.push(g):(s.push(g),c[g]=a))}}}var v=l;l=s,s=v,l.length=0,a=-a}var m=function(t,e,r){for(var n=0,a=0;a1&&a(r[f[p-2]],r[f[p-1]],i)>0;)t.push([f[p-1],f[p-2],o]),p-=1;f.length=p,f.push(o);var d=u.upperIds;for(p=d.length;p>1&&a(r[d[p-2]],r[d[p-1]],i)<0;)t.push([d[p-2],d[p-1],o]),p-=1;d.length=p,d.push(o)}}function p(t,e){var r;return(r=t.a[0]m[0]&&a.push(new c(m,v,s,h),new c(v,m,o,h))}a.sort(u);for(var y=a[0].a[0]-(1+Math.abs(a[0].a[0]))*Math.pow(2,-52),x=[new l([y,1],[y,0],-1,[],[],[],[])],b=[],h=0,_=a.length;h<_;++h){var w=a[h],k=w.type;k===i?f(b,x,t,w.a,w.idx):k===s?d(x,t,w):g(x,t,w)}return b}},{"binary-search-bounds":113,"robust-orientation":508}],112:[function(t,e,r){"use strict";var n=t("binary-search-bounds");function a(t,e){this.stars=t,this.edges=e}e.exports=function(t,e){for(var r=new Array(t),n=0;n=0}}(),i.removeTriangle=function(t,e,r){var n=this.stars;o(n[t],e,r),o(n[e],r,t),o(n[r],t,e)},i.addTriangle=function(t,e,r){var n=this.stars;n[t].push(e,r),n[e].push(r,t),n[r].push(t,e)},i.opposite=function(t,e){for(var r=this.stars[e],n=1,a=r.length;n>>1,x=a[m]"];return a?e.indexOf("c")<0?i.push(";if(x===y){return m}else if(x<=y){"):i.push(";var p=c(x,y);if(p===0){return m}else if(p<=0){"):i.push(";if(",e,"){i=m;"),r?i.push("l=m+1}else{h=m-1}"):i.push("h=m-1}else{l=m+1}"),i.push("}"),a?i.push("return -1};"):i.push("return i};"),i.join("")}function a(t,e,r,a){return new Function([n("A","x"+t+"y",e,["y"],a),n("P","c(x,y)"+t+"0",e,["y","c"],a),"function dispatchBsearch",r,"(a,y,c,l,h){if(typeof(c)==='function'){return P(a,(l===void 0)?0:l|0,(h===void 0)?a.length-1:h|0,y,c)}else{return A(a,(c===void 0)?0:c|0,(l===void 0)?a.length-1:l|0,y)}}return dispatchBsearch",r].join(""))()}e.exports={ge:a(">=",!1,"GE"),gt:a(">",!1,"GT"),lt:a("<",!0,"LT"),le:a("<=",!0,"LE"),eq:a("-",!0,"EQ",!0)}},{}],114:[function(t,e,r){"use strict";e.exports=function(t){for(var e=1,r=1;rr?r:t:te?e:t}},{}],118:[function(t,e,r){"use strict";e.exports=function(t,e,r){var n;if(r){n=e;for(var a=new Array(e.length),i=0;ie[2]?1:0)}function m(t,e,r){if(0!==t.length){if(e)for(var n=0;n=0;--i){var x=e[u=(S=n[i])[0]],b=x[0],_=x[1],w=t[b],k=t[_];if((w[0]-k[0]||w[1]-k[1])<0){var T=b;b=_,_=T}x[0]=b;var M,A=x[1]=S[1];for(a&&(M=x[2]);i>0&&n[i-1][0]===u;){var S,E=(S=n[--i])[1];a?e.push([A,E,M]):e.push([A,E]),A=E}a?e.push([A,_,M]):e.push([A,_])}return f}(t,e,f,v,r));return m(e,y,r),!!y||(f.length>0||v.length>0)}},{"./lib/rat-seg-intersect":119,"big-rat":80,"big-rat/cmp":78,"big-rat/to-float":92,"box-intersect":98,nextafter:452,"rat-vec":487,"robust-segment-intersect":511,"union-find":544}],119:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){var i=s(e,t),h=s(n,r),f=u(i,h);if(0===o(f))return null;var p=s(t,r),d=u(h,p),g=a(d,f),v=c(i,g);return l(t,v)};var n=t("big-rat/mul"),a=t("big-rat/div"),i=t("big-rat/sub"),o=t("big-rat/sign"),s=t("rat-vec/sub"),l=t("rat-vec/add"),c=t("rat-vec/muls");function u(t,e){return i(n(t[0],e[1]),n(t[1],e[0]))}},{"big-rat/div":79,"big-rat/mul":89,"big-rat/sign":90,"big-rat/sub":91,"rat-vec/add":486,"rat-vec/muls":488,"rat-vec/sub":489}],120:[function(t,e,r){"use strict";var n=t("clamp");function a(t,e){null==e&&(e=!0);var r=t[0],a=t[1],i=t[2],o=t[3];return null==o&&(o=e?1:255),e&&(r*=255,a*=255,i*=255,o*=255),16777216*(r=255&n(r,0,255))+((a=255&n(a,0,255))<<16)+((i=255&n(i,0,255))<<8)+(o=255&n(o,0,255))}e.exports=a,e.exports.to=a,e.exports.from=function(t,e){var r=(t=+t)>>>24,n=(16711680&t)>>>16,a=(65280&t)>>>8,i=255&t;return!1===e?[r,n,a,i]:[r/255,n/255,a/255,i/255]}},{clamp:117}],121:[function(t,e,r){"use strict";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},{}],122:[function(t,e,r){"use strict";var n=t("color-rgba"),a=t("clamp"),i=t("dtype");e.exports=function(t,e){"float"!==e&&e||(e="array"),"uint"===e&&(e="uint8"),"uint_clamped"===e&&(e="uint8_clamped");var r=new(i(e))(4),o="uint8"!==e&&"uint8_clamped"!==e;return t.length&&"string"!=typeof t||((t=n(t))[0]/=255,t[1]/=255,t[2]/=255),function(t){return t instanceof Uint8Array||t instanceof Uint8ClampedArray||!!(Array.isArray(t)&&(t[0]>1||0===t[0])&&(t[1]>1||0===t[1])&&(t[2]>1||0===t[2])&&(!t[3]||t[3]>1))}(t)?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:255,o&&(r[0]/=255,r[1]/=255,r[2]/=255,r[3]/=255),r):(o?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:1):(r[0]=a(Math.floor(255*t[0]),0,255),r[1]=a(Math.floor(255*t[1]),0,255),r[2]=a(Math.floor(255*t[2]),0,255),r[3]=null==t[3]?255:a(Math.floor(255*t[3]),0,255)),r)}},{clamp:117,"color-rgba":124,dtype:171}],123:[function(t,e,r){(function(r){"use strict";var n=t("color-name"),a=t("is-plain-obj"),i=t("defined");e.exports=function(t){var e,s,l=[],c=1;if("string"==typeof t)if(n[t])l=n[t].slice(),s="rgb";else if("transparent"===t)c=0,s="rgb",l=[0,0,0];else if(/^#[A-Fa-f0-9]+$/.test(t)){var u=t.slice(1),h=u.length,f=h<=4;c=1,f?(l=[parseInt(u[0]+u[0],16),parseInt(u[1]+u[1],16),parseInt(u[2]+u[2],16)],4===h&&(c=parseInt(u[3]+u[3],16)/255)):(l=[parseInt(u[0]+u[1],16),parseInt(u[2]+u[3],16),parseInt(u[4]+u[5],16)],8===h&&(c=parseInt(u[6]+u[7],16)/255)),l[0]||(l[0]=0),l[1]||(l[1]=0),l[2]||(l[2]=0),s="rgb"}else if(e=/^((?:rgb|hs[lvb]|hwb|cmyk?|xy[zy]|gray|lab|lchu?v?|[ly]uv|lms)a?)\s*\(([^\)]*)\)/.exec(t)){var p=e[1],d="rgb"===p,u=p.replace(/a$/,"");s=u;var h="cmyk"===u?4:"gray"===u?1:3;l=e[2].trim().split(/\s*,\s*/).map(function(t,e){if(/%$/.test(t))return e===h?parseFloat(t)/100:"rgb"===u?255*parseFloat(t)/100:parseFloat(t);if("h"===u[e]){if(/deg$/.test(t))return parseFloat(t);if(void 0!==o[t])return o[t]}return parseFloat(t)}),p===u&&l.push(1),c=d?1:void 0===l[h]?1:l[h],l=l.slice(0,h)}else t.length>10&&/[0-9](?:\s|\/)/.test(t)&&(l=t.match(/([0-9]+)/g).map(function(t){return parseFloat(t)}),s=t.match(/([a-z])/gi).join("").toLowerCase());else if(isNaN(t))if(a(t)){var g=i(t.r,t.red,t.R,null);null!==g?(s="rgb",l=[g,i(t.g,t.green,t.G),i(t.b,t.blue,t.B)]):(s="hsl",l=[i(t.h,t.hue,t.H),i(t.s,t.saturation,t.S),i(t.l,t.lightness,t.L,t.b,t.brightness)]),c=i(t.a,t.alpha,t.opacity,1),null!=t.opacity&&(c/=100)}else(Array.isArray(t)||r.ArrayBuffer&&ArrayBuffer.isView&&ArrayBuffer.isView(t))&&(l=[t[0],t[1],t[2]],s="rgb",c=4===t.length?t[3]:1);else s="rgb",l=[t>>>16,(65280&t)>>>8,255&t];return{space:s,values:l,alpha:c}};var o={red:0,orange:60,yellow:120,green:180,blue:240,purple:300}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"color-name":121,defined:166,"is-plain-obj":423}],124:[function(t,e,r){"use strict";var n=t("color-parse"),a=t("color-space/hsl"),i=t("clamp");e.exports=function(t){var e,r=n(t);return r.space?((e=Array(3))[0]=i(r.values[0],0,255),e[1]=i(r.values[1],0,255),e[2]=i(r.values[2],0,255),"h"===r.space[0]&&(e=a.rgb(e)),e.push(i(r.alpha,0,1)),e):[]}},{clamp:117,"color-parse":123,"color-space/hsl":125}],125:[function(t,e,r){"use strict";var n=t("./rgb");e.exports={name:"hsl",min:[0,0,0],max:[360,100,100],channel:["hue","saturation","lightness"],alias:["HSL"],rgb:function(t){var e,r,n,a,i,o=t[0]/360,s=t[1]/100,l=t[2]/100;if(0===s)return[i=255*l,i,i];e=2*l-(r=l<.5?l*(1+s):l+s-l*s),a=[0,0,0];for(var c=0;c<3;c++)(n=o+1/3*-(c-1))<0?n++:n>1&&n--,i=6*n<1?e+6*(r-e)*n:2*n<1?r:3*n<2?e+(r-e)*(2/3-n)*6:e,a[c]=255*i;return a}},n.hsl=function(t){var e,r,n=t[0]/255,a=t[1]/255,i=t[2]/255,o=Math.min(n,a,i),s=Math.max(n,a,i),l=s-o;return s===o?e=0:n===s?e=(a-i)/l:a===s?e=2+(i-n)/l:i===s&&(e=4+(n-a)/l),(e=Math.min(60*e,360))<0&&(e+=360),r=(o+s)/2,[e,100*(s===o?0:r<=.5?l/(s+o):l/(2-s-o)),100*r]}},{"./rgb":126}],126:[function(t,e,r){"use strict";e.exports={name:"rgb",min:[0,0,0],max:[255,255,255],channel:["red","green","blue"],alias:["RGB"]}},{}],127:[function(t,e,r){e.exports={jet:[{index:0,rgb:[0,0,131]},{index:.125,rgb:[0,60,170]},{index:.375,rgb:[5,255,255]},{index:.625,rgb:[255,255,0]},{index:.875,rgb:[250,0,0]},{index:1,rgb:[128,0,0]}],hsv:[{index:0,rgb:[255,0,0]},{index:.169,rgb:[253,255,2]},{index:.173,rgb:[247,255,2]},{index:.337,rgb:[0,252,4]},{index:.341,rgb:[0,252,10]},{index:.506,rgb:[1,249,255]},{index:.671,rgb:[2,0,253]},{index:.675,rgb:[8,0,253]},{index:.839,rgb:[255,0,251]},{index:.843,rgb:[255,0,245]},{index:1,rgb:[255,0,6]}],hot:[{index:0,rgb:[0,0,0]},{index:.3,rgb:[230,0,0]},{index:.6,rgb:[255,210,0]},{index:1,rgb:[255,255,255]}],cool:[{index:0,rgb:[0,255,255]},{index:1,rgb:[255,0,255]}],spring:[{index:0,rgb:[255,0,255]},{index:1,rgb:[255,255,0]}],summer:[{index:0,rgb:[0,128,102]},{index:1,rgb:[255,255,102]}],autumn:[{index:0,rgb:[255,0,0]},{index:1,rgb:[255,255,0]}],winter:[{index:0,rgb:[0,0,255]},{index:1,rgb:[0,255,128]}],bone:[{index:0,rgb:[0,0,0]},{index:.376,rgb:[84,84,116]},{index:.753,rgb:[169,200,200]},{index:1,rgb:[255,255,255]}],copper:[{index:0,rgb:[0,0,0]},{index:.804,rgb:[255,160,102]},{index:1,rgb:[255,199,127]}],greys:[{index:0,rgb:[0,0,0]},{index:1,rgb:[255,255,255]}],yignbu:[{index:0,rgb:[8,29,88]},{index:.125,rgb:[37,52,148]},{index:.25,rgb:[34,94,168]},{index:.375,rgb:[29,145,192]},{index:.5,rgb:[65,182,196]},{index:.625,rgb:[127,205,187]},{index:.75,rgb:[199,233,180]},{index:.875,rgb:[237,248,217]},{index:1,rgb:[255,255,217]}],greens:[{index:0,rgb:[0,68,27]},{index:.125,rgb:[0,109,44]},{index:.25,rgb:[35,139,69]},{index:.375,rgb:[65,171,93]},{index:.5,rgb:[116,196,118]},{index:.625,rgb:[161,217,155]},{index:.75,rgb:[199,233,192]},{index:.875,rgb:[229,245,224]},{index:1,rgb:[247,252,245]}],yiorrd:[{index:0,rgb:[128,0,38]},{index:.125,rgb:[189,0,38]},{index:.25,rgb:[227,26,28]},{index:.375,rgb:[252,78,42]},{index:.5,rgb:[253,141,60]},{index:.625,rgb:[254,178,76]},{index:.75,rgb:[254,217,118]},{index:.875,rgb:[255,237,160]},{index:1,rgb:[255,255,204]}],bluered:[{index:0,rgb:[0,0,255]},{index:1,rgb:[255,0,0]}],rdbu:[{index:0,rgb:[5,10,172]},{index:.35,rgb:[106,137,247]},{index:.5,rgb:[190,190,190]},{index:.6,rgb:[220,170,132]},{index:.7,rgb:[230,145,90]},{index:1,rgb:[178,10,28]}],picnic:[{index:0,rgb:[0,0,255]},{index:.1,rgb:[51,153,255]},{index:.2,rgb:[102,204,255]},{index:.3,rgb:[153,204,255]},{index:.4,rgb:[204,204,255]},{index:.5,rgb:[255,255,255]},{index:.6,rgb:[255,204,255]},{index:.7,rgb:[255,153,255]},{index:.8,rgb:[255,102,204]},{index:.9,rgb:[255,102,102]},{index:1,rgb:[255,0,0]}],rainbow:[{index:0,rgb:[150,0,90]},{index:.125,rgb:[0,0,200]},{index:.25,rgb:[0,25,255]},{index:.375,rgb:[0,152,255]},{index:.5,rgb:[44,255,150]},{index:.625,rgb:[151,255,0]},{index:.75,rgb:[255,234,0]},{index:.875,rgb:[255,111,0]},{index:1,rgb:[255,0,0]}],portland:[{index:0,rgb:[12,51,131]},{index:.25,rgb:[10,136,186]},{index:.5,rgb:[242,211,56]},{index:.75,rgb:[242,143,56]},{index:1,rgb:[217,30,30]}],blackbody:[{index:0,rgb:[0,0,0]},{index:.2,rgb:[230,0,0]},{index:.4,rgb:[230,210,0]},{index:.7,rgb:[255,255,255]},{index:1,rgb:[160,200,255]}],earth:[{index:0,rgb:[0,0,130]},{index:.1,rgb:[0,180,180]},{index:.2,rgb:[40,210,40]},{index:.4,rgb:[230,230,50]},{index:.6,rgb:[120,70,20]},{index:1,rgb:[255,255,255]}],electric:[{index:0,rgb:[0,0,0]},{index:.15,rgb:[30,0,100]},{index:.4,rgb:[120,0,100]},{index:.6,rgb:[160,90,0]},{index:.8,rgb:[230,200,0]},{index:1,rgb:[255,250,220]}],alpha:[{index:0,rgb:[255,255,255,0]},{index:1,rgb:[255,255,255,1]}],viridis:[{index:0,rgb:[68,1,84]},{index:.13,rgb:[71,44,122]},{index:.25,rgb:[59,81,139]},{index:.38,rgb:[44,113,142]},{index:.5,rgb:[33,144,141]},{index:.63,rgb:[39,173,129]},{index:.75,rgb:[92,200,99]},{index:.88,rgb:[170,220,50]},{index:1,rgb:[253,231,37]}],inferno:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[31,12,72]},{index:.25,rgb:[85,15,109]},{index:.38,rgb:[136,34,106]},{index:.5,rgb:[186,54,85]},{index:.63,rgb:[227,89,51]},{index:.75,rgb:[249,140,10]},{index:.88,rgb:[249,201,50]},{index:1,rgb:[252,255,164]}],magma:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[28,16,68]},{index:.25,rgb:[79,18,123]},{index:.38,rgb:[129,37,129]},{index:.5,rgb:[181,54,122]},{index:.63,rgb:[229,80,100]},{index:.75,rgb:[251,135,97]},{index:.88,rgb:[254,194,135]},{index:1,rgb:[252,253,191]}],plasma:[{index:0,rgb:[13,8,135]},{index:.13,rgb:[75,3,161]},{index:.25,rgb:[125,3,168]},{index:.38,rgb:[168,34,150]},{index:.5,rgb:[203,70,121]},{index:.63,rgb:[229,107,93]},{index:.75,rgb:[248,148,65]},{index:.88,rgb:[253,195,40]},{index:1,rgb:[240,249,33]}],warm:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[172,0,187]},{index:.25,rgb:[219,0,170]},{index:.38,rgb:[255,0,130]},{index:.5,rgb:[255,63,74]},{index:.63,rgb:[255,123,0]},{index:.75,rgb:[234,176,0]},{index:.88,rgb:[190,228,0]},{index:1,rgb:[147,255,0]}],cool:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[116,0,218]},{index:.25,rgb:[98,74,237]},{index:.38,rgb:[68,146,231]},{index:.5,rgb:[0,204,197]},{index:.63,rgb:[0,247,146]},{index:.75,rgb:[0,255,88]},{index:.88,rgb:[40,255,8]},{index:1,rgb:[147,255,0]}],"rainbow-soft":[{index:0,rgb:[125,0,179]},{index:.1,rgb:[199,0,180]},{index:.2,rgb:[255,0,121]},{index:.3,rgb:[255,108,0]},{index:.4,rgb:[222,194,0]},{index:.5,rgb:[150,255,0]},{index:.6,rgb:[0,255,55]},{index:.7,rgb:[0,246,150]},{index:.8,rgb:[50,167,222]},{index:.9,rgb:[103,51,235]},{index:1,rgb:[124,0,186]}],bathymetry:[{index:0,rgb:[40,26,44]},{index:.13,rgb:[59,49,90]},{index:.25,rgb:[64,76,139]},{index:.38,rgb:[63,110,151]},{index:.5,rgb:[72,142,158]},{index:.63,rgb:[85,174,163]},{index:.75,rgb:[120,206,163]},{index:.88,rgb:[187,230,172]},{index:1,rgb:[253,254,204]}],cdom:[{index:0,rgb:[47,15,62]},{index:.13,rgb:[87,23,86]},{index:.25,rgb:[130,28,99]},{index:.38,rgb:[171,41,96]},{index:.5,rgb:[206,67,86]},{index:.63,rgb:[230,106,84]},{index:.75,rgb:[242,149,103]},{index:.88,rgb:[249,193,135]},{index:1,rgb:[254,237,176]}],chlorophyll:[{index:0,rgb:[18,36,20]},{index:.13,rgb:[25,63,41]},{index:.25,rgb:[24,91,59]},{index:.38,rgb:[13,119,72]},{index:.5,rgb:[18,148,80]},{index:.63,rgb:[80,173,89]},{index:.75,rgb:[132,196,122]},{index:.88,rgb:[175,221,162]},{index:1,rgb:[215,249,208]}],density:[{index:0,rgb:[54,14,36]},{index:.13,rgb:[89,23,80]},{index:.25,rgb:[110,45,132]},{index:.38,rgb:[120,77,178]},{index:.5,rgb:[120,113,213]},{index:.63,rgb:[115,151,228]},{index:.75,rgb:[134,185,227]},{index:.88,rgb:[177,214,227]},{index:1,rgb:[230,241,241]}],"freesurface-blue":[{index:0,rgb:[30,4,110]},{index:.13,rgb:[47,14,176]},{index:.25,rgb:[41,45,236]},{index:.38,rgb:[25,99,212]},{index:.5,rgb:[68,131,200]},{index:.63,rgb:[114,156,197]},{index:.75,rgb:[157,181,203]},{index:.88,rgb:[200,208,216]},{index:1,rgb:[241,237,236]}],"freesurface-red":[{index:0,rgb:[60,9,18]},{index:.13,rgb:[100,17,27]},{index:.25,rgb:[142,20,29]},{index:.38,rgb:[177,43,27]},{index:.5,rgb:[192,87,63]},{index:.63,rgb:[205,125,105]},{index:.75,rgb:[216,162,148]},{index:.88,rgb:[227,199,193]},{index:1,rgb:[241,237,236]}],oxygen:[{index:0,rgb:[64,5,5]},{index:.13,rgb:[106,6,15]},{index:.25,rgb:[144,26,7]},{index:.38,rgb:[168,64,3]},{index:.5,rgb:[188,100,4]},{index:.63,rgb:[206,136,11]},{index:.75,rgb:[220,174,25]},{index:.88,rgb:[231,215,44]},{index:1,rgb:[248,254,105]}],par:[{index:0,rgb:[51,20,24]},{index:.13,rgb:[90,32,35]},{index:.25,rgb:[129,44,34]},{index:.38,rgb:[159,68,25]},{index:.5,rgb:[182,99,19]},{index:.63,rgb:[199,134,22]},{index:.75,rgb:[212,171,35]},{index:.88,rgb:[221,210,54]},{index:1,rgb:[225,253,75]}],phase:[{index:0,rgb:[145,105,18]},{index:.13,rgb:[184,71,38]},{index:.25,rgb:[186,58,115]},{index:.38,rgb:[160,71,185]},{index:.5,rgb:[110,97,218]},{index:.63,rgb:[50,123,164]},{index:.75,rgb:[31,131,110]},{index:.88,rgb:[77,129,34]},{index:1,rgb:[145,105,18]}],salinity:[{index:0,rgb:[42,24,108]},{index:.13,rgb:[33,50,162]},{index:.25,rgb:[15,90,145]},{index:.38,rgb:[40,118,137]},{index:.5,rgb:[59,146,135]},{index:.63,rgb:[79,175,126]},{index:.75,rgb:[120,203,104]},{index:.88,rgb:[193,221,100]},{index:1,rgb:[253,239,154]}],temperature:[{index:0,rgb:[4,35,51]},{index:.13,rgb:[23,51,122]},{index:.25,rgb:[85,59,157]},{index:.38,rgb:[129,79,143]},{index:.5,rgb:[175,95,130]},{index:.63,rgb:[222,112,101]},{index:.75,rgb:[249,146,66]},{index:.88,rgb:[249,196,65]},{index:1,rgb:[232,250,91]}],turbidity:[{index:0,rgb:[34,31,27]},{index:.13,rgb:[65,50,41]},{index:.25,rgb:[98,69,52]},{index:.38,rgb:[131,89,57]},{index:.5,rgb:[161,112,59]},{index:.63,rgb:[185,140,66]},{index:.75,rgb:[202,174,88]},{index:.88,rgb:[216,209,126]},{index:1,rgb:[233,246,171]}],"velocity-blue":[{index:0,rgb:[17,32,64]},{index:.13,rgb:[35,52,116]},{index:.25,rgb:[29,81,156]},{index:.38,rgb:[31,113,162]},{index:.5,rgb:[50,144,169]},{index:.63,rgb:[87,173,176]},{index:.75,rgb:[149,196,189]},{index:.88,rgb:[203,221,211]},{index:1,rgb:[254,251,230]}],"velocity-green":[{index:0,rgb:[23,35,19]},{index:.13,rgb:[24,64,38]},{index:.25,rgb:[11,95,45]},{index:.38,rgb:[39,123,35]},{index:.5,rgb:[95,146,12]},{index:.63,rgb:[152,165,18]},{index:.75,rgb:[201,186,69]},{index:.88,rgb:[233,216,137]},{index:1,rgb:[255,253,205]}],cubehelix:[{index:0,rgb:[0,0,0]},{index:.07,rgb:[22,5,59]},{index:.13,rgb:[60,4,105]},{index:.2,rgb:[109,1,135]},{index:.27,rgb:[161,0,147]},{index:.33,rgb:[210,2,142]},{index:.4,rgb:[251,11,123]},{index:.47,rgb:[255,29,97]},{index:.53,rgb:[255,54,69]},{index:.6,rgb:[255,85,46]},{index:.67,rgb:[255,120,34]},{index:.73,rgb:[255,157,37]},{index:.8,rgb:[241,191,57]},{index:.87,rgb:[224,220,93]},{index:.93,rgb:[218,241,142]},{index:1,rgb:[227,253,198]}]}},{}],128:[function(t,e,r){"use strict";var n=t("./colorScale"),a=t("lerp");function i(t){return[t[0]/255,t[1]/255,t[2]/255,t[3]]}function o(t){for(var e,r="#",n=0;n<3;++n)r+=("00"+(e=(e=t[n]).toString(16))).substr(e.length);return r}function s(t){return"rgba("+t.join(",")+")"}e.exports=function(t){var e,r,l,c,u,h,f,p,d,g;t||(t={});p=(t.nshades||72)-1,f=t.format||"hex",(h=t.colormap)||(h="jet");if("string"==typeof h){if(h=h.toLowerCase(),!n[h])throw Error(h+" not a supported colorscale");u=n[h]}else{if(!Array.isArray(h))throw Error("unsupported colormap option",h);u=h.slice()}if(u.length>p+1)throw new Error(h+" map requires nshades to be at least size "+u.length);d=Array.isArray(t.alpha)?2!==t.alpha.length?[1,1]:t.alpha.slice():"number"==typeof t.alpha?[t.alpha,t.alpha]:[1,1];e=u.map(function(t){return Math.round(t.index*p)}),d[0]=Math.min(Math.max(d[0],0),1),d[1]=Math.min(Math.max(d[1],0),1);var v=u.map(function(t,e){var r=u[e].index,n=u[e].rgb.slice();return 4===n.length&&n[3]>=0&&n[3]<=1?n:(n[3]=d[0]+(d[1]-d[0])*r,n)}),m=[];for(g=0;g0?-1:l(t,e,i)?-1:1:0===s?c>0?1:l(t,e,r)?1:-1:a(c-s)}var f=n(t,e,r);if(f>0)return o>0&&n(t,e,i)>0?1:-1;if(f<0)return o>0||n(t,e,i)>0?1:-1;var p=n(t,e,i);return p>0?1:l(t,e,r)?1:-1};var n=t("robust-orientation"),a=t("signum"),i=t("two-sum"),o=t("robust-product"),s=t("robust-sum");function l(t,e,r){var n=i(t[0],-e[0]),a=i(t[1],-e[1]),l=i(r[0],-e[0]),c=i(r[1],-e[1]),u=s(o(n,l),o(a,c));return u[u.length-1]>=0}},{"robust-orientation":508,"robust-product":509,"robust-sum":513,signum:514,"two-sum":542}],130:[function(t,e,r){e.exports=function(t,e){var r=t.length,i=t.length-e.length;if(i)return i;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:return t[0]+t[1]-e[0]-e[1]||n(t[0],t[1])-n(e[0],e[1]);case 3:var o=t[0]+t[1],s=e[0]+e[1];if(i=o+t[2]-(s+e[2]))return i;var l=n(t[0],t[1]),c=n(e[0],e[1]);return n(l,t[2])-n(c,e[2])||n(l+t[2],o)-n(c+e[2],s);case 4:var u=t[0],h=t[1],f=t[2],p=t[3],d=e[0],g=e[1],v=e[2],m=e[3];return u+h+f+p-(d+g+v+m)||n(u,h,f,p)-n(d,g,v,m,d)||n(u+h,u+f,u+p,h+f,h+p,f+p)-n(d+g,d+v,d+m,g+v,g+m,v+m)||n(u+h+f,u+h+p,u+f+p,h+f+p)-n(d+g+v,d+g+m,d+v+m,g+v+m);default:for(var y=t.slice().sort(a),x=e.slice().sort(a),b=0;bt[r][0]&&(r=n);return er?[[r],[e]]:[[e]]}},{}],134:[function(t,e,r){"use strict";e.exports=function(t){var e=n(t),r=e.length;if(r<=2)return[];for(var a=new Array(r),i=e[r-1],o=0;o=e[l]&&(s+=1);i[o]=s}}return t}(o,r)}};var n=t("incremental-convex-hull"),a=t("affine-hull")},{"affine-hull":65,"incremental-convex-hull":414}],136:[function(t,e,r){e.exports={AFG:"afghan",ALA:"\\b\\wland",ALB:"albania",DZA:"algeria",ASM:"^(?=.*americ).*samoa",AND:"andorra",AGO:"angola",AIA:"anguill?a",ATA:"antarctica",ATG:"antigua",ARG:"argentin",ARM:"armenia",ABW:"^(?!.*bonaire).*\\baruba",AUS:"australia",AUT:"^(?!.*hungary).*austria|\\baustri.*\\bemp",AZE:"azerbaijan",BHS:"bahamas",BHR:"bahrain",BGD:"bangladesh|^(?=.*east).*paki?stan",BRB:"barbados",BLR:"belarus|byelo",BEL:"^(?!.*luxem).*belgium",BLZ:"belize|^(?=.*british).*honduras",BEN:"benin|dahome",BMU:"bermuda",BTN:"bhutan",BOL:"bolivia",BES:"^(?=.*bonaire).*eustatius|^(?=.*carib).*netherlands|\\bbes.?islands",BIH:"herzegovina|bosnia",BWA:"botswana|bechuana",BVT:"bouvet",BRA:"brazil",IOT:"british.?indian.?ocean",BRN:"brunei",BGR:"bulgaria",BFA:"burkina|\\bfaso|upper.?volta",BDI:"burundi",CPV:"verde",KHM:"cambodia|kampuchea|khmer",CMR:"cameroon",CAN:"canada",CYM:"cayman",CAF:"\\bcentral.african.republic",TCD:"\\bchad",CHL:"\\bchile",CHN:"^(?!.*\\bmac)(?!.*\\bhong)(?!.*\\btai)(?!.*\\brep).*china|^(?=.*peo)(?=.*rep).*china",CXR:"christmas",CCK:"\\bcocos|keeling",COL:"colombia",COM:"comoro",COG:"^(?!.*\\bdem)(?!.*\\bd[\\.]?r)(?!.*kinshasa)(?!.*zaire)(?!.*belg)(?!.*l.opoldville)(?!.*free).*\\bcongo",COK:"\\bcook",CRI:"costa.?rica",CIV:"ivoire|ivory",HRV:"croatia",CUB:"\\bcuba",CUW:"^(?!.*bonaire).*\\bcura(c|\xe7)ao",CYP:"cyprus",CSK:"czechoslovakia",CZE:"^(?=.*rep).*czech|czechia|bohemia",COD:"\\bdem.*congo|congo.*\\bdem|congo.*\\bd[\\.]?r|\\bd[\\.]?r.*congo|belgian.?congo|congo.?free.?state|kinshasa|zaire|l.opoldville|drc|droc|rdc",DNK:"denmark",DJI:"djibouti",DMA:"dominica(?!n)",DOM:"dominican.rep",ECU:"ecuador",EGY:"egypt",SLV:"el.?salvador",GNQ:"guine.*eq|eq.*guine|^(?=.*span).*guinea",ERI:"eritrea",EST:"estonia",ETH:"ethiopia|abyssinia",FLK:"falkland|malvinas",FRO:"faroe|faeroe",FJI:"fiji",FIN:"finland",FRA:"^(?!.*\\bdep)(?!.*martinique).*france|french.?republic|\\bgaul",GUF:"^(?=.*french).*guiana",PYF:"french.?polynesia|tahiti",ATF:"french.?southern",GAB:"gabon",GMB:"gambia",GEO:"^(?!.*south).*georgia",DDR:"german.?democratic.?republic|democratic.?republic.*germany|east.germany",DEU:"^(?!.*east).*germany|^(?=.*\\bfed.*\\brep).*german",GHA:"ghana|gold.?coast",GIB:"gibraltar",GRC:"greece|hellenic|hellas",GRL:"greenland",GRD:"grenada",GLP:"guadeloupe",GUM:"\\bguam",GTM:"guatemala",GGY:"guernsey",GIN:"^(?!.*eq)(?!.*span)(?!.*bissau)(?!.*portu)(?!.*new).*guinea",GNB:"bissau|^(?=.*portu).*guinea",GUY:"guyana|british.?guiana",HTI:"haiti",HMD:"heard.*mcdonald",VAT:"holy.?see|vatican|papal.?st",HND:"^(?!.*brit).*honduras",HKG:"hong.?kong",HUN:"^(?!.*austr).*hungary",ISL:"iceland",IND:"india(?!.*ocea)",IDN:"indonesia",IRN:"\\biran|persia",IRQ:"\\biraq|mesopotamia",IRL:"(^ireland)|(^republic.*ireland)",IMN:"^(?=.*isle).*\\bman",ISR:"israel",ITA:"italy",JAM:"jamaica",JPN:"japan",JEY:"jersey",JOR:"jordan",KAZ:"kazak",KEN:"kenya|british.?east.?africa|east.?africa.?prot",KIR:"kiribati",PRK:"^(?=.*democrat|people|north|d.*p.*.r).*\\bkorea|dprk|korea.*(d.*p.*r)",KWT:"kuwait",KGZ:"kyrgyz|kirghiz",LAO:"\\blaos?\\b",LVA:"latvia",LBN:"lebanon",LSO:"lesotho|basuto",LBR:"liberia",LBY:"libya",LIE:"liechtenstein",LTU:"lithuania",LUX:"^(?!.*belg).*luxem",MAC:"maca(o|u)",MDG:"madagascar|malagasy",MWI:"malawi|nyasa",MYS:"malaysia",MDV:"maldive",MLI:"\\bmali\\b",MLT:"\\bmalta",MHL:"marshall",MTQ:"martinique",MRT:"mauritania",MUS:"mauritius",MYT:"\\bmayotte",MEX:"\\bmexic",FSM:"fed.*micronesia|micronesia.*fed",MCO:"monaco",MNG:"mongolia",MNE:"^(?!.*serbia).*montenegro",MSR:"montserrat",MAR:"morocco|\\bmaroc",MOZ:"mozambique",MMR:"myanmar|burma",NAM:"namibia",NRU:"nauru",NPL:"nepal",NLD:"^(?!.*\\bant)(?!.*\\bcarib).*netherlands",ANT:"^(?=.*\\bant).*(nether|dutch)",NCL:"new.?caledonia",NZL:"new.?zealand",NIC:"nicaragua",NER:"\\bniger(?!ia)",NGA:"nigeria",NIU:"niue",NFK:"norfolk",MNP:"mariana",NOR:"norway",OMN:"\\boman|trucial",PAK:"^(?!.*east).*paki?stan",PLW:"palau",PSE:"palestin|\\bgaza|west.?bank",PAN:"panama",PNG:"papua|new.?guinea",PRY:"paraguay",PER:"peru",PHL:"philippines",PCN:"pitcairn",POL:"poland",PRT:"portugal",PRI:"puerto.?rico",QAT:"qatar",KOR:"^(?!.*d.*p.*r)(?!.*democrat)(?!.*people)(?!.*north).*\\bkorea(?!.*d.*p.*r)",MDA:"moldov|b(a|e)ssarabia",REU:"r(e|\xe9)union",ROU:"r(o|u|ou)mania",RUS:"\\brussia|soviet.?union|u\\.?s\\.?s\\.?r|socialist.?republics",RWA:"rwanda",BLM:"barth(e|\xe9)lemy",SHN:"helena",KNA:"kitts|\\bnevis",LCA:"\\blucia",MAF:"^(?=.*collectivity).*martin|^(?=.*france).*martin(?!ique)|^(?=.*french).*martin(?!ique)",SPM:"miquelon",VCT:"vincent",WSM:"^(?!.*amer).*samoa",SMR:"san.?marino",STP:"\\bs(a|\xe3)o.?tom(e|\xe9)",SAU:"\\bsa\\w*.?arabia",SEN:"senegal",SRB:"^(?!.*monte).*serbia",SYC:"seychell",SLE:"sierra",SGP:"singapore",SXM:"^(?!.*martin)(?!.*saba).*maarten",SVK:"^(?!.*cze).*slovak",SVN:"slovenia",SLB:"solomon",SOM:"somali",ZAF:"south.africa|s\\\\..?africa",SGS:"south.?georgia|sandwich",SSD:"\\bs\\w*.?sudan",ESP:"spain",LKA:"sri.?lanka|ceylon",SDN:"^(?!.*\\bs(?!u)).*sudan",SUR:"surinam|dutch.?guiana",SJM:"svalbard",SWZ:"swaziland",SWE:"sweden",CHE:"switz|swiss",SYR:"syria",TWN:"taiwan|taipei|formosa|^(?!.*peo)(?=.*rep).*china",TJK:"tajik",THA:"thailand|\\bsiam",MKD:"macedonia|fyrom",TLS:"^(?=.*leste).*timor|^(?=.*east).*timor",TGO:"togo",TKL:"tokelau",TON:"tonga",TTO:"trinidad|tobago",TUN:"tunisia",TUR:"turkey",TKM:"turkmen",TCA:"turks",TUV:"tuvalu",UGA:"uganda",UKR:"ukrain",ARE:"emirates|^u\\.?a\\.?e\\.?$|united.?arab.?em",GBR:"united.?kingdom|britain|^u\\.?k\\.?$",TZA:"tanzania",USA:"united.?states\\b(?!.*islands)|\\bu\\.?s\\.?a\\.?\\b|^\\s*u\\.?s\\.?\\b(?!.*islands)",UMI:"minor.?outlying.?is",URY:"uruguay",UZB:"uzbek",VUT:"vanuatu|new.?hebrides",VEN:"venezuela",VNM:"^(?!.*republic).*viet.?nam|^(?=.*socialist).*viet.?nam",VGB:"^(?=.*\\bu\\.?\\s?k).*virgin|^(?=.*brit).*virgin|^(?=.*kingdom).*virgin",VIR:"^(?=.*\\bu\\.?\\s?s).*virgin|^(?=.*states).*virgin",WLF:"futuna|wallis",ESH:"western.sahara",YEM:"^(?!.*arab)(?!.*north)(?!.*sana)(?!.*peo)(?!.*dem)(?!.*south)(?!.*aden)(?!.*\\bp\\.?d\\.?r).*yemen",YMD:"^(?=.*peo).*yemen|^(?!.*rep)(?=.*dem).*yemen|^(?=.*south).*yemen|^(?=.*aden).*yemen|^(?=.*\\bp\\.?d\\.?r).*yemen",YUG:"yugoslavia",ZMB:"zambia|northern.?rhodesia",EAZ:"zanzibar",ZWE:"zimbabwe|^(?!.*northern).*rhodesia"}},{}],137:[function(t,e,r){e.exports=["xx-small","x-small","small","medium","large","x-large","xx-large","larger","smaller"]},{}],138:[function(t,e,r){e.exports=["normal","condensed","semi-condensed","extra-condensed","ultra-condensed","expanded","semi-expanded","extra-expanded","ultra-expanded"]},{}],139:[function(t,e,r){e.exports=["normal","italic","oblique"]},{}],140:[function(t,e,r){e.exports=["normal","bold","bolder","lighter","100","200","300","400","500","600","700","800","900"]},{}],141:[function(t,e,r){"use strict";e.exports={parse:t("./parse"),stringify:t("./stringify")}},{"./parse":143,"./stringify":144}],142:[function(t,e,r){"use strict";var n=t("css-font-size-keywords");e.exports={isSize:function(t){return/^[\d\.]/.test(t)||-1!==t.indexOf("/")||-1!==n.indexOf(t)}}},{"css-font-size-keywords":137}],143:[function(t,e,r){"use strict";var n=t("unquote"),a=t("css-global-keywords"),i=t("css-system-font-keywords"),o=t("css-font-weight-keywords"),s=t("css-font-style-keywords"),l=t("css-font-stretch-keywords"),c=t("string-split-by"),u=t("./lib/util").isSize;e.exports=f;var h=f.cache={};function f(t){if("string"!=typeof t)throw new Error("Font argument must be a string.");if(h[t])return h[t];if(""===t)throw new Error("Cannot parse an empty string.");if(-1!==i.indexOf(t))return h[t]={system:t};for(var e,r={style:"normal",variant:"normal",weight:"normal",stretch:"normal",lineHeight:"normal",size:"1rem",family:["serif"]},f=c(t,/\s+/);e=f.shift();){if(-1!==a.indexOf(e))return["style","variant","weight","stretch"].forEach(function(t){r[t]=e}),h[t]=r;if(-1===s.indexOf(e))if("normal"!==e&&"small-caps"!==e)if(-1===l.indexOf(e)){if(-1===o.indexOf(e)){if(u(e)){var d=c(e,"/");if(r.size=d[0],null!=d[1]?r.lineHeight=p(d[1]):"/"===f[0]&&(f.shift(),r.lineHeight=p(f.shift())),!f.length)throw new Error("Missing required font-family.");return r.family=c(f.join(" "),/\s*,\s*/).map(n),h[t]=r}throw new Error("Unknown or unsupported font token: "+e)}r.weight=e}else r.stretch=e;else r.variant=e;else r.style=e}throw new Error("Missing required font-size.")}function p(t){var e=parseFloat(t);return e.toString()===t?e:t}},{"./lib/util":142,"css-font-stretch-keywords":138,"css-font-style-keywords":139,"css-font-weight-keywords":140,"css-global-keywords":145,"css-system-font-keywords":146,"string-split-by":527,unquote:546}],144:[function(t,e,r){"use strict";var n=t("pick-by-alias"),a=t("./lib/util").isSize,i=g(t("css-global-keywords")),o=g(t("css-system-font-keywords")),s=g(t("css-font-weight-keywords")),l=g(t("css-font-style-keywords")),c=g(t("css-font-stretch-keywords")),u={normal:1,"small-caps":1},h={serif:1,"sans-serif":1,monospace:1,cursive:1,fantasy:1,"system-ui":1},f="1rem",p="serif";function d(t,e){if(t&&!e[t]&&!i[t])throw Error("Unknown keyword `"+t+"`");return t}function g(t){for(var e={},r=0;r=0;--p)i[p]=c*t[p]+u*e[p]+h*r[p]+f*n[p];return i}return c*t+u*e+h*r+f*n},e.exports.derivative=function(t,e,r,n,a,i){var o=6*a*a-6*a,s=3*a*a-4*a+1,l=-6*a*a+6*a,c=3*a*a-2*a;if(t.length){i||(i=new Array(t.length));for(var u=t.length-1;u>=0;--u)i[u]=o*t[u]+s*e[u]+l*r[u]+c*n[u];return i}return o*t+s*e+l*r[u]+c*n}},{}],148:[function(t,e,r){"use strict";var n=t("./lib/thunk.js");function a(){this.argTypes=[],this.shimArgs=[],this.arrayArgs=[],this.arrayBlockIndices=[],this.scalarArgs=[],this.offsetArgs=[],this.offsetArgIndex=[],this.indexArgs=[],this.shapeArgs=[],this.funcName="",this.pre=null,this.body=null,this.post=null,this.debug=!1}e.exports=function(t){var e=new a;e.pre=t.pre,e.body=t.body,e.post=t.post;var r=t.args.slice(0);e.argTypes=r;for(var i=0;i0)throw new Error("cwise: pre() block may not reference array args");if(i0)throw new Error("cwise: post() block may not reference array args")}else if("scalar"===o)e.scalarArgs.push(i),e.shimArgs.push("scalar"+i);else if("index"===o){if(e.indexArgs.push(i),i0)throw new Error("cwise: pre() block may not reference array index");if(i0)throw new Error("cwise: post() block may not reference array index")}else if("shape"===o){if(e.shapeArgs.push(i),ir.length)throw new Error("cwise: Too many arguments in pre() block");if(e.body.args.length>r.length)throw new Error("cwise: Too many arguments in body() block");if(e.post.args.length>r.length)throw new Error("cwise: Too many arguments in post() block");return e.debug=!!t.printCode||!!t.debug,e.funcName=t.funcName||"cwise",e.blockSize=t.blockSize||64,n(e)}},{"./lib/thunk.js":150}],149:[function(t,e,r){"use strict";var n=t("uniq");function a(t,e,r){var n,a,i=t.length,o=e.arrayArgs.length,s=e.indexArgs.length>0,l=[],c=[],u=0,h=0;for(n=0;n0&&l.push("var "+c.join(",")),n=i-1;n>=0;--n)u=t[n],l.push(["for(i",n,"=0;i",n,"0&&l.push(["index[",h,"]-=s",h].join("")),l.push(["++index[",u,"]"].join(""))),l.push("}")}return l.join("\n")}function i(t,e,r){for(var n=t.body,a=[],i=[],o=0;o0&&(r=r&&e[n]===e[n-1])}return r?e[0]:e.join("")}e.exports=function(t,e){for(var r=e[1].length-Math.abs(t.arrayBlockIndices[0])|0,s=new Array(t.arrayArgs.length),l=new Array(t.arrayArgs.length),c=0;c0&&x.push("shape=SS.slice(0)"),t.indexArgs.length>0){var b=new Array(r);for(c=0;c0&&y.push("var "+x.join(",")),c=0;c3&&y.push(i(t.pre,t,l));var T=i(t.body,t,l),M=function(t){for(var e=0,r=t[0].length;e0,c=[],u=0;u0;){"].join("")),c.push(["if(j",u,"<",s,"){"].join("")),c.push(["s",e[u],"=j",u].join("")),c.push(["j",u,"=0"].join("")),c.push(["}else{s",e[u],"=",s].join("")),c.push(["j",u,"-=",s,"}"].join("")),l&&c.push(["index[",e[u],"]=j",u].join(""));for(u=0;u3&&y.push(i(t.post,t,l)),t.debug&&console.log("-----Generated cwise routine for ",e,":\n"+y.join("\n")+"\n----------");var A=[t.funcName||"unnamed","_cwise_loop_",s[0].join("s"),"m",M,o(l)].join("");return new Function(["function ",A,"(",m.join(","),"){",y.join("\n"),"} return ",A].join(""))()}},{uniq:545}],150:[function(t,e,r){"use strict";var n=t("./compile.js");e.exports=function(t){var e=["'use strict'","var CACHED={}"],r=[],a=t.funcName+"_cwise_thunk";e.push(["return function ",a,"(",t.shimArgs.join(","),"){"].join(""));for(var i=[],o=[],s=[["array",t.arrayArgs[0],".shape.slice(",Math.max(0,t.arrayBlockIndices[0]),t.arrayBlockIndices[0]<0?","+t.arrayBlockIndices[0]+")":")"].join("")],l=[],c=[],u=0;u0&&(l.push("array"+t.arrayArgs[0]+".shape.length===array"+h+".shape.length+"+(Math.abs(t.arrayBlockIndices[0])-Math.abs(t.arrayBlockIndices[u]))),c.push("array"+t.arrayArgs[0]+".shape[shapeIndex+"+Math.max(0,t.arrayBlockIndices[0])+"]===array"+h+".shape[shapeIndex+"+Math.max(0,t.arrayBlockIndices[u])+"]"))}for(t.arrayArgs.length>1&&(e.push("if (!("+l.join(" && ")+")) throw new Error('cwise: Arrays do not all have the same dimensionality!')"),e.push("for(var shapeIndex=array"+t.arrayArgs[0]+".shape.length-"+Math.abs(t.arrayBlockIndices[0])+"; shapeIndex--\x3e0;) {"),e.push("if (!("+c.join(" && ")+")) throw new Error('cwise: Arrays do not all have the same shape!')"),e.push("}")),u=0;ue?1:t>=e?0:NaN}function r(t){var r;return 1===t.length&&(r=t,t=function(t,n){return e(r(t),n)}),{left:function(e,r,n,a){for(null==n&&(n=0),null==a&&(a=e.length);n>>1;t(e[i],r)<0?n=i+1:a=i}return n},right:function(e,r,n,a){for(null==n&&(n=0),null==a&&(a=e.length);n>>1;t(e[i],r)>0?a=i:n=i+1}return n}}}var n=r(e),a=n.right,i=n.left;function o(t,e){return[t,e]}function s(t){return null===t?NaN:+t}function l(t,e){var r,n,a=t.length,i=0,o=-1,l=0,c=0;if(null==e)for(;++o1)return c/(i-1)}function c(t,e){var r=l(t,e);return r?Math.sqrt(r):r}function u(t,e){var r,n,a,i=t.length,o=-1;if(null==e){for(;++o=r)for(n=a=r;++or&&(n=r),a=r)for(n=a=r;++or&&(n=r),a=0?(i>=m?10:i>=y?5:i>=x?2:1)*Math.pow(10,a):-Math.pow(10,-a)/(i>=m?10:i>=y?5:i>=x?2:1)}function _(t,e,r){var n=Math.abs(e-t)/Math.max(0,r),a=Math.pow(10,Math.floor(Math.log(n)/Math.LN10)),i=n/a;return i>=m?a*=10:i>=y?a*=5:i>=x&&(a*=2),e=1)return+r(t[n-1],n-1,t);var n,a=(n-1)*e,i=Math.floor(a),o=+r(t[i],i,t);return o+(+r(t[i+1],i+1,t)-o)*(a-i)}}function T(t,e){var r,n,a=t.length,i=-1;if(null==e){for(;++i=r)for(n=r;++ir&&(n=r)}else for(;++i=r)for(n=r;++ir&&(n=r);return n}function M(t){if(!(a=t.length))return[];for(var e=-1,r=T(t,A),n=new Array(r);++et?1:e>=t?0:NaN},t.deviation=c,t.extent=u,t.histogram=function(){var t=g,e=u,r=w;function n(n){var i,o,s=n.length,l=new Array(s);for(i=0;ih;)f.pop(),--p;var d,g=new Array(p+1);for(i=0;i<=p;++i)(d=g[i]=[]).x0=i>0?f[i-1]:u,d.x1=i=r)for(n=r;++in&&(n=r)}else for(;++i=r)for(n=r;++in&&(n=r);return n},t.mean=function(t,e){var r,n=t.length,a=n,i=-1,o=0;if(null==e)for(;++i=0;)for(e=(n=t[a]).length;--e>=0;)r[--o]=n[e];return r},t.min=T,t.pairs=function(t,e){null==e&&(e=o);for(var r=0,n=t.length-1,a=t[0],i=new Array(n<0?0:n);r0)return[t];if((n=e0)for(t=Math.ceil(t/o),e=Math.floor(e/o),i=new Array(a=Math.ceil(e-t+1));++s=l.length)return null!=t&&n.sort(t),null!=e?e(n):n;for(var s,c,h,f=-1,p=n.length,d=l[a++],g=r(),v=i();++fl.length)return r;var a,i=c[n-1];return null!=e&&n>=l.length?a=r.entries():(a=[],r.each(function(e,r){a.push({key:r,values:t(e,n)})})),null!=i?a.sort(function(t,e){return i(t.key,e.key)}):a}(u(t,0,i,o),0)},key:function(t){return l.push(t),s},sortKeys:function(t){return c[l.length-1]=t,s},sortValues:function(e){return t=e,s},rollup:function(t){return e=t,s}}},t.set=c,t.map=r,t.keys=function(t){var e=[];for(var r in t)e.push(r);return e},t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],156:[function(t,e,r){var n;n=this,function(t){"use strict";function e(t,e,r){t.prototype=e.prototype=r,r.constructor=t}function r(t,e){var r=Object.create(t.prototype);for(var n in e)r[n]=e[n];return r}function n(){}var a="\\s*([+-]?\\d+)\\s*",i="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",o="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",s=/^#([0-9a-f]{3,8})$/,l=new RegExp("^rgb\\("+[a,a,a]+"\\)$"),c=new RegExp("^rgb\\("+[o,o,o]+"\\)$"),u=new RegExp("^rgba\\("+[a,a,a,i]+"\\)$"),h=new RegExp("^rgba\\("+[o,o,o,i]+"\\)$"),f=new RegExp("^hsl\\("+[i,o,o]+"\\)$"),p=new RegExp("^hsla\\("+[i,o,o,i]+"\\)$"),d={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function g(){return this.rgb().formatHex()}function v(){return this.rgb().formatRgb()}function m(t){var e,r;return t=(t+"").trim().toLowerCase(),(e=s.exec(t))?(r=e[1].length,e=parseInt(e[1],16),6===r?y(e):3===r?new w(e>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===r?new w(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===r?new w(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=l.exec(t))?new w(e[1],e[2],e[3],1):(e=c.exec(t))?new w(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=u.exec(t))?x(e[1],e[2],e[3],e[4]):(e=h.exec(t))?x(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=f.exec(t))?A(e[1],e[2]/100,e[3]/100,1):(e=p.exec(t))?A(e[1],e[2]/100,e[3]/100,e[4]):d.hasOwnProperty(t)?y(d[t]):"transparent"===t?new w(NaN,NaN,NaN,0):null}function y(t){return new w(t>>16&255,t>>8&255,255&t,1)}function x(t,e,r,n){return n<=0&&(t=e=r=NaN),new w(t,e,r,n)}function b(t){return t instanceof n||(t=m(t)),t?new w((t=t.rgb()).r,t.g,t.b,t.opacity):new w}function _(t,e,r,n){return 1===arguments.length?b(t):new w(t,e,r,null==n?1:n)}function w(t,e,r,n){this.r=+t,this.g=+e,this.b=+r,this.opacity=+n}function k(){return"#"+M(this.r)+M(this.g)+M(this.b)}function T(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}function M(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function A(t,e,r,n){return n<=0?t=e=r=NaN:r<=0||r>=1?t=e=NaN:e<=0&&(t=NaN),new L(t,e,r,n)}function S(t){if(t instanceof L)return new L(t.h,t.s,t.l,t.opacity);if(t instanceof n||(t=m(t)),!t)return new L;if(t instanceof L)return t;var e=(t=t.rgb()).r/255,r=t.g/255,a=t.b/255,i=Math.min(e,r,a),o=Math.max(e,r,a),s=NaN,l=o-i,c=(o+i)/2;return l?(s=e===o?(r-a)/l+6*(r0&&c<1?0:s,new L(s,l,c,t.opacity)}function E(t,e,r,n){return 1===arguments.length?S(t):new L(t,e,r,null==n?1:n)}function L(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}function C(t,e,r){return 255*(t<60?e+(r-e)*t/60:t<180?r:t<240?e+(r-e)*(240-t)/60:e)}e(n,m,{copy:function(t){return Object.assign(new this.constructor,this,t)},displayable:function(){return this.rgb().displayable()},hex:g,formatHex:g,formatHsl:function(){return S(this).formatHsl()},formatRgb:v,toString:v}),e(w,_,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:k,formatHex:k,formatRgb:T,toString:T})),e(L,E,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new L(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new L(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*e,a=2*r-n;return new w(C(t>=240?t-240:t+120,a,n),C(t,a,n),C(t<120?t+240:t-120,a,n),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===t?")":", "+t+")")}}));var P=Math.PI/180,O=180/Math.PI,z=.96422,I=1,D=.82521,R=4/29,F=6/29,B=3*F*F,N=F*F*F;function j(t){if(t instanceof U)return new U(t.l,t.a,t.b,t.opacity);if(t instanceof Z)return J(t);t instanceof w||(t=b(t));var e,r,n=Y(t.r),a=Y(t.g),i=Y(t.b),o=q((.2225045*n+.7168786*a+.0606169*i)/I);return n===a&&a===i?e=r=o:(e=q((.4360747*n+.3850649*a+.1430804*i)/z),r=q((.0139322*n+.0971045*a+.7141733*i)/D)),new U(116*o-16,500*(e-o),200*(o-r),t.opacity)}function V(t,e,r,n){return 1===arguments.length?j(t):new U(t,e,r,null==n?1:n)}function U(t,e,r,n){this.l=+t,this.a=+e,this.b=+r,this.opacity=+n}function q(t){return t>N?Math.pow(t,1/3):t/B+R}function H(t){return t>F?t*t*t:B*(t-R)}function G(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Y(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function W(t){if(t instanceof Z)return new Z(t.h,t.c,t.l,t.opacity);if(t instanceof U||(t=j(t)),0===t.a&&0===t.b)return new Z(NaN,0=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:e}})),l=-1,c=s.length;if(!(arguments.length<2)){if(null!=e&&"function"!=typeof e)throw new Error("invalid callback: "+e);for(;++l0)for(var r,n,a=new Array(r),i=0;if+c||np+c||iu.index){var h=f-s.x-s.vx,v=p-s.y-s.vy,m=h*h+v*v;mt.r&&(t.r=t[e].r)}function f(){if(r){var e,a,i=r.length;for(n=new Array(i),e=0;e=c)){(t.data!==r||t.next)&&(0===h&&(d+=(h=o())*h),0===f&&(d+=(f=o())*f),d1?(null==r?u.remove(t):u.set(t,y(r)),e):u.get(t)},find:function(e,r,n){var a,i,o,s,l,c=0,u=t.length;for(null==n?n=1/0:n*=n,c=0;c1?(f.on(t,r),e):f.on(t)}}},t.forceX=function(t){var e,r,n,a=i(.1);function o(t){for(var a,i=0,o=e.length;i=0;)e+=r[n].value;else e=1;t.value=e}function i(t,e){var r,n,a,i,s,u=new c(t),h=+t.value&&(u.value=t.value),f=[u];for(null==e&&(e=o);r=f.pop();)if(h&&(r.value=+r.data.value),(a=e(r.data))&&(s=a.length))for(r.children=new Array(s),i=s-1;i>=0;--i)f.push(n=r.children[i]=new c(a[i])),n.parent=r,n.depth=r.depth+1;return u.eachBefore(l)}function o(t){return t.children}function s(t){t.data=t.data.data}function l(t){var e=0;do{t.height=e}while((t=t.parent)&&t.height<++e)}function c(t){this.data=t,this.depth=this.height=0,this.parent=null}c.prototype=i.prototype={constructor:c,count:function(){return this.eachAfter(a)},each:function(t){var e,r,n,a,i=this,o=[i];do{for(e=o.reverse(),o=[];i=e.pop();)if(t(i),r=i.children)for(n=0,a=r.length;n=0;--r)a.push(e[r]);return this},sum:function(t){return this.eachAfter(function(e){for(var r=+t(e.data)||0,n=e.children,a=n&&n.length;--a>=0;)r+=n[a].value;e.value=r})},sort:function(t){return this.eachBefore(function(e){e.children&&e.children.sort(t)})},path:function(t){for(var e=this,r=function(t,e){if(t===e)return t;var r=t.ancestors(),n=e.ancestors(),a=null;for(t=r.pop(),e=n.pop();t===e;)a=t,t=r.pop(),e=n.pop();return a}(e,t),n=[e];e!==r;)e=e.parent,n.push(e);for(var a=n.length;t!==r;)n.splice(a,0,t),t=t.parent;return n},ancestors:function(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e},descendants:function(){var t=[];return this.each(function(e){t.push(e)}),t},leaves:function(){var t=[];return this.eachBefore(function(e){e.children||t.push(e)}),t},links:function(){var t=this,e=[];return t.each(function(r){r!==t&&e.push({source:r.parent,target:r})}),e},copy:function(){return i(this).eachBefore(s)}};var u=Array.prototype.slice;function h(t){for(var e,r,n=0,a=(t=function(t){for(var e,r,n=t.length;n;)r=Math.random()*n--|0,e=t[n],t[n]=t[r],t[r]=e;return t}(u.call(t))).length,i=[];n0&&r*r>n*n+a*a}function g(t,e){for(var r=0;r(o*=o)?(n=(c+o-a)/(2*c),i=Math.sqrt(Math.max(0,o/c-n*n)),r.x=t.x-n*s-i*l,r.y=t.y-n*l+i*s):(n=(c+a-o)/(2*c),i=Math.sqrt(Math.max(0,a/c-n*n)),r.x=e.x+n*s-i*l,r.y=e.y+n*l+i*s)):(r.x=e.x+r.r,r.y=e.y)}function b(t,e){var r=t.r+e.r-1e-6,n=e.x-t.x,a=e.y-t.y;return r>0&&r*r>n*n+a*a}function _(t){var e=t._,r=t.next._,n=e.r+r.r,a=(e.x*r.r+r.x*e.r)/n,i=(e.y*r.r+r.y*e.r)/n;return a*a+i*i}function w(t){this._=t,this.next=null,this.previous=null}function k(t){if(!(a=t.length))return 0;var e,r,n,a,i,o,s,l,c,u,f;if((e=t[0]).x=0,e.y=0,!(a>1))return e.r;if(r=t[1],e.x=-r.r,r.x=e.r,r.y=0,!(a>2))return e.r+r.r;x(r,e,n=t[2]),e=new w(e),r=new w(r),n=new w(n),e.next=n.previous=r,r.next=e.previous=n,n.next=r.previous=e;t:for(s=3;sf&&(f=s),v=u*u*g,(p=Math.max(f/v,v/h))>d){u-=s;break}d=p}m.push(o={value:u,dice:l1?e:1)},r}(G),X=function t(e){function r(t,r,n,a,i){if((o=t._squarify)&&o.ratio===e)for(var o,s,l,c,u,h=-1,f=o.length,p=t.value;++h1?e:1)},r}(G);t.cluster=function(){var t=e,a=1,i=1,o=!1;function s(e){var s,l=0;e.eachAfter(function(e){var a=e.children;a?(e.x=function(t){return t.reduce(r,0)/t.length}(a),e.y=function(t){return 1+t.reduce(n,0)}(a)):(e.x=s?l+=t(e,s):0,e.y=0,s=e)});var c=function(t){for(var e;e=t.children;)t=e[0];return t}(e),u=function(t){for(var e;e=t.children;)t=e[e.length-1];return t}(e),h=c.x-t(c,u)/2,f=u.x+t(u,c)/2;return e.eachAfter(o?function(t){t.x=(t.x-e.x)*a,t.y=(e.y-t.y)*i}:function(t){t.x=(t.x-h)/(f-h)*a,t.y=(1-(e.y?t.y/e.y:1))*i})}return s.separation=function(e){return arguments.length?(t=e,s):t},s.size=function(t){return arguments.length?(o=!1,a=+t[0],i=+t[1],s):o?null:[a,i]},s.nodeSize=function(t){return arguments.length?(o=!0,a=+t[0],i=+t[1],s):o?[a,i]:null},s},t.hierarchy=i,t.pack=function(){var t=null,e=1,r=1,n=M;function a(a){return a.x=e/2,a.y=r/2,t?a.eachBefore(E(t)).eachAfter(L(n,.5)).eachBefore(C(1)):a.eachBefore(E(S)).eachAfter(L(M,1)).eachAfter(L(n,a.r/Math.min(e,r))).eachBefore(C(Math.min(e,r)/(2*a.r))),a}return a.radius=function(e){return arguments.length?(t=null==(r=e)?null:T(r),a):t;var r},a.size=function(t){return arguments.length?(e=+t[0],r=+t[1],a):[e,r]},a.padding=function(t){return arguments.length?(n="function"==typeof t?t:A(+t),a):n},a},t.packEnclose=h,t.packSiblings=function(t){return k(t),t},t.partition=function(){var t=1,e=1,r=0,n=!1;function a(a){var i=a.height+1;return a.x0=a.y0=r,a.x1=t,a.y1=e/i,a.eachBefore(function(t,e){return function(n){n.children&&O(n,n.x0,t*(n.depth+1)/e,n.x1,t*(n.depth+2)/e);var a=n.x0,i=n.y0,o=n.x1-r,s=n.y1-r;o0)throw new Error("cycle");return i}return r.id=function(e){return arguments.length?(t=T(e),r):t},r.parentId=function(t){return arguments.length?(e=T(t),r):e},r},t.tree=function(){var t=B,e=1,r=1,n=null;function a(a){var l=function(t){for(var e,r,n,a,i,o=new q(t,0),s=[o];e=s.pop();)if(n=e._.children)for(e.children=new Array(i=n.length),a=i-1;a>=0;--a)s.push(r=e.children[a]=new q(n[a],a)),r.parent=e;return(o.parent=new q(null,0)).children=[o],o}(a);if(l.eachAfter(i),l.parent.m=-l.z,l.eachBefore(o),n)a.eachBefore(s);else{var c=a,u=a,h=a;a.eachBefore(function(t){t.xu.x&&(u=t),t.depth>h.depth&&(h=t)});var f=c===u?1:t(c,u)/2,p=f-c.x,d=e/(u.x+f+p),g=r/(h.depth||1);a.eachBefore(function(t){t.x=(t.x+p)*d,t.y=t.depth*g})}return a}function i(e){var r=e.children,n=e.parent.children,a=e.i?n[e.i-1]:null;if(r){!function(t){for(var e,r=0,n=0,a=t.children,i=a.length;--i>=0;)(e=a[i]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(e);var i=(r[0].z+r[r.length-1].z)/2;a?(e.z=a.z+t(e._,a._),e.m=e.z-i):e.z=i}else a&&(e.z=a.z+t(e._,a._));e.parent.A=function(e,r,n){if(r){for(var a,i=e,o=e,s=r,l=i.parent.children[0],c=i.m,u=o.m,h=s.m,f=l.m;s=j(s),i=N(i),s&&i;)l=N(l),(o=j(o)).a=e,(a=s.z+h-i.z-c+t(s._,i._))>0&&(V(U(s,e,n),e,a),c+=a,u+=a),h+=s.m,c+=i.m,f+=l.m,u+=o.m;s&&!j(o)&&(o.t=s,o.m+=h-u),i&&!N(l)&&(l.t=i,l.m+=c-f,n=e)}return n}(e,a,e.parent.A||n[0])}function o(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function s(t){t.x*=e,t.y=t.depth*r}return a.separation=function(e){return arguments.length?(t=e,a):t},a.size=function(t){return arguments.length?(n=!1,e=+t[0],r=+t[1],a):n?null:[e,r]},a.nodeSize=function(t){return arguments.length?(n=!0,e=+t[0],r=+t[1],a):n?[e,r]:null},a},t.treemap=function(){var t=W,e=!1,r=1,n=1,a=[0],i=M,o=M,s=M,l=M,c=M;function u(t){return t.x0=t.y0=0,t.x1=r,t.y1=n,t.eachBefore(h),a=[0],e&&t.eachBefore(P),t}function h(e){var r=a[e.depth],n=e.x0+r,u=e.y0+r,h=e.x1-r,f=e.y1-r;h=r-1){var u=s[e];return u.x0=a,u.y0=i,u.x1=o,void(u.y1=l)}for(var h=c[e],f=n/2+h,p=e+1,d=r-1;p>>1;c[g]l-i){var y=(a*m+o*v)/n;t(e,p,v,a,i,y,l),t(p,r,m,y,i,o,l)}else{var x=(i*m+l*v)/n;t(e,p,v,a,i,o,x),t(p,r,m,a,x,o,l)}}(0,l,t.value,e,r,n,a)},t.treemapDice=O,t.treemapResquarify=X,t.treemapSlice=H,t.treemapSliceDice=function(t,e,r,n,a){(1&t.depth?H:O)(t,e,r,n,a)},t.treemapSquarify=W,Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:(n=n||self).d3=n.d3||{})},{}],160:[function(t,e,r){var n,a;n=this,a=function(t,e){"use strict";function r(t,e,r,n,a){var i=t*t,o=i*t;return((1-3*t+3*i-o)*e+(4-6*i+3*o)*r+(1+3*t+3*i-3*o)*n+o*a)/6}function n(t){var e=t.length-1;return function(n){var a=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),i=t[a],o=t[a+1],s=a>0?t[a-1]:2*i-o,l=a180||r<-180?r-360*Math.round(r/360):r):i(isNaN(t)?e:t)}function l(t){return 1==(t=+t)?c:function(e,r){return r-e?function(t,e,r){return t=Math.pow(t,r),e=Math.pow(e,r)-t,r=1/r,function(n){return Math.pow(t+n*e,r)}}(e,r,t):i(isNaN(e)?r:e)}}function c(t,e){var r=e-t;return r?o(t,r):i(isNaN(t)?e:t)}var u=function t(r){var n=l(r);function a(t,r){var a=n((t=e.rgb(t)).r,(r=e.rgb(r)).r),i=n(t.g,r.g),o=n(t.b,r.b),s=c(t.opacity,r.opacity);return function(e){return t.r=a(e),t.g=i(e),t.b=o(e),t.opacity=s(e),t+""}}return a.gamma=t,a}(1);function h(t){return function(r){var n,a,i=r.length,o=new Array(i),s=new Array(i),l=new Array(i);for(n=0;ni&&(a=e.slice(i,a),s[o]?s[o]+=a:s[++o]=a),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:y(r,n)})),i=_.lastIndex;return i180?e+=360:e-t>180&&(t+=360),i.push({i:r.push(a(r)+"rotate(",null,n)-2,x:y(t,e)})):e&&r.push(a(r)+"rotate("+e+n)}(i.rotate,o.rotate,s,l),function(t,e,r,i){t!==e?i.push({i:r.push(a(r)+"skewX(",null,n)-2,x:y(t,e)}):e&&r.push(a(r)+"skewX("+e+n)}(i.skewX,o.skewX,s,l),function(t,e,r,n,i,o){if(t!==r||e!==n){var s=i.push(a(i)+"scale(",null,",",null,")");o.push({i:s-4,x:y(t,r)},{i:s-2,x:y(e,n)})}else 1===r&&1===n||i.push(a(i)+"scale("+r+","+n+")")}(i.scaleX,i.scaleY,o.scaleX,o.scaleY,s,l),i=o=null,function(t){for(var e,r=-1,n=l.length;++r1e-6)if(Math.abs(h*l-c*u)>1e-6&&i){var p=n-o,d=a-s,g=l*l+c*c,v=p*p+d*d,m=Math.sqrt(g),y=Math.sqrt(f),x=i*Math.tan((e-Math.acos((g+f-v)/(2*m*y)))/2),b=x/y,_=x/m;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*u)+","+(r+b*h)),this._+="A"+i+","+i+",0,0,"+ +(h*p>u*d)+","+(this._x1=t+_*l)+","+(this._y1=r+_*c)}else this._+="L"+(this._x1=t)+","+(this._y1=r);else;},arc:function(t,a,i,o,s,l){t=+t,a=+a;var c=(i=+i)*Math.cos(o),u=i*Math.sin(o),h=t+c,f=a+u,p=1^l,d=l?o-s:s-o;if(i<0)throw new Error("negative radius: "+i);null===this._x1?this._+="M"+h+","+f:(Math.abs(this._x1-h)>1e-6||Math.abs(this._y1-f)>1e-6)&&(this._+="L"+h+","+f),i&&(d<0&&(d=d%r+r),d>n?this._+="A"+i+","+i+",0,1,"+p+","+(t-c)+","+(a-u)+"A"+i+","+i+",0,1,"+p+","+(this._x1=h)+","+(this._y1=f):d>1e-6&&(this._+="A"+i+","+i+",0,"+ +(d>=e)+","+p+","+(this._x1=t+i*Math.cos(s))+","+(this._y1=a+i*Math.sin(s))))},rect:function(t,e,r,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +r+"v"+ +n+"h"+-r+"Z"},toString:function(){return this._}},t.path=i,Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],162:[function(t,e,r){var n;n=this,function(t){"use strict";function e(t,e,r,n){if(isNaN(e)||isNaN(r))return t;var a,i,o,s,l,c,u,h,f,p=t._root,d={data:n},g=t._x0,v=t._y0,m=t._x1,y=t._y1;if(!p)return t._root=d,t;for(;p.length;)if((c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o,a=p,!(p=p[h=u<<1|c]))return a[h]=d,t;if(s=+t._x.call(null,p.data),l=+t._y.call(null,p.data),e===s&&r===l)return d.next=p,a?a[h]=d:t._root=d,t;do{a=a?a[h]=new Array(4):t._root=new Array(4),(c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o}while((h=u<<1|c)==(f=(l>=o)<<1|s>=i));return a[f]=p,a[h]=d,t}var r=function(t,e,r,n,a){this.node=t,this.x0=e,this.y0=r,this.x1=n,this.y1=a};function n(t){return t[0]}function a(t){return t[1]}function i(t,e,r){var i=new o(null==e?n:e,null==r?a:r,NaN,NaN,NaN,NaN);return null==t?i:i.addAll(t)}function o(t,e,r,n,a,i){this._x=t,this._y=e,this._x0=r,this._y0=n,this._x1=a,this._y1=i,this._root=void 0}function s(t){for(var e={data:t.data},r=e;t=t.next;)r=r.next={data:t.data};return e}var l=i.prototype=o.prototype;l.copy=function(){var t,e,r=new o(this._x,this._y,this._x0,this._y0,this._x1,this._y1),n=this._root;if(!n)return r;if(!n.length)return r._root=s(n),r;for(t=[{source:n,target:r._root=new Array(4)}];n=t.pop();)for(var a=0;a<4;++a)(e=n.source[a])&&(e.length?t.push({source:e,target:n.target[a]=new Array(4)}):n.target[a]=s(e));return r},l.add=function(t){var r=+this._x.call(null,t),n=+this._y.call(null,t);return e(this.cover(r,n),r,n,t)},l.addAll=function(t){var r,n,a,i,o=t.length,s=new Array(o),l=new Array(o),c=1/0,u=1/0,h=-1/0,f=-1/0;for(n=0;nh&&(h=a),if&&(f=i));for(ht||t>a||n>e||e>i))return this;var o,s,l=a-r,c=this._root;switch(s=(e<(n+i)/2)<<1|t<(r+a)/2){case 0:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),t>(a=r+l)||e>i);break;case 1:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),(r=a-l)>t||e>i);break;case 2:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),t>(a=r+l)||n>e);break;case 3:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),(r=a-l)>t||n>e)}this._root&&this._root.length&&(this._root=c)}return this._x0=r,this._y0=n,this._x1=a,this._y1=i,this},l.data=function(){var t=[];return this.visit(function(e){if(!e.length)do{t.push(e.data)}while(e=e.next)}),t},l.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},l.find=function(t,e,n){var a,i,o,s,l,c,u,h=this._x0,f=this._y0,p=this._x1,d=this._y1,g=[],v=this._root;for(v&&g.push(new r(v,h,f,p,d)),null==n?n=1/0:(h=t-n,f=e-n,p=t+n,d=e+n,n*=n);c=g.pop();)if(!(!(v=c.node)||(i=c.x0)>p||(o=c.y0)>d||(s=c.x1)=y)<<1|t>=m)&&(c=g[g.length-1],g[g.length-1]=g[g.length-1-u],g[g.length-1-u]=c)}else{var x=t-+this._x.call(null,v.data),b=e-+this._y.call(null,v.data),_=x*x+b*b;if(_=(s=(d+v)/2))?d=s:v=s,(u=o>=(l=(g+m)/2))?g=l:m=l,e=p,!(p=p[h=u<<1|c]))return this;if(!p.length)break;(e[h+1&3]||e[h+2&3]||e[h+3&3])&&(r=e,f=h)}for(;p.data!==t;)if(n=p,!(p=p.next))return this;return(a=p.next)&&delete p.next,n?(a?n.next=a:delete n.next,this):e?(a?e[h]=a:delete e[h],(p=e[0]||e[1]||e[2]||e[3])&&p===(e[3]||e[2]||e[1]||e[0])&&!p.length&&(r?r[f]=p:this._root=p),this):(this._root=a,this)},l.removeAll=function(t){for(var e=0,r=t.length;e=1?f:t<=-1?-f:Math.asin(t)}function g(t){return t.innerRadius}function v(t){return t.outerRadius}function m(t){return t.startAngle}function y(t){return t.endAngle}function x(t){return t&&t.padAngle}function b(t,e,r,n,a,i,s){var l=t-r,u=e-n,h=(s?i:-i)/c(l*l+u*u),f=h*u,p=-h*l,d=t+f,g=e+p,v=r+f,m=n+p,y=(d+v)/2,x=(g+m)/2,b=v-d,_=m-g,w=b*b+_*_,k=a-i,T=d*m-v*g,M=(_<0?-1:1)*c(o(0,k*k*w-T*T)),A=(T*_-b*M)/w,S=(-T*b-_*M)/w,E=(T*_+b*M)/w,L=(-T*b+_*M)/w,C=A-y,P=S-x,O=E-y,z=L-x;return C*C+P*P>O*O+z*z&&(A=E,S=L),{cx:A,cy:S,x01:-f,y01:-p,x11:A*(a/k-1),y11:S*(a/k-1)}}function _(t){this._context=t}function w(t){return new _(t)}function k(t){return t[0]}function T(t){return t[1]}function M(){var t=k,n=T,a=r(!0),i=null,o=w,s=null;function l(r){var l,c,u,h=r.length,f=!1;for(null==i&&(s=o(u=e.path())),l=0;l<=h;++l)!(l=h;--f)c.point(m[f],y[f]);c.lineEnd(),c.areaEnd()}v&&(m[u]=+t(p,u,r),y[u]=+a(p,u,r),c.point(n?+n(p,u,r):m[u],i?+i(p,u,r):y[u]))}if(d)return c=null,d+""||null}function h(){return M().defined(o).curve(l).context(s)}return u.x=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),n=null,u):t},u.x0=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),u):t},u.x1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:r(+t),u):n},u.y=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),i=null,u):a},u.y0=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),u):a},u.y1=function(t){return arguments.length?(i=null==t?null:"function"==typeof t?t:r(+t),u):i},u.lineX0=u.lineY0=function(){return h().x(t).y(a)},u.lineY1=function(){return h().x(t).y(i)},u.lineX1=function(){return h().x(n).y(a)},u.defined=function(t){return arguments.length?(o="function"==typeof t?t:r(!!t),u):o},u.curve=function(t){return arguments.length?(l=t,null!=s&&(c=l(s)),u):l},u.context=function(t){return arguments.length?(null==t?s=c=null:c=l(s=t),u):s},u}function S(t,e){return et?1:e>=t?0:NaN}function E(t){return t}_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e)}}};var L=P(w);function C(t){this._curve=t}function P(t){function e(e){return new C(t(e))}return e._curve=t,e}function O(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function z(){return O(M().curve(L))}function I(){var t=A().curve(L),e=t.curve,r=t.lineX0,n=t.lineX1,a=t.lineY0,i=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return O(r())},delete t.lineX0,t.lineEndAngle=function(){return O(n())},delete t.lineX1,t.lineInnerRadius=function(){return O(a())},delete t.lineY0,t.lineOuterRadius=function(){return O(i())},delete t.lineY1,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function D(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]}C.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}};var R=Array.prototype.slice;function F(t){return t.source}function B(t){return t.target}function N(t){var n=F,a=B,i=k,o=T,s=null;function l(){var r,l=R.call(arguments),c=n.apply(this,l),u=a.apply(this,l);if(s||(s=r=e.path()),t(s,+i.apply(this,(l[0]=c,l)),+o.apply(this,l),+i.apply(this,(l[0]=u,l)),+o.apply(this,l)),r)return s=null,r+""||null}return l.source=function(t){return arguments.length?(n=t,l):n},l.target=function(t){return arguments.length?(a=t,l):a},l.x=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),l):i},l.y=function(t){return arguments.length?(o="function"==typeof t?t:r(+t),l):o},l.context=function(t){return arguments.length?(s=null==t?null:t,l):s},l}function j(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e=(e+n)/2,r,e,a,n,a)}function V(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e,r=(r+a)/2,n,r,n,a)}function U(t,e,r,n,a){var i=D(e,r),o=D(e,r=(r+a)/2),s=D(n,r),l=D(n,a);t.moveTo(i[0],i[1]),t.bezierCurveTo(o[0],o[1],s[0],s[1],l[0],l[1])}var q={draw:function(t,e){var r=Math.sqrt(e/h);t.moveTo(r,0),t.arc(0,0,r,0,p)}},H={draw:function(t,e){var r=Math.sqrt(e/5)/2;t.moveTo(-3*r,-r),t.lineTo(-r,-r),t.lineTo(-r,-3*r),t.lineTo(r,-3*r),t.lineTo(r,-r),t.lineTo(3*r,-r),t.lineTo(3*r,r),t.lineTo(r,r),t.lineTo(r,3*r),t.lineTo(-r,3*r),t.lineTo(-r,r),t.lineTo(-3*r,r),t.closePath()}},G=Math.sqrt(1/3),Y=2*G,W={draw:function(t,e){var r=Math.sqrt(e/Y),n=r*G;t.moveTo(0,-r),t.lineTo(n,0),t.lineTo(0,r),t.lineTo(-n,0),t.closePath()}},X=Math.sin(h/10)/Math.sin(7*h/10),Z=Math.sin(p/10)*X,J=-Math.cos(p/10)*X,K={draw:function(t,e){var r=Math.sqrt(.8908130915292852*e),n=Z*r,a=J*r;t.moveTo(0,-r),t.lineTo(n,a);for(var i=1;i<5;++i){var o=p*i/5,s=Math.cos(o),l=Math.sin(o);t.lineTo(l*r,-s*r),t.lineTo(s*n-l*a,l*n+s*a)}t.closePath()}},Q={draw:function(t,e){var r=Math.sqrt(e),n=-r/2;t.rect(n,n,r,r)}},$=Math.sqrt(3),tt={draw:function(t,e){var r=-Math.sqrt(e/(3*$));t.moveTo(0,2*r),t.lineTo(-$*r,-r),t.lineTo($*r,-r),t.closePath()}},et=-.5,rt=Math.sqrt(3)/2,nt=1/Math.sqrt(12),at=3*(nt/2+1),it={draw:function(t,e){var r=Math.sqrt(e/at),n=r/2,a=r*nt,i=n,o=r*nt+r,s=-i,l=o;t.moveTo(n,a),t.lineTo(i,o),t.lineTo(s,l),t.lineTo(et*n-rt*a,rt*n+et*a),t.lineTo(et*i-rt*o,rt*i+et*o),t.lineTo(et*s-rt*l,rt*s+et*l),t.lineTo(et*n+rt*a,et*a-rt*n),t.lineTo(et*i+rt*o,et*o-rt*i),t.lineTo(et*s+rt*l,et*l-rt*s),t.closePath()}},ot=[q,H,W,Q,K,tt,it];function st(){}function lt(t,e,r){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+r)/6)}function ct(t){this._context=t}function ut(t){this._context=t}function ht(t){this._context=t}function ft(t,e){this._basis=new ct(t),this._beta=e}ct.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:lt(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ut.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ht.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var r=(this._x0+4*this._x1+t)/6,n=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(r,n):this._context.moveTo(r,n);break;case 3:this._point=4;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ft.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,r=t.length-1;if(r>0)for(var n,a=t[0],i=e[0],o=t[r]-a,s=e[r]-i,l=-1;++l<=r;)n=l/r,this._basis.point(this._beta*t[l]+(1-this._beta)*(a+n*o),this._beta*e[l]+(1-this._beta)*(i+n*s));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}};var pt=function t(e){function r(t){return 1===e?new ct(t):new ft(t,e)}return r.beta=function(e){return t(+e)},r}(.85);function dt(t,e,r){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-r),t._x2,t._y2)}function gt(t,e){this._context=t,this._k=(1-e)/6}gt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:dt(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var vt=function t(e){function r(t){return new gt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function mt(t,e){this._context=t,this._k=(1-e)/6}mt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var yt=function t(e){function r(t){return new mt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function xt(t,e){this._context=t,this._k=(1-e)/6}xt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var bt=function t(e){function r(t){return new xt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function _t(t,e,r){var n=t._x1,a=t._y1,i=t._x2,o=t._y2;if(t._l01_a>u){var s=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,l=3*t._l01_a*(t._l01_a+t._l12_a);n=(n*s-t._x0*t._l12_2a+t._x2*t._l01_2a)/l,a=(a*s-t._y0*t._l12_2a+t._y2*t._l01_2a)/l}if(t._l23_a>u){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,h=3*t._l23_a*(t._l23_a+t._l12_a);i=(i*c+t._x1*t._l23_2a-e*t._l12_2a)/h,o=(o*c+t._y1*t._l23_2a-r*t._l12_2a)/h}t._context.bezierCurveTo(n,a,i,o,t._x2,t._y2)}function wt(t,e){this._context=t,this._alpha=e}wt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var kt=function t(e){function r(t){return e?new wt(t,e):new gt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Tt(t,e){this._context=t,this._alpha=e}Tt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var Mt=function t(e){function r(t){return e?new Tt(t,e):new mt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function At(t,e){this._context=t,this._alpha=e}At.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var St=function t(e){function r(t){return e?new At(t,e):new xt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Et(t){this._context=t}function Lt(t){return t<0?-1:1}function Ct(t,e,r){var n=t._x1-t._x0,a=e-t._x1,i=(t._y1-t._y0)/(n||a<0&&-0),o=(r-t._y1)/(a||n<0&&-0),s=(i*a+o*n)/(n+a);return(Lt(i)+Lt(o))*Math.min(Math.abs(i),Math.abs(o),.5*Math.abs(s))||0}function Pt(t,e){var r=t._x1-t._x0;return r?(3*(t._y1-t._y0)/r-e)/2:e}function Ot(t,e,r){var n=t._x0,a=t._y0,i=t._x1,o=t._y1,s=(i-n)/3;t._context.bezierCurveTo(n+s,a+s*e,i-s,o-s*r,i,o)}function zt(t){this._context=t}function It(t){this._context=new Dt(t)}function Dt(t){this._context=t}function Rt(t){this._context=t}function Ft(t){var e,r,n=t.length-1,a=new Array(n),i=new Array(n),o=new Array(n);for(a[0]=0,i[0]=2,o[0]=t[0]+2*t[1],e=1;e=0;--e)a[e]=(o[e]-a[e+1])/i[e];for(i[n-1]=(t[n]+a[n-1])/2,e=0;e1)for(var r,n,a,i=1,o=t[e[0]],s=o.length;i=0;)r[e]=e;return r}function Vt(t,e){return t[e]}function Ut(t){var e=t.map(qt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function qt(t){for(var e,r=-1,n=0,a=t.length,i=-1/0;++ri&&(i=e,n=r);return n}function Ht(t){var e=t.map(Gt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function Gt(t){for(var e,r=0,n=-1,a=t.length;++n=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}}this._x=t,this._y=e}},t.arc=function(){var t=g,o=v,_=r(0),w=null,k=m,T=y,M=x,A=null;function S(){var r,g,v,m=+t.apply(this,arguments),y=+o.apply(this,arguments),x=k.apply(this,arguments)-f,S=T.apply(this,arguments)-f,E=n(S-x),L=S>x;if(A||(A=r=e.path()),yu)if(E>p-u)A.moveTo(y*i(x),y*l(x)),A.arc(0,0,y,x,S,!L),m>u&&(A.moveTo(m*i(S),m*l(S)),A.arc(0,0,m,S,x,L));else{var C,P,O=x,z=S,I=x,D=S,R=E,F=E,B=M.apply(this,arguments)/2,N=B>u&&(w?+w.apply(this,arguments):c(m*m+y*y)),j=s(n(y-m)/2,+_.apply(this,arguments)),V=j,U=j;if(N>u){var q=d(N/m*l(B)),H=d(N/y*l(B));(R-=2*q)>u?(I+=q*=L?1:-1,D-=q):(R=0,I=D=(x+S)/2),(F-=2*H)>u?(O+=H*=L?1:-1,z-=H):(F=0,O=z=(x+S)/2)}var G=y*i(O),Y=y*l(O),W=m*i(D),X=m*l(D);if(j>u){var Z,J=y*i(z),K=y*l(z),Q=m*i(I),$=m*l(I);if(E1?0:v<-1?h:Math.acos(v))/2),it=c(Z[0]*Z[0]+Z[1]*Z[1]);V=s(j,(m-it)/(at-1)),U=s(j,(y-it)/(at+1))}}F>u?U>u?(C=b(Q,$,G,Y,y,U,L),P=b(J,K,W,X,y,U,L),A.moveTo(C.cx+C.x01,C.cy+C.y01),Uu&&R>u?V>u?(C=b(W,X,J,K,m,-V,L),P=b(G,Y,Q,$,m,-V,L),A.lineTo(C.cx+C.x01,C.cy+C.y01),V0&&(d+=h);for(null!=e?g.sort(function(t,r){return e(v[t],v[r])}):null!=n&&g.sort(function(t,e){return n(r[t],r[e])}),s=0,c=d?(y-f*b)/d:0;s0?h*c:0)+b,v[l]={data:r[l],index:s,value:h,startAngle:m,endAngle:u,padAngle:x};return v}return s.value=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),s):t},s.sortValues=function(t){return arguments.length?(e=t,n=null,s):e},s.sort=function(t){return arguments.length?(n=t,e=null,s):n},s.startAngle=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),s):a},s.endAngle=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),s):i},s.padAngle=function(t){return arguments.length?(o="function"==typeof t?t:r(+t),s):o},s},t.areaRadial=I,t.radialArea=I,t.lineRadial=z,t.radialLine=z,t.pointRadial=D,t.linkHorizontal=function(){return N(j)},t.linkVertical=function(){return N(V)},t.linkRadial=function(){var t=N(U);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.symbol=function(){var t=r(q),n=r(64),a=null;function i(){var r;if(a||(a=r=e.path()),t.apply(this,arguments).draw(a,+n.apply(this,arguments)),r)return a=null,r+""||null}return i.type=function(e){return arguments.length?(t="function"==typeof e?e:r(e),i):t},i.size=function(t){return arguments.length?(n="function"==typeof t?t:r(+t),i):n},i.context=function(t){return arguments.length?(a=null==t?null:t,i):a},i},t.symbols=ot,t.symbolCircle=q,t.symbolCross=H,t.symbolDiamond=W,t.symbolSquare=Q,t.symbolStar=K,t.symbolTriangle=tt,t.symbolWye=it,t.curveBasisClosed=function(t){return new ut(t)},t.curveBasisOpen=function(t){return new ht(t)},t.curveBasis=function(t){return new ct(t)},t.curveBundle=pt,t.curveCardinalClosed=yt,t.curveCardinalOpen=bt,t.curveCardinal=vt,t.curveCatmullRomClosed=Mt,t.curveCatmullRomOpen=St,t.curveCatmullRom=kt,t.curveLinearClosed=function(t){return new Et(t)},t.curveLinear=w,t.curveMonotoneX=function(t){return new zt(t)},t.curveMonotoneY=function(t){return new It(t)},t.curveNatural=function(t){return new Rt(t)},t.curveStep=function(t){return new Bt(t,.5)},t.curveStepAfter=function(t){return new Bt(t,1)},t.curveStepBefore=function(t){return new Bt(t,0)},t.stack=function(){var t=r([]),e=jt,n=Nt,a=Vt;function i(r){var i,o,s=t.apply(this,arguments),l=r.length,c=s.length,u=new Array(c);for(i=0;i0){for(var r,n,a,i=0,o=t[0].length;i1)for(var r,n,a,i,o,s,l=0,c=t[e[0]].length;l=0?(n[0]=i,n[1]=i+=a):a<0?(n[1]=o,n[0]=o+=a):n[0]=i},t.stackOffsetNone=Nt,t.stackOffsetSilhouette=function(t,e){if((r=t.length)>0){for(var r,n=0,a=t[e[0]],i=a.length;n0&&(n=(r=t[e[0]]).length)>0){for(var r,n,a,i=0,o=1;o=0&&r._call.call(null,t),r=r._next;--n}function m(){l=(s=u.now())+c,n=a=0;try{v()}finally{n=0,function(){var t,n,a=e,i=1/0;for(;a;)a._call?(i>a._time&&(i=a._time),t=a,a=a._next):(n=a._next,a._next=null,a=t?t._next=n:e=n);r=t,x(i)}(),l=0}}function y(){var t=u.now(),e=t-s;e>o&&(c-=e,s=t)}function x(t){n||(a&&(a=clearTimeout(a)),t-l>24?(t<1/0&&(a=setTimeout(m,t-u.now()-c)),i&&(i=clearInterval(i))):(i||(s=u.now(),i=setInterval(y,o)),n=1,h(m)))}d.prototype=g.prototype={constructor:d,restart:function(t,n,a){if("function"!=typeof t)throw new TypeError("callback is not a function");a=(null==a?f():+a)+(null==n?0:+n),this._next||r===this||(r?r._next=this:e=this,r=this),this._call=t,this._time=a,x()},stop:function(){this._call&&(this._call=null,this._time=1/0,x())}},t.now=f,t.timer=g,t.timerFlush=v,t.timeout=function(t,e,r){var n=new d;return e=null==e?0:+e,n.restart(function(r){n.stop(),t(r+e)},e,r),n},t.interval=function(t,e,r){var n=new d,a=e;return null==e?(n.restart(t,e,r),n):(e=+e,r=null==r?f():+r,n.restart(function i(o){o+=a,n.restart(i,a+=e,r),t(o)},e,r),n)},Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],165:[function(t,e,r){!function(){var t={version:"3.5.17"},r=[].slice,n=function(t){return r.call(t)},a=this.document;function i(t){return t&&(t.ownerDocument||t.document||t).documentElement}function o(t){return t&&(t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView)}if(a)try{n(a.documentElement.childNodes)[0].nodeType}catch(t){n=function(t){for(var e=t.length,r=new Array(e);e--;)r[e]=t[e];return r}}if(Date.now||(Date.now=function(){return+new Date}),a)try{a.createElement("DIV").style.setProperty("opacity",0,"")}catch(t){var s=this.Element.prototype,l=s.setAttribute,c=s.setAttributeNS,u=this.CSSStyleDeclaration.prototype,h=u.setProperty;s.setAttribute=function(t,e){l.call(this,t,e+"")},s.setAttributeNS=function(t,e,r){c.call(this,t,e,r+"")},u.setProperty=function(t,e,r){h.call(this,t,e+"",r)}}function f(t,e){return te?1:t>=e?0:NaN}function p(t){return null===t?NaN:+t}function d(t){return!isNaN(t)}function g(t){return{left:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n>>1;t(e[i],r)<0?n=i+1:a=i}return n},right:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n>>1;t(e[i],r)>0?a=i:n=i+1}return n}}}t.ascending=f,t.descending=function(t,e){return et?1:e>=t?0:NaN},t.min=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a=n){r=n;break}for(;++an&&(r=n)}else{for(;++a=n){r=n;break}for(;++an&&(r=n)}return r},t.max=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a=n){r=n;break}for(;++ar&&(r=n)}else{for(;++a=n){r=n;break}for(;++ar&&(r=n)}return r},t.extent=function(t,e){var r,n,a,i=-1,o=t.length;if(1===arguments.length){for(;++i=n){r=a=n;break}for(;++in&&(r=n),a=n){r=a=n;break}for(;++i
=p0)&&!(p1>=hi)",["p0","p1"]),g=u("lo===p0",["p0"]),v=u("lo>>1,f=2*t,p=h,d=s[f*h+e];for(;c=x?(p=y,d=x):m>=_?(p=v,d=m):(p=b,d=_):x>=_?(p=y,d=x):_>=m?(p=v,d=m):(p=b,d=_);for(var w=f*(u-1),k=f*p,T=0;Tr&&a[h+e]>c;--u,h-=o){for(var f=h,p=h+o,d=0;d=0&&a.push("lo=e[k+n]");t.indexOf("hi")>=0&&a.push("hi=e[k+o]");return r.push(n.replace("_",a.join()).replace("$",t)),Function.apply(void 0,r)};var n="for(var j=2*a,k=j*c,l=k,m=c,n=b,o=a+b,p=c;d>p;++p,k+=j){var _;if($)if(m===p)m+=1,l+=j;else{for(var s=0;j>s;++s){var t=e[k+s];e[k+s]=e[l],e[l++]=t}var u=f[p];f[p]=f[m],f[m++]=u}}return m"},{}],103:[function(t,e,r){"use strict";e.exports=function(t,e){e<=4*n?a(0,e-1,t):function t(e,r,h){var f=(r-e+1)/6|0,p=e+f,d=r-f,g=e+r>>1,v=g-f,m=g+f,y=p,x=v,b=g,_=m,w=d,k=e+1,T=r-1,M=0;c(y,x,h)&&(M=y,y=x,x=M);c(_,w,h)&&(M=_,_=w,w=M);c(y,b,h)&&(M=y,y=b,b=M);c(x,b,h)&&(M=x,x=b,b=M);c(y,_,h)&&(M=y,y=_,_=M);c(b,_,h)&&(M=b,b=_,_=M);c(x,w,h)&&(M=x,x=w,w=M);c(x,b,h)&&(M=x,x=b,b=M);c(_,w,h)&&(M=_,_=w,w=M);var A=h[2*x];var S=h[2*x+1];var E=h[2*_];var L=h[2*_+1];var C=2*y;var P=2*b;var O=2*w;var z=2*p;var I=2*g;var D=2*d;for(var R=0;R<2;++R){var F=h[C+R],B=h[P+R],N=h[O+R];h[z+R]=F,h[I+R]=B,h[D+R]=N}o(v,e,h);o(m,r,h);for(var j=k;j<=T;++j)if(u(j,A,S,h))j!==k&&i(j,k,h),++k;else if(!u(j,E,L,h))for(;;){if(u(T,E,L,h)){u(T,A,S,h)?(s(j,k,T,h),++k,--T):(i(j,T,h),--T);break}if(--Tt;){var c=r[l-2],u=r[l-1];if(cr[e+1])}function u(t,e,r,n){var a=n[t*=2];return a>>1;i(p,S);for(var E=0,L=0,k=0;k=o)d(c,u,L--,C=C-o|0);else if(C>=0)d(s,l,E--,C);else if(C<=-o){C=-C-o|0;for(var P=0;P>>1;i(p,E);for(var L=0,C=0,P=0,T=0;T>1==p[2*T+3]>>1&&(z=2,T+=1),O<0){for(var I=-(O>>1)-1,D=0;D>1)-1;0===z?d(s,l,L--,I):1===z?d(c,u,C--,I):2===z&&d(h,f,P--,I)}}},scanBipartite:function(t,e,r,n,a,c,u,h,f,v,m,y){var x=0,b=2*t,_=e,w=e+t,k=1,T=1;n?T=o:k=o;for(var M=a;M>>1;i(p,L);for(var C=0,M=0;M=o?(O=!n,A-=o):(O=!!n,A-=1),O)g(s,l,C++,A);else{var z=y[A],I=b*A,D=m[I+e+1],R=m[I+e+1+t];t:for(var F=0;F>>1;i(p,k);for(var T=0,x=0;x=o)s[T++]=b-o;else{var A=d[b-=1],S=v*b,E=f[S+e+1],L=f[S+e+1+t];t:for(var C=0;C=0;--C)if(s[C]===b){for(var I=C+1;I0&&s.length>i){s.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+s.length+' "'+String(e)+'" listeners added. Use emitter.setMaxListeners() to increase limit.');l.name="MaxListenersExceededWarning",l.emitter=t,l.type=e,l.count=s.length,"object"==typeof console&&console.warn&&console.warn("%s: %s",l.name,l.message)}}else s=o[e]=r,++t._eventsCount;return t}function f(){if(!this.fired)switch(this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length){case 0:return this.listener.call(this.target);case 1:return this.listener.call(this.target,arguments[0]);case 2:return this.listener.call(this.target,arguments[0],arguments[1]);case 3:return this.listener.call(this.target,arguments[0],arguments[1],arguments[2]);default:for(var t=new Array(arguments.length),e=0;e1&&(e=arguments[1]),e instanceof Error)throw e;var l=new Error('Unhandled "error" event. ('+e+")");throw l.context=e,l}if(!(r=o[t]))return!1;var c="function"==typeof r;switch(n=arguments.length){case 1:!function(t,e,r){if(e)t.call(r);else for(var n=t.length,a=v(t,n),i=0;i=0;o--)if(r[o]===e||r[o].listener===e){s=r[o].listener,i=o;break}if(i<0)return this;0===i?r.shift():function(t,e){for(var r=e,n=r+1,a=t.length;n=0;i--)this.removeListener(t,e[i]);return this},o.prototype.listeners=function(t){return d(this,t,!0)},o.prototype.rawListeners=function(t){return d(this,t,!1)},o.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):g.call(t,e)},o.prototype.listenerCount=g,o.prototype.eventNames=function(){return this._eventsCount>0?Reflect.ownKeys(this._events):[]}},{}],107:[function(t,e,r){(function(e){"use strict";var n=t("base64-js"),a=t("ieee754"),i="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;r.Buffer=e,r.SlowBuffer=function(t){+t!=t&&(t=0);return e.alloc(+t)},r.INSPECT_MAX_BYTES=50;var o=2147483647;function s(t){if(t>o)throw new RangeError('The value "'+t+'" is invalid for option "size"');var r=new Uint8Array(t);return Object.setPrototypeOf(r,e.prototype),r}function e(t,e,r){if("number"==typeof t){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return u(t)}return l(t,e,r)}function l(t,r,n){if("string"==typeof t)return function(t,r){"string"==typeof r&&""!==r||(r="utf8");if(!e.isEncoding(r))throw new TypeError("Unknown encoding: "+r);var n=0|p(t,r),a=s(n),i=a.write(t,r);i!==n&&(a=a.slice(0,i));return a}(t,r);if(ArrayBuffer.isView(t))return h(t);if(null==t)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(j(t,ArrayBuffer)||t&&j(t.buffer,ArrayBuffer))return function(t,r,n){if(r<0||t.byteLength=o)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+o.toString(16)+" bytes");return 0|t}function p(t,r){if(e.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||j(t,ArrayBuffer))return t.byteLength;if("string"!=typeof t)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var n=t.length,a=arguments.length>2&&!0===arguments[2];if(!a&&0===n)return 0;for(var i=!1;;)switch(r){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return F(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return B(t).length;default:if(i)return a?-1:F(t).length;r=(""+r).toLowerCase(),i=!0}}function d(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function g(t,r,n,a,i){if(0===t.length)return-1;if("string"==typeof n?(a=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),V(n=+n)&&(n=i?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(i)return-1;n=t.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof r&&(r=e.from(r,a)),e.isBuffer(r))return 0===r.length?-1:v(t,r,n,a,i);if("number"==typeof r)return r&=255,"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,r,n):Uint8Array.prototype.lastIndexOf.call(t,r,n):v(t,[r],n,a,i);throw new TypeError("val must be string, number or Buffer")}function v(t,e,r,n,a){var i,o=1,s=t.length,l=e.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(t.length<2||e.length<2)return-1;o=2,s/=2,l/=2,r/=2}function c(t,e){return 1===o?t[e]:t.readUInt16BE(e*o)}if(a){var u=-1;for(i=r;is&&(r=s-l),i=r;i>=0;i--){for(var h=!0,f=0;fa&&(n=a):n=a;var i=e.length;n>i/2&&(n=i/2);for(var o=0;o>8,a=r%256,i.push(a),i.push(n);return i}(e,t.length-r),t,r,n)}function k(t,e,r){return 0===e&&r===t.length?n.fromByteArray(t):n.fromByteArray(t.slice(e,r))}function T(t,e,r){r=Math.min(t.length,r);for(var n=[],a=e;a239?4:c>223?3:c>191?2:1;if(a+h<=r)switch(h){case 1:c<128&&(u=c);break;case 2:128==(192&(i=t[a+1]))&&(l=(31&c)<<6|63&i)>127&&(u=l);break;case 3:i=t[a+1],o=t[a+2],128==(192&i)&&128==(192&o)&&(l=(15&c)<<12|(63&i)<<6|63&o)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:i=t[a+1],o=t[a+2],s=t[a+3],128==(192&i)&&128==(192&o)&&128==(192&s)&&(l=(15&c)<<18|(63&i)<<12|(63&o)<<6|63&s)>65535&&l<1114112&&(u=l)}null===u?(u=65533,h=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|1023&u),n.push(u),a+=h}return function(t){var e=t.length;if(e<=M)return String.fromCharCode.apply(String,t);var r="",n=0;for(;nthis.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return E(this,e,r);case"utf8":case"utf-8":return T(this,e,r);case"ascii":return A(this,e,r);case"latin1":case"binary":return S(this,e,r);case"base64":return k(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return L(this,e,r);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}.apply(this,arguments)},e.prototype.toLocaleString=e.prototype.toString,e.prototype.equals=function(t){if(!e.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===e.compare(this,t)},e.prototype.inspect=function(){var t="",e=r.INSPECT_MAX_BYTES;return t=this.toString("hex",0,e).replace(/(.{2})/g,"$1 ").trim(),this.length>e&&(t+=" ... "),""},i&&(e.prototype[i]=e.prototype.inspect),e.prototype.compare=function(t,r,n,a,i){if(j(t,Uint8Array)&&(t=e.from(t,t.offset,t.byteLength)),!e.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===r&&(r=0),void 0===n&&(n=t?t.length:0),void 0===a&&(a=0),void 0===i&&(i=this.length),r<0||n>t.length||a<0||i>this.length)throw new RangeError("out of range index");if(a>=i&&r>=n)return 0;if(a>=i)return-1;if(r>=n)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(a>>>=0),s=(n>>>=0)-(r>>>=0),l=Math.min(o,s),c=this.slice(a,i),u=t.slice(r,n),h=0;h>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0)}var a=this.length-e;if((void 0===r||r>a)&&(r=a),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var i=!1;;)switch(n){case"hex":return m(this,t,e,r);case"utf8":case"utf-8":return y(this,t,e,r);case"ascii":return x(this,t,e,r);case"latin1":case"binary":return b(this,t,e,r);case"base64":return _(this,t,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return w(this,t,e,r);default:if(i)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),i=!0}},e.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var M=4096;function A(t,e,r){var n="";r=Math.min(t.length,r);for(var a=e;an)&&(r=n);for(var a="",i=e;ir)throw new RangeError("Trying to access beyond buffer length")}function P(t,r,n,a,i,o){if(!e.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(r>i||rt.length)throw new RangeError("Index out of range")}function O(t,e,r,n,a,i){if(r+n>t.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function z(t,e,r,n,i){return e=+e,r>>>=0,i||O(t,0,r,4),a.write(t,e,r,n,23,4),r+4}function I(t,e,r,n,i){return e=+e,r>>>=0,i||O(t,0,r,8),a.write(t,e,r,n,52,8),r+8}e.prototype.slice=function(t,r){var n=this.length;(t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(r=void 0===r?n:~~r)<0?(r+=n)<0&&(r=0):r>n&&(r=n),r>>=0,e>>>=0,r||C(t,e,this.length);for(var n=this[t],a=1,i=0;++i>>=0,e>>>=0,r||C(t,e,this.length);for(var n=this[t+--e],a=1;e>0&&(a*=256);)n+=this[t+--e]*a;return n},e.prototype.readUInt8=function(t,e){return t>>>=0,e||C(t,1,this.length),this[t]},e.prototype.readUInt16LE=function(t,e){return t>>>=0,e||C(t,2,this.length),this[t]|this[t+1]<<8},e.prototype.readUInt16BE=function(t,e){return t>>>=0,e||C(t,2,this.length),this[t]<<8|this[t+1]},e.prototype.readUInt32LE=function(t,e){return t>>>=0,e||C(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},e.prototype.readUInt32BE=function(t,e){return t>>>=0,e||C(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},e.prototype.readIntLE=function(t,e,r){t>>>=0,e>>>=0,r||C(t,e,this.length);for(var n=this[t],a=1,i=0;++i=(a*=128)&&(n-=Math.pow(2,8*e)),n},e.prototype.readIntBE=function(t,e,r){t>>>=0,e>>>=0,r||C(t,e,this.length);for(var n=e,a=1,i=this[t+--n];n>0&&(a*=256);)i+=this[t+--n]*a;return i>=(a*=128)&&(i-=Math.pow(2,8*e)),i},e.prototype.readInt8=function(t,e){return t>>>=0,e||C(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},e.prototype.readInt16LE=function(t,e){t>>>=0,e||C(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},e.prototype.readInt16BE=function(t,e){t>>>=0,e||C(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},e.prototype.readInt32LE=function(t,e){return t>>>=0,e||C(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},e.prototype.readInt32BE=function(t,e){return t>>>=0,e||C(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},e.prototype.readFloatLE=function(t,e){return t>>>=0,e||C(t,4,this.length),a.read(this,t,!0,23,4)},e.prototype.readFloatBE=function(t,e){return t>>>=0,e||C(t,4,this.length),a.read(this,t,!1,23,4)},e.prototype.readDoubleLE=function(t,e){return t>>>=0,e||C(t,8,this.length),a.read(this,t,!0,52,8)},e.prototype.readDoubleBE=function(t,e){return t>>>=0,e||C(t,8,this.length),a.read(this,t,!1,52,8)},e.prototype.writeUIntLE=function(t,e,r,n){(t=+t,e>>>=0,r>>>=0,n)||P(this,t,e,r,Math.pow(2,8*r)-1,0);var a=1,i=0;for(this[e]=255&t;++i>>=0,r>>>=0,n)||P(this,t,e,r,Math.pow(2,8*r)-1,0);var a=r-1,i=1;for(this[e+a]=255&t;--a>=0&&(i*=256);)this[e+a]=t/i&255;return e+r},e.prototype.writeUInt8=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,1,255,0),this[e]=255&t,e+1},e.prototype.writeUInt16LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},e.prototype.writeUInt16BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},e.prototype.writeUInt32LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},e.prototype.writeUInt32BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},e.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var a=Math.pow(2,8*r-1);P(this,t,e,r,a-1,-a)}var i=0,o=1,s=0;for(this[e]=255&t;++i>0)-s&255;return e+r},e.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var a=Math.pow(2,8*r-1);P(this,t,e,r,a-1,-a)}var i=r-1,o=1,s=0;for(this[e+i]=255&t;--i>=0&&(o*=256);)t<0&&0===s&&0!==this[e+i+1]&&(s=1),this[e+i]=(t/o>>0)-s&255;return e+r},e.prototype.writeInt8=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},e.prototype.writeInt16LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},e.prototype.writeInt16BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},e.prototype.writeInt32LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},e.prototype.writeInt32BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},e.prototype.writeFloatLE=function(t,e,r){return z(this,t,e,!0,r)},e.prototype.writeFloatBE=function(t,e,r){return z(this,t,e,!1,r)},e.prototype.writeDoubleLE=function(t,e,r){return I(this,t,e,!0,r)},e.prototype.writeDoubleBE=function(t,e,r){return I(this,t,e,!1,r)},e.prototype.copy=function(t,r,n,a){if(!e.isBuffer(t))throw new TypeError("argument should be a Buffer");if(n||(n=0),a||0===a||(a=this.length),r>=t.length&&(r=t.length),r||(r=0),a>0&&a=this.length)throw new RangeError("Index out of range");if(a<0)throw new RangeError("sourceEnd out of bounds");a>this.length&&(a=this.length),t.length-r=0;--o)t[o+r]=this[o+n];else Uint8Array.prototype.set.call(t,this.subarray(n,a),r);return i},e.prototype.fill=function(t,r,n,a){if("string"==typeof t){if("string"==typeof r?(a=r,r=0,n=this.length):"string"==typeof n&&(a=n,n=this.length),void 0!==a&&"string"!=typeof a)throw new TypeError("encoding must be a string");if("string"==typeof a&&!e.isEncoding(a))throw new TypeError("Unknown encoding: "+a);if(1===t.length){var i=t.charCodeAt(0);("utf8"===a&&i<128||"latin1"===a)&&(t=i)}}else"number"==typeof t?t&=255:"boolean"==typeof t&&(t=Number(t));if(r<0||this.length>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"==typeof t)for(o=r;o55295&&r<57344){if(!a){if(r>56319){(e-=3)>-1&&i.push(239,191,189);continue}if(o+1===n){(e-=3)>-1&&i.push(239,191,189);continue}a=r;continue}if(r<56320){(e-=3)>-1&&i.push(239,191,189),a=r;continue}r=65536+(a-55296<<10|r-56320)}else a&&(e-=3)>-1&&i.push(239,191,189);if(a=null,r<128){if((e-=1)<0)break;i.push(r)}else if(r<2048){if((e-=2)<0)break;i.push(r>>6|192,63&r|128)}else if(r<65536){if((e-=3)<0)break;i.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;i.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return i}function B(t){return n.toByteArray(function(t){if((t=(t=t.split("=")[0]).trim().replace(D,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function N(t,e,r,n){for(var a=0;a=e.length||a>=t.length);++a)e[a+r]=t[a];return a}function j(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function V(t){return t!=t}}).call(this,t("buffer").Buffer)},{"base64-js":76,buffer:107,ieee754:413}],108:[function(t,e,r){"use strict";var n=t("./lib/monotone"),a=t("./lib/triangulation"),i=t("./lib/delaunay"),o=t("./lib/filter");function s(t){return[Math.min(t[0],t[1]),Math.max(t[0],t[1])]}function l(t,e){return t[0]-e[0]||t[1]-e[1]}function c(t,e,r){return e in t?t[e]:r}e.exports=function(t,e,r){Array.isArray(e)?(r=r||{},e=e||[]):(r=e||{},e=[]);var u=!!c(r,"delaunay",!0),h=!!c(r,"interior",!0),f=!!c(r,"exterior",!0),p=!!c(r,"infinity",!1);if(!h&&!f||0===t.length)return[];var d=n(t,e);if(u||h!==f||p){for(var g=a(t.length,function(t){return t.map(s).sort(l)}(e)),v=0;v0;){for(var u=r.pop(),s=r.pop(),h=-1,f=-1,l=o[s],d=1;d=0||(e.flip(s,u),a(t,e,r,h,s,f),a(t,e,r,s,f,h),a(t,e,r,f,u,h),a(t,e,r,u,h,f)))}}},{"binary-search-bounds":113,"robust-in-sphere":506}],110:[function(t,e,r){"use strict";var n,a=t("binary-search-bounds");function i(t,e,r,n,a,i,o){this.cells=t,this.neighbor=e,this.flags=n,this.constraint=r,this.active=a,this.next=i,this.boundary=o}function o(t,e){return t[0]-e[0]||t[1]-e[1]||t[2]-e[2]}e.exports=function(t,e,r){var n=function(t,e){for(var r=t.cells(),n=r.length,a=0;a0||l.length>0;){for(;s.length>0;){var p=s.pop();if(c[p]!==-a){c[p]=a;u[p];for(var d=0;d<3;++d){var g=f[3*p+d];g>=0&&0===c[g]&&(h[3*p+d]?l.push(g):(s.push(g),c[g]=a))}}}var v=l;l=s,s=v,l.length=0,a=-a}var m=function(t,e,r){for(var n=0,a=0;a1&&a(r[f[p-2]],r[f[p-1]],i)>0;)t.push([f[p-1],f[p-2],o]),p-=1;f.length=p,f.push(o);var d=u.upperIds;for(p=d.length;p>1&&a(r[d[p-2]],r[d[p-1]],i)<0;)t.push([d[p-2],d[p-1],o]),p-=1;d.length=p,d.push(o)}}function p(t,e){var r;return(r=t.a[0]m[0]&&a.push(new c(m,v,s,h),new c(v,m,o,h))}a.sort(u);for(var y=a[0].a[0]-(1+Math.abs(a[0].a[0]))*Math.pow(2,-52),x=[new l([y,1],[y,0],-1,[],[],[],[])],b=[],h=0,_=a.length;h<_;++h){var w=a[h],k=w.type;k===i?f(b,x,t,w.a,w.idx):k===s?d(x,t,w):g(x,t,w)}return b}},{"binary-search-bounds":113,"robust-orientation":508}],112:[function(t,e,r){"use strict";var n=t("binary-search-bounds");function a(t,e){this.stars=t,this.edges=e}e.exports=function(t,e){for(var r=new Array(t),n=0;n=0}}(),i.removeTriangle=function(t,e,r){var n=this.stars;o(n[t],e,r),o(n[e],r,t),o(n[r],t,e)},i.addTriangle=function(t,e,r){var n=this.stars;n[t].push(e,r),n[e].push(r,t),n[r].push(t,e)},i.opposite=function(t,e){for(var r=this.stars[e],n=1,a=r.length;n>>1,x=a[m]"];return a?e.indexOf("c")<0?i.push(";if(x===y){return m}else if(x<=y){"):i.push(";var p=c(x,y);if(p===0){return m}else if(p<=0){"):i.push(";if(",e,"){i=m;"),r?i.push("l=m+1}else{h=m-1}"):i.push("h=m-1}else{l=m+1}"),i.push("}"),a?i.push("return -1};"):i.push("return i};"),i.join("")}function a(t,e,r,a){return new Function([n("A","x"+t+"y",e,["y"],a),n("P","c(x,y)"+t+"0",e,["y","c"],a),"function dispatchBsearch",r,"(a,y,c,l,h){if(typeof(c)==='function'){return P(a,(l===void 0)?0:l|0,(h===void 0)?a.length-1:h|0,y,c)}else{return A(a,(c===void 0)?0:c|0,(l===void 0)?a.length-1:l|0,y)}}return dispatchBsearch",r].join(""))()}e.exports={ge:a(">=",!1,"GE"),gt:a(">",!1,"GT"),lt:a("<",!0,"LT"),le:a("<=",!0,"LE"),eq:a("-",!0,"EQ",!0)}},{}],114:[function(t,e,r){"use strict";e.exports=function(t){for(var e=1,r=1;rr?r:t:te?e:t}},{}],118:[function(t,e,r){"use strict";e.exports=function(t,e,r){var n;if(r){n=e;for(var a=new Array(e.length),i=0;ie[2]?1:0)}function m(t,e,r){if(0!==t.length){if(e)for(var n=0;n=0;--i){var x=e[u=(S=n[i])[0]],b=x[0],_=x[1],w=t[b],k=t[_];if((w[0]-k[0]||w[1]-k[1])<0){var T=b;b=_,_=T}x[0]=b;var M,A=x[1]=S[1];for(a&&(M=x[2]);i>0&&n[i-1][0]===u;){var S,E=(S=n[--i])[1];a?e.push([A,E,M]):e.push([A,E]),A=E}a?e.push([A,_,M]):e.push([A,_])}return f}(t,e,f,v,r));return m(e,y,r),!!y||(f.length>0||v.length>0)}},{"./lib/rat-seg-intersect":119,"big-rat":80,"big-rat/cmp":78,"big-rat/to-float":92,"box-intersect":98,nextafter:452,"rat-vec":487,"robust-segment-intersect":511,"union-find":544}],119:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){var i=s(e,t),h=s(n,r),f=u(i,h);if(0===o(f))return null;var p=s(t,r),d=u(h,p),g=a(d,f),v=c(i,g);return l(t,v)};var n=t("big-rat/mul"),a=t("big-rat/div"),i=t("big-rat/sub"),o=t("big-rat/sign"),s=t("rat-vec/sub"),l=t("rat-vec/add"),c=t("rat-vec/muls");function u(t,e){return i(n(t[0],e[1]),n(t[1],e[0]))}},{"big-rat/div":79,"big-rat/mul":89,"big-rat/sign":90,"big-rat/sub":91,"rat-vec/add":486,"rat-vec/muls":488,"rat-vec/sub":489}],120:[function(t,e,r){"use strict";var n=t("clamp");function a(t,e){null==e&&(e=!0);var r=t[0],a=t[1],i=t[2],o=t[3];return null==o&&(o=e?1:255),e&&(r*=255,a*=255,i*=255,o*=255),16777216*(r=255&n(r,0,255))+((a=255&n(a,0,255))<<16)+((i=255&n(i,0,255))<<8)+(o=255&n(o,0,255))}e.exports=a,e.exports.to=a,e.exports.from=function(t,e){var r=(t=+t)>>>24,n=(16711680&t)>>>16,a=(65280&t)>>>8,i=255&t;return!1===e?[r,n,a,i]:[r/255,n/255,a/255,i/255]}},{clamp:117}],121:[function(t,e,r){"use strict";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},{}],122:[function(t,e,r){"use strict";var n=t("color-rgba"),a=t("clamp"),i=t("dtype");e.exports=function(t,e){"float"!==e&&e||(e="array"),"uint"===e&&(e="uint8"),"uint_clamped"===e&&(e="uint8_clamped");var r=new(i(e))(4),o="uint8"!==e&&"uint8_clamped"!==e;return t.length&&"string"!=typeof t||((t=n(t))[0]/=255,t[1]/=255,t[2]/=255),function(t){return t instanceof Uint8Array||t instanceof Uint8ClampedArray||!!(Array.isArray(t)&&(t[0]>1||0===t[0])&&(t[1]>1||0===t[1])&&(t[2]>1||0===t[2])&&(!t[3]||t[3]>1))}(t)?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:255,o&&(r[0]/=255,r[1]/=255,r[2]/=255,r[3]/=255),r):(o?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:1):(r[0]=a(Math.floor(255*t[0]),0,255),r[1]=a(Math.floor(255*t[1]),0,255),r[2]=a(Math.floor(255*t[2]),0,255),r[3]=null==t[3]?255:a(Math.floor(255*t[3]),0,255)),r)}},{clamp:117,"color-rgba":124,dtype:171}],123:[function(t,e,r){(function(r){"use strict";var n=t("color-name"),a=t("is-plain-obj"),i=t("defined");e.exports=function(t){var e,s,l=[],c=1;if("string"==typeof t)if(n[t])l=n[t].slice(),s="rgb";else if("transparent"===t)c=0,s="rgb",l=[0,0,0];else if(/^#[A-Fa-f0-9]+$/.test(t)){var u=t.slice(1),h=u.length,f=h<=4;c=1,f?(l=[parseInt(u[0]+u[0],16),parseInt(u[1]+u[1],16),parseInt(u[2]+u[2],16)],4===h&&(c=parseInt(u[3]+u[3],16)/255)):(l=[parseInt(u[0]+u[1],16),parseInt(u[2]+u[3],16),parseInt(u[4]+u[5],16)],8===h&&(c=parseInt(u[6]+u[7],16)/255)),l[0]||(l[0]=0),l[1]||(l[1]=0),l[2]||(l[2]=0),s="rgb"}else if(e=/^((?:rgb|hs[lvb]|hwb|cmyk?|xy[zy]|gray|lab|lchu?v?|[ly]uv|lms)a?)\s*\(([^\)]*)\)/.exec(t)){var p=e[1],d="rgb"===p,u=p.replace(/a$/,"");s=u;var h="cmyk"===u?4:"gray"===u?1:3;l=e[2].trim().split(/\s*,\s*/).map(function(t,e){if(/%$/.test(t))return e===h?parseFloat(t)/100:"rgb"===u?255*parseFloat(t)/100:parseFloat(t);if("h"===u[e]){if(/deg$/.test(t))return parseFloat(t);if(void 0!==o[t])return o[t]}return parseFloat(t)}),p===u&&l.push(1),c=d?1:void 0===l[h]?1:l[h],l=l.slice(0,h)}else t.length>10&&/[0-9](?:\s|\/)/.test(t)&&(l=t.match(/([0-9]+)/g).map(function(t){return parseFloat(t)}),s=t.match(/([a-z])/gi).join("").toLowerCase());else if(isNaN(t))if(a(t)){var g=i(t.r,t.red,t.R,null);null!==g?(s="rgb",l=[g,i(t.g,t.green,t.G),i(t.b,t.blue,t.B)]):(s="hsl",l=[i(t.h,t.hue,t.H),i(t.s,t.saturation,t.S),i(t.l,t.lightness,t.L,t.b,t.brightness)]),c=i(t.a,t.alpha,t.opacity,1),null!=t.opacity&&(c/=100)}else(Array.isArray(t)||r.ArrayBuffer&&ArrayBuffer.isView&&ArrayBuffer.isView(t))&&(l=[t[0],t[1],t[2]],s="rgb",c=4===t.length?t[3]:1);else s="rgb",l=[t>>>16,(65280&t)>>>8,255&t];return{space:s,values:l,alpha:c}};var o={red:0,orange:60,yellow:120,green:180,blue:240,purple:300}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"color-name":121,defined:166,"is-plain-obj":423}],124:[function(t,e,r){"use strict";var n=t("color-parse"),a=t("color-space/hsl"),i=t("clamp");e.exports=function(t){var e,r=n(t);return r.space?((e=Array(3))[0]=i(r.values[0],0,255),e[1]=i(r.values[1],0,255),e[2]=i(r.values[2],0,255),"h"===r.space[0]&&(e=a.rgb(e)),e.push(i(r.alpha,0,1)),e):[]}},{clamp:117,"color-parse":123,"color-space/hsl":125}],125:[function(t,e,r){"use strict";var n=t("./rgb");e.exports={name:"hsl",min:[0,0,0],max:[360,100,100],channel:["hue","saturation","lightness"],alias:["HSL"],rgb:function(t){var e,r,n,a,i,o=t[0]/360,s=t[1]/100,l=t[2]/100;if(0===s)return[i=255*l,i,i];e=2*l-(r=l<.5?l*(1+s):l+s-l*s),a=[0,0,0];for(var c=0;c<3;c++)(n=o+1/3*-(c-1))<0?n++:n>1&&n--,i=6*n<1?e+6*(r-e)*n:2*n<1?r:3*n<2?e+(r-e)*(2/3-n)*6:e,a[c]=255*i;return a}},n.hsl=function(t){var e,r,n=t[0]/255,a=t[1]/255,i=t[2]/255,o=Math.min(n,a,i),s=Math.max(n,a,i),l=s-o;return s===o?e=0:n===s?e=(a-i)/l:a===s?e=2+(i-n)/l:i===s&&(e=4+(n-a)/l),(e=Math.min(60*e,360))<0&&(e+=360),r=(o+s)/2,[e,100*(s===o?0:r<=.5?l/(s+o):l/(2-s-o)),100*r]}},{"./rgb":126}],126:[function(t,e,r){"use strict";e.exports={name:"rgb",min:[0,0,0],max:[255,255,255],channel:["red","green","blue"],alias:["RGB"]}},{}],127:[function(t,e,r){e.exports={jet:[{index:0,rgb:[0,0,131]},{index:.125,rgb:[0,60,170]},{index:.375,rgb:[5,255,255]},{index:.625,rgb:[255,255,0]},{index:.875,rgb:[250,0,0]},{index:1,rgb:[128,0,0]}],hsv:[{index:0,rgb:[255,0,0]},{index:.169,rgb:[253,255,2]},{index:.173,rgb:[247,255,2]},{index:.337,rgb:[0,252,4]},{index:.341,rgb:[0,252,10]},{index:.506,rgb:[1,249,255]},{index:.671,rgb:[2,0,253]},{index:.675,rgb:[8,0,253]},{index:.839,rgb:[255,0,251]},{index:.843,rgb:[255,0,245]},{index:1,rgb:[255,0,6]}],hot:[{index:0,rgb:[0,0,0]},{index:.3,rgb:[230,0,0]},{index:.6,rgb:[255,210,0]},{index:1,rgb:[255,255,255]}],cool:[{index:0,rgb:[0,255,255]},{index:1,rgb:[255,0,255]}],spring:[{index:0,rgb:[255,0,255]},{index:1,rgb:[255,255,0]}],summer:[{index:0,rgb:[0,128,102]},{index:1,rgb:[255,255,102]}],autumn:[{index:0,rgb:[255,0,0]},{index:1,rgb:[255,255,0]}],winter:[{index:0,rgb:[0,0,255]},{index:1,rgb:[0,255,128]}],bone:[{index:0,rgb:[0,0,0]},{index:.376,rgb:[84,84,116]},{index:.753,rgb:[169,200,200]},{index:1,rgb:[255,255,255]}],copper:[{index:0,rgb:[0,0,0]},{index:.804,rgb:[255,160,102]},{index:1,rgb:[255,199,127]}],greys:[{index:0,rgb:[0,0,0]},{index:1,rgb:[255,255,255]}],yignbu:[{index:0,rgb:[8,29,88]},{index:.125,rgb:[37,52,148]},{index:.25,rgb:[34,94,168]},{index:.375,rgb:[29,145,192]},{index:.5,rgb:[65,182,196]},{index:.625,rgb:[127,205,187]},{index:.75,rgb:[199,233,180]},{index:.875,rgb:[237,248,217]},{index:1,rgb:[255,255,217]}],greens:[{index:0,rgb:[0,68,27]},{index:.125,rgb:[0,109,44]},{index:.25,rgb:[35,139,69]},{index:.375,rgb:[65,171,93]},{index:.5,rgb:[116,196,118]},{index:.625,rgb:[161,217,155]},{index:.75,rgb:[199,233,192]},{index:.875,rgb:[229,245,224]},{index:1,rgb:[247,252,245]}],yiorrd:[{index:0,rgb:[128,0,38]},{index:.125,rgb:[189,0,38]},{index:.25,rgb:[227,26,28]},{index:.375,rgb:[252,78,42]},{index:.5,rgb:[253,141,60]},{index:.625,rgb:[254,178,76]},{index:.75,rgb:[254,217,118]},{index:.875,rgb:[255,237,160]},{index:1,rgb:[255,255,204]}],bluered:[{index:0,rgb:[0,0,255]},{index:1,rgb:[255,0,0]}],rdbu:[{index:0,rgb:[5,10,172]},{index:.35,rgb:[106,137,247]},{index:.5,rgb:[190,190,190]},{index:.6,rgb:[220,170,132]},{index:.7,rgb:[230,145,90]},{index:1,rgb:[178,10,28]}],picnic:[{index:0,rgb:[0,0,255]},{index:.1,rgb:[51,153,255]},{index:.2,rgb:[102,204,255]},{index:.3,rgb:[153,204,255]},{index:.4,rgb:[204,204,255]},{index:.5,rgb:[255,255,255]},{index:.6,rgb:[255,204,255]},{index:.7,rgb:[255,153,255]},{index:.8,rgb:[255,102,204]},{index:.9,rgb:[255,102,102]},{index:1,rgb:[255,0,0]}],rainbow:[{index:0,rgb:[150,0,90]},{index:.125,rgb:[0,0,200]},{index:.25,rgb:[0,25,255]},{index:.375,rgb:[0,152,255]},{index:.5,rgb:[44,255,150]},{index:.625,rgb:[151,255,0]},{index:.75,rgb:[255,234,0]},{index:.875,rgb:[255,111,0]},{index:1,rgb:[255,0,0]}],portland:[{index:0,rgb:[12,51,131]},{index:.25,rgb:[10,136,186]},{index:.5,rgb:[242,211,56]},{index:.75,rgb:[242,143,56]},{index:1,rgb:[217,30,30]}],blackbody:[{index:0,rgb:[0,0,0]},{index:.2,rgb:[230,0,0]},{index:.4,rgb:[230,210,0]},{index:.7,rgb:[255,255,255]},{index:1,rgb:[160,200,255]}],earth:[{index:0,rgb:[0,0,130]},{index:.1,rgb:[0,180,180]},{index:.2,rgb:[40,210,40]},{index:.4,rgb:[230,230,50]},{index:.6,rgb:[120,70,20]},{index:1,rgb:[255,255,255]}],electric:[{index:0,rgb:[0,0,0]},{index:.15,rgb:[30,0,100]},{index:.4,rgb:[120,0,100]},{index:.6,rgb:[160,90,0]},{index:.8,rgb:[230,200,0]},{index:1,rgb:[255,250,220]}],alpha:[{index:0,rgb:[255,255,255,0]},{index:1,rgb:[255,255,255,1]}],viridis:[{index:0,rgb:[68,1,84]},{index:.13,rgb:[71,44,122]},{index:.25,rgb:[59,81,139]},{index:.38,rgb:[44,113,142]},{index:.5,rgb:[33,144,141]},{index:.63,rgb:[39,173,129]},{index:.75,rgb:[92,200,99]},{index:.88,rgb:[170,220,50]},{index:1,rgb:[253,231,37]}],inferno:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[31,12,72]},{index:.25,rgb:[85,15,109]},{index:.38,rgb:[136,34,106]},{index:.5,rgb:[186,54,85]},{index:.63,rgb:[227,89,51]},{index:.75,rgb:[249,140,10]},{index:.88,rgb:[249,201,50]},{index:1,rgb:[252,255,164]}],magma:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[28,16,68]},{index:.25,rgb:[79,18,123]},{index:.38,rgb:[129,37,129]},{index:.5,rgb:[181,54,122]},{index:.63,rgb:[229,80,100]},{index:.75,rgb:[251,135,97]},{index:.88,rgb:[254,194,135]},{index:1,rgb:[252,253,191]}],plasma:[{index:0,rgb:[13,8,135]},{index:.13,rgb:[75,3,161]},{index:.25,rgb:[125,3,168]},{index:.38,rgb:[168,34,150]},{index:.5,rgb:[203,70,121]},{index:.63,rgb:[229,107,93]},{index:.75,rgb:[248,148,65]},{index:.88,rgb:[253,195,40]},{index:1,rgb:[240,249,33]}],warm:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[172,0,187]},{index:.25,rgb:[219,0,170]},{index:.38,rgb:[255,0,130]},{index:.5,rgb:[255,63,74]},{index:.63,rgb:[255,123,0]},{index:.75,rgb:[234,176,0]},{index:.88,rgb:[190,228,0]},{index:1,rgb:[147,255,0]}],cool:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[116,0,218]},{index:.25,rgb:[98,74,237]},{index:.38,rgb:[68,146,231]},{index:.5,rgb:[0,204,197]},{index:.63,rgb:[0,247,146]},{index:.75,rgb:[0,255,88]},{index:.88,rgb:[40,255,8]},{index:1,rgb:[147,255,0]}],"rainbow-soft":[{index:0,rgb:[125,0,179]},{index:.1,rgb:[199,0,180]},{index:.2,rgb:[255,0,121]},{index:.3,rgb:[255,108,0]},{index:.4,rgb:[222,194,0]},{index:.5,rgb:[150,255,0]},{index:.6,rgb:[0,255,55]},{index:.7,rgb:[0,246,150]},{index:.8,rgb:[50,167,222]},{index:.9,rgb:[103,51,235]},{index:1,rgb:[124,0,186]}],bathymetry:[{index:0,rgb:[40,26,44]},{index:.13,rgb:[59,49,90]},{index:.25,rgb:[64,76,139]},{index:.38,rgb:[63,110,151]},{index:.5,rgb:[72,142,158]},{index:.63,rgb:[85,174,163]},{index:.75,rgb:[120,206,163]},{index:.88,rgb:[187,230,172]},{index:1,rgb:[253,254,204]}],cdom:[{index:0,rgb:[47,15,62]},{index:.13,rgb:[87,23,86]},{index:.25,rgb:[130,28,99]},{index:.38,rgb:[171,41,96]},{index:.5,rgb:[206,67,86]},{index:.63,rgb:[230,106,84]},{index:.75,rgb:[242,149,103]},{index:.88,rgb:[249,193,135]},{index:1,rgb:[254,237,176]}],chlorophyll:[{index:0,rgb:[18,36,20]},{index:.13,rgb:[25,63,41]},{index:.25,rgb:[24,91,59]},{index:.38,rgb:[13,119,72]},{index:.5,rgb:[18,148,80]},{index:.63,rgb:[80,173,89]},{index:.75,rgb:[132,196,122]},{index:.88,rgb:[175,221,162]},{index:1,rgb:[215,249,208]}],density:[{index:0,rgb:[54,14,36]},{index:.13,rgb:[89,23,80]},{index:.25,rgb:[110,45,132]},{index:.38,rgb:[120,77,178]},{index:.5,rgb:[120,113,213]},{index:.63,rgb:[115,151,228]},{index:.75,rgb:[134,185,227]},{index:.88,rgb:[177,214,227]},{index:1,rgb:[230,241,241]}],"freesurface-blue":[{index:0,rgb:[30,4,110]},{index:.13,rgb:[47,14,176]},{index:.25,rgb:[41,45,236]},{index:.38,rgb:[25,99,212]},{index:.5,rgb:[68,131,200]},{index:.63,rgb:[114,156,197]},{index:.75,rgb:[157,181,203]},{index:.88,rgb:[200,208,216]},{index:1,rgb:[241,237,236]}],"freesurface-red":[{index:0,rgb:[60,9,18]},{index:.13,rgb:[100,17,27]},{index:.25,rgb:[142,20,29]},{index:.38,rgb:[177,43,27]},{index:.5,rgb:[192,87,63]},{index:.63,rgb:[205,125,105]},{index:.75,rgb:[216,162,148]},{index:.88,rgb:[227,199,193]},{index:1,rgb:[241,237,236]}],oxygen:[{index:0,rgb:[64,5,5]},{index:.13,rgb:[106,6,15]},{index:.25,rgb:[144,26,7]},{index:.38,rgb:[168,64,3]},{index:.5,rgb:[188,100,4]},{index:.63,rgb:[206,136,11]},{index:.75,rgb:[220,174,25]},{index:.88,rgb:[231,215,44]},{index:1,rgb:[248,254,105]}],par:[{index:0,rgb:[51,20,24]},{index:.13,rgb:[90,32,35]},{index:.25,rgb:[129,44,34]},{index:.38,rgb:[159,68,25]},{index:.5,rgb:[182,99,19]},{index:.63,rgb:[199,134,22]},{index:.75,rgb:[212,171,35]},{index:.88,rgb:[221,210,54]},{index:1,rgb:[225,253,75]}],phase:[{index:0,rgb:[145,105,18]},{index:.13,rgb:[184,71,38]},{index:.25,rgb:[186,58,115]},{index:.38,rgb:[160,71,185]},{index:.5,rgb:[110,97,218]},{index:.63,rgb:[50,123,164]},{index:.75,rgb:[31,131,110]},{index:.88,rgb:[77,129,34]},{index:1,rgb:[145,105,18]}],salinity:[{index:0,rgb:[42,24,108]},{index:.13,rgb:[33,50,162]},{index:.25,rgb:[15,90,145]},{index:.38,rgb:[40,118,137]},{index:.5,rgb:[59,146,135]},{index:.63,rgb:[79,175,126]},{index:.75,rgb:[120,203,104]},{index:.88,rgb:[193,221,100]},{index:1,rgb:[253,239,154]}],temperature:[{index:0,rgb:[4,35,51]},{index:.13,rgb:[23,51,122]},{index:.25,rgb:[85,59,157]},{index:.38,rgb:[129,79,143]},{index:.5,rgb:[175,95,130]},{index:.63,rgb:[222,112,101]},{index:.75,rgb:[249,146,66]},{index:.88,rgb:[249,196,65]},{index:1,rgb:[232,250,91]}],turbidity:[{index:0,rgb:[34,31,27]},{index:.13,rgb:[65,50,41]},{index:.25,rgb:[98,69,52]},{index:.38,rgb:[131,89,57]},{index:.5,rgb:[161,112,59]},{index:.63,rgb:[185,140,66]},{index:.75,rgb:[202,174,88]},{index:.88,rgb:[216,209,126]},{index:1,rgb:[233,246,171]}],"velocity-blue":[{index:0,rgb:[17,32,64]},{index:.13,rgb:[35,52,116]},{index:.25,rgb:[29,81,156]},{index:.38,rgb:[31,113,162]},{index:.5,rgb:[50,144,169]},{index:.63,rgb:[87,173,176]},{index:.75,rgb:[149,196,189]},{index:.88,rgb:[203,221,211]},{index:1,rgb:[254,251,230]}],"velocity-green":[{index:0,rgb:[23,35,19]},{index:.13,rgb:[24,64,38]},{index:.25,rgb:[11,95,45]},{index:.38,rgb:[39,123,35]},{index:.5,rgb:[95,146,12]},{index:.63,rgb:[152,165,18]},{index:.75,rgb:[201,186,69]},{index:.88,rgb:[233,216,137]},{index:1,rgb:[255,253,205]}],cubehelix:[{index:0,rgb:[0,0,0]},{index:.07,rgb:[22,5,59]},{index:.13,rgb:[60,4,105]},{index:.2,rgb:[109,1,135]},{index:.27,rgb:[161,0,147]},{index:.33,rgb:[210,2,142]},{index:.4,rgb:[251,11,123]},{index:.47,rgb:[255,29,97]},{index:.53,rgb:[255,54,69]},{index:.6,rgb:[255,85,46]},{index:.67,rgb:[255,120,34]},{index:.73,rgb:[255,157,37]},{index:.8,rgb:[241,191,57]},{index:.87,rgb:[224,220,93]},{index:.93,rgb:[218,241,142]},{index:1,rgb:[227,253,198]}]}},{}],128:[function(t,e,r){"use strict";var n=t("./colorScale"),a=t("lerp");function i(t){return[t[0]/255,t[1]/255,t[2]/255,t[3]]}function o(t){for(var e,r="#",n=0;n<3;++n)r+=("00"+(e=(e=t[n]).toString(16))).substr(e.length);return r}function s(t){return"rgba("+t.join(",")+")"}e.exports=function(t){var e,r,l,c,u,h,f,p,d,g;t||(t={});p=(t.nshades||72)-1,f=t.format||"hex",(h=t.colormap)||(h="jet");if("string"==typeof h){if(h=h.toLowerCase(),!n[h])throw Error(h+" not a supported colorscale");u=n[h]}else{if(!Array.isArray(h))throw Error("unsupported colormap option",h);u=h.slice()}if(u.length>p+1)throw new Error(h+" map requires nshades to be at least size "+u.length);d=Array.isArray(t.alpha)?2!==t.alpha.length?[1,1]:t.alpha.slice():"number"==typeof t.alpha?[t.alpha,t.alpha]:[1,1];e=u.map(function(t){return Math.round(t.index*p)}),d[0]=Math.min(Math.max(d[0],0),1),d[1]=Math.min(Math.max(d[1],0),1);var v=u.map(function(t,e){var r=u[e].index,n=u[e].rgb.slice();return 4===n.length&&n[3]>=0&&n[3]<=1?n:(n[3]=d[0]+(d[1]-d[0])*r,n)}),m=[];for(g=0;g0?-1:l(t,e,i)?-1:1:0===s?c>0?1:l(t,e,r)?1:-1:a(c-s)}var f=n(t,e,r);if(f>0)return o>0&&n(t,e,i)>0?1:-1;if(f<0)return o>0||n(t,e,i)>0?1:-1;var p=n(t,e,i);return p>0?1:l(t,e,r)?1:-1};var n=t("robust-orientation"),a=t("signum"),i=t("two-sum"),o=t("robust-product"),s=t("robust-sum");function l(t,e,r){var n=i(t[0],-e[0]),a=i(t[1],-e[1]),l=i(r[0],-e[0]),c=i(r[1],-e[1]),u=s(o(n,l),o(a,c));return u[u.length-1]>=0}},{"robust-orientation":508,"robust-product":509,"robust-sum":513,signum:514,"two-sum":542}],130:[function(t,e,r){e.exports=function(t,e){var r=t.length,i=t.length-e.length;if(i)return i;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:return t[0]+t[1]-e[0]-e[1]||n(t[0],t[1])-n(e[0],e[1]);case 3:var o=t[0]+t[1],s=e[0]+e[1];if(i=o+t[2]-(s+e[2]))return i;var l=n(t[0],t[1]),c=n(e[0],e[1]);return n(l,t[2])-n(c,e[2])||n(l+t[2],o)-n(c+e[2],s);case 4:var u=t[0],h=t[1],f=t[2],p=t[3],d=e[0],g=e[1],v=e[2],m=e[3];return u+h+f+p-(d+g+v+m)||n(u,h,f,p)-n(d,g,v,m,d)||n(u+h,u+f,u+p,h+f,h+p,f+p)-n(d+g,d+v,d+m,g+v,g+m,v+m)||n(u+h+f,u+h+p,u+f+p,h+f+p)-n(d+g+v,d+g+m,d+v+m,g+v+m);default:for(var y=t.slice().sort(a),x=e.slice().sort(a),b=0;bt[r][0]&&(r=n);return er?[[r],[e]]:[[e]]}},{}],134:[function(t,e,r){"use strict";e.exports=function(t){var e=n(t),r=e.length;if(r<=2)return[];for(var a=new Array(r),i=e[r-1],o=0;o=e[l]&&(s+=1);i[o]=s}}return t}(o,r)}};var n=t("incremental-convex-hull"),a=t("affine-hull")},{"affine-hull":65,"incremental-convex-hull":414}],136:[function(t,e,r){e.exports={AFG:"afghan",ALA:"\\b\\wland",ALB:"albania",DZA:"algeria",ASM:"^(?=.*americ).*samoa",AND:"andorra",AGO:"angola",AIA:"anguill?a",ATA:"antarctica",ATG:"antigua",ARG:"argentin",ARM:"armenia",ABW:"^(?!.*bonaire).*\\baruba",AUS:"australia",AUT:"^(?!.*hungary).*austria|\\baustri.*\\bemp",AZE:"azerbaijan",BHS:"bahamas",BHR:"bahrain",BGD:"bangladesh|^(?=.*east).*paki?stan",BRB:"barbados",BLR:"belarus|byelo",BEL:"^(?!.*luxem).*belgium",BLZ:"belize|^(?=.*british).*honduras",BEN:"benin|dahome",BMU:"bermuda",BTN:"bhutan",BOL:"bolivia",BES:"^(?=.*bonaire).*eustatius|^(?=.*carib).*netherlands|\\bbes.?islands",BIH:"herzegovina|bosnia",BWA:"botswana|bechuana",BVT:"bouvet",BRA:"brazil",IOT:"british.?indian.?ocean",BRN:"brunei",BGR:"bulgaria",BFA:"burkina|\\bfaso|upper.?volta",BDI:"burundi",CPV:"verde",KHM:"cambodia|kampuchea|khmer",CMR:"cameroon",CAN:"canada",CYM:"cayman",CAF:"\\bcentral.african.republic",TCD:"\\bchad",CHL:"\\bchile",CHN:"^(?!.*\\bmac)(?!.*\\bhong)(?!.*\\btai)(?!.*\\brep).*china|^(?=.*peo)(?=.*rep).*china",CXR:"christmas",CCK:"\\bcocos|keeling",COL:"colombia",COM:"comoro",COG:"^(?!.*\\bdem)(?!.*\\bd[\\.]?r)(?!.*kinshasa)(?!.*zaire)(?!.*belg)(?!.*l.opoldville)(?!.*free).*\\bcongo",COK:"\\bcook",CRI:"costa.?rica",CIV:"ivoire|ivory",HRV:"croatia",CUB:"\\bcuba",CUW:"^(?!.*bonaire).*\\bcura(c|\xe7)ao",CYP:"cyprus",CSK:"czechoslovakia",CZE:"^(?=.*rep).*czech|czechia|bohemia",COD:"\\bdem.*congo|congo.*\\bdem|congo.*\\bd[\\.]?r|\\bd[\\.]?r.*congo|belgian.?congo|congo.?free.?state|kinshasa|zaire|l.opoldville|drc|droc|rdc",DNK:"denmark",DJI:"djibouti",DMA:"dominica(?!n)",DOM:"dominican.rep",ECU:"ecuador",EGY:"egypt",SLV:"el.?salvador",GNQ:"guine.*eq|eq.*guine|^(?=.*span).*guinea",ERI:"eritrea",EST:"estonia",ETH:"ethiopia|abyssinia",FLK:"falkland|malvinas",FRO:"faroe|faeroe",FJI:"fiji",FIN:"finland",FRA:"^(?!.*\\bdep)(?!.*martinique).*france|french.?republic|\\bgaul",GUF:"^(?=.*french).*guiana",PYF:"french.?polynesia|tahiti",ATF:"french.?southern",GAB:"gabon",GMB:"gambia",GEO:"^(?!.*south).*georgia",DDR:"german.?democratic.?republic|democratic.?republic.*germany|east.germany",DEU:"^(?!.*east).*germany|^(?=.*\\bfed.*\\brep).*german",GHA:"ghana|gold.?coast",GIB:"gibraltar",GRC:"greece|hellenic|hellas",GRL:"greenland",GRD:"grenada",GLP:"guadeloupe",GUM:"\\bguam",GTM:"guatemala",GGY:"guernsey",GIN:"^(?!.*eq)(?!.*span)(?!.*bissau)(?!.*portu)(?!.*new).*guinea",GNB:"bissau|^(?=.*portu).*guinea",GUY:"guyana|british.?guiana",HTI:"haiti",HMD:"heard.*mcdonald",VAT:"holy.?see|vatican|papal.?st",HND:"^(?!.*brit).*honduras",HKG:"hong.?kong",HUN:"^(?!.*austr).*hungary",ISL:"iceland",IND:"india(?!.*ocea)",IDN:"indonesia",IRN:"\\biran|persia",IRQ:"\\biraq|mesopotamia",IRL:"(^ireland)|(^republic.*ireland)",IMN:"^(?=.*isle).*\\bman",ISR:"israel",ITA:"italy",JAM:"jamaica",JPN:"japan",JEY:"jersey",JOR:"jordan",KAZ:"kazak",KEN:"kenya|british.?east.?africa|east.?africa.?prot",KIR:"kiribati",PRK:"^(?=.*democrat|people|north|d.*p.*.r).*\\bkorea|dprk|korea.*(d.*p.*r)",KWT:"kuwait",KGZ:"kyrgyz|kirghiz",LAO:"\\blaos?\\b",LVA:"latvia",LBN:"lebanon",LSO:"lesotho|basuto",LBR:"liberia",LBY:"libya",LIE:"liechtenstein",LTU:"lithuania",LUX:"^(?!.*belg).*luxem",MAC:"maca(o|u)",MDG:"madagascar|malagasy",MWI:"malawi|nyasa",MYS:"malaysia",MDV:"maldive",MLI:"\\bmali\\b",MLT:"\\bmalta",MHL:"marshall",MTQ:"martinique",MRT:"mauritania",MUS:"mauritius",MYT:"\\bmayotte",MEX:"\\bmexic",FSM:"fed.*micronesia|micronesia.*fed",MCO:"monaco",MNG:"mongolia",MNE:"^(?!.*serbia).*montenegro",MSR:"montserrat",MAR:"morocco|\\bmaroc",MOZ:"mozambique",MMR:"myanmar|burma",NAM:"namibia",NRU:"nauru",NPL:"nepal",NLD:"^(?!.*\\bant)(?!.*\\bcarib).*netherlands",ANT:"^(?=.*\\bant).*(nether|dutch)",NCL:"new.?caledonia",NZL:"new.?zealand",NIC:"nicaragua",NER:"\\bniger(?!ia)",NGA:"nigeria",NIU:"niue",NFK:"norfolk",MNP:"mariana",NOR:"norway",OMN:"\\boman|trucial",PAK:"^(?!.*east).*paki?stan",PLW:"palau",PSE:"palestin|\\bgaza|west.?bank",PAN:"panama",PNG:"papua|new.?guinea",PRY:"paraguay",PER:"peru",PHL:"philippines",PCN:"pitcairn",POL:"poland",PRT:"portugal",PRI:"puerto.?rico",QAT:"qatar",KOR:"^(?!.*d.*p.*r)(?!.*democrat)(?!.*people)(?!.*north).*\\bkorea(?!.*d.*p.*r)",MDA:"moldov|b(a|e)ssarabia",REU:"r(e|\xe9)union",ROU:"r(o|u|ou)mania",RUS:"\\brussia|soviet.?union|u\\.?s\\.?s\\.?r|socialist.?republics",RWA:"rwanda",BLM:"barth(e|\xe9)lemy",SHN:"helena",KNA:"kitts|\\bnevis",LCA:"\\blucia",MAF:"^(?=.*collectivity).*martin|^(?=.*france).*martin(?!ique)|^(?=.*french).*martin(?!ique)",SPM:"miquelon",VCT:"vincent",WSM:"^(?!.*amer).*samoa",SMR:"san.?marino",STP:"\\bs(a|\xe3)o.?tom(e|\xe9)",SAU:"\\bsa\\w*.?arabia",SEN:"senegal",SRB:"^(?!.*monte).*serbia",SYC:"seychell",SLE:"sierra",SGP:"singapore",SXM:"^(?!.*martin)(?!.*saba).*maarten",SVK:"^(?!.*cze).*slovak",SVN:"slovenia",SLB:"solomon",SOM:"somali",ZAF:"south.africa|s\\\\..?africa",SGS:"south.?georgia|sandwich",SSD:"\\bs\\w*.?sudan",ESP:"spain",LKA:"sri.?lanka|ceylon",SDN:"^(?!.*\\bs(?!u)).*sudan",SUR:"surinam|dutch.?guiana",SJM:"svalbard",SWZ:"swaziland",SWE:"sweden",CHE:"switz|swiss",SYR:"syria",TWN:"taiwan|taipei|formosa|^(?!.*peo)(?=.*rep).*china",TJK:"tajik",THA:"thailand|\\bsiam",MKD:"macedonia|fyrom",TLS:"^(?=.*leste).*timor|^(?=.*east).*timor",TGO:"togo",TKL:"tokelau",TON:"tonga",TTO:"trinidad|tobago",TUN:"tunisia",TUR:"turkey",TKM:"turkmen",TCA:"turks",TUV:"tuvalu",UGA:"uganda",UKR:"ukrain",ARE:"emirates|^u\\.?a\\.?e\\.?$|united.?arab.?em",GBR:"united.?kingdom|britain|^u\\.?k\\.?$",TZA:"tanzania",USA:"united.?states\\b(?!.*islands)|\\bu\\.?s\\.?a\\.?\\b|^\\s*u\\.?s\\.?\\b(?!.*islands)",UMI:"minor.?outlying.?is",URY:"uruguay",UZB:"uzbek",VUT:"vanuatu|new.?hebrides",VEN:"venezuela",VNM:"^(?!.*republic).*viet.?nam|^(?=.*socialist).*viet.?nam",VGB:"^(?=.*\\bu\\.?\\s?k).*virgin|^(?=.*brit).*virgin|^(?=.*kingdom).*virgin",VIR:"^(?=.*\\bu\\.?\\s?s).*virgin|^(?=.*states).*virgin",WLF:"futuna|wallis",ESH:"western.sahara",YEM:"^(?!.*arab)(?!.*north)(?!.*sana)(?!.*peo)(?!.*dem)(?!.*south)(?!.*aden)(?!.*\\bp\\.?d\\.?r).*yemen",YMD:"^(?=.*peo).*yemen|^(?!.*rep)(?=.*dem).*yemen|^(?=.*south).*yemen|^(?=.*aden).*yemen|^(?=.*\\bp\\.?d\\.?r).*yemen",YUG:"yugoslavia",ZMB:"zambia|northern.?rhodesia",EAZ:"zanzibar",ZWE:"zimbabwe|^(?!.*northern).*rhodesia"}},{}],137:[function(t,e,r){e.exports=["xx-small","x-small","small","medium","large","x-large","xx-large","larger","smaller"]},{}],138:[function(t,e,r){e.exports=["normal","condensed","semi-condensed","extra-condensed","ultra-condensed","expanded","semi-expanded","extra-expanded","ultra-expanded"]},{}],139:[function(t,e,r){e.exports=["normal","italic","oblique"]},{}],140:[function(t,e,r){e.exports=["normal","bold","bolder","lighter","100","200","300","400","500","600","700","800","900"]},{}],141:[function(t,e,r){"use strict";e.exports={parse:t("./parse"),stringify:t("./stringify")}},{"./parse":143,"./stringify":144}],142:[function(t,e,r){"use strict";var n=t("css-font-size-keywords");e.exports={isSize:function(t){return/^[\d\.]/.test(t)||-1!==t.indexOf("/")||-1!==n.indexOf(t)}}},{"css-font-size-keywords":137}],143:[function(t,e,r){"use strict";var n=t("unquote"),a=t("css-global-keywords"),i=t("css-system-font-keywords"),o=t("css-font-weight-keywords"),s=t("css-font-style-keywords"),l=t("css-font-stretch-keywords"),c=t("string-split-by"),u=t("./lib/util").isSize;e.exports=f;var h=f.cache={};function f(t){if("string"!=typeof t)throw new Error("Font argument must be a string.");if(h[t])return h[t];if(""===t)throw new Error("Cannot parse an empty string.");if(-1!==i.indexOf(t))return h[t]={system:t};for(var e,r={style:"normal",variant:"normal",weight:"normal",stretch:"normal",lineHeight:"normal",size:"1rem",family:["serif"]},f=c(t,/\s+/);e=f.shift();){if(-1!==a.indexOf(e))return["style","variant","weight","stretch"].forEach(function(t){r[t]=e}),h[t]=r;if(-1===s.indexOf(e))if("normal"!==e&&"small-caps"!==e)if(-1===l.indexOf(e)){if(-1===o.indexOf(e)){if(u(e)){var d=c(e,"/");if(r.size=d[0],null!=d[1]?r.lineHeight=p(d[1]):"/"===f[0]&&(f.shift(),r.lineHeight=p(f.shift())),!f.length)throw new Error("Missing required font-family.");return r.family=c(f.join(" "),/\s*,\s*/).map(n),h[t]=r}throw new Error("Unknown or unsupported font token: "+e)}r.weight=e}else r.stretch=e;else r.variant=e;else r.style=e}throw new Error("Missing required font-size.")}function p(t){var e=parseFloat(t);return e.toString()===t?e:t}},{"./lib/util":142,"css-font-stretch-keywords":138,"css-font-style-keywords":139,"css-font-weight-keywords":140,"css-global-keywords":145,"css-system-font-keywords":146,"string-split-by":527,unquote:546}],144:[function(t,e,r){"use strict";var n=t("pick-by-alias"),a=t("./lib/util").isSize,i=g(t("css-global-keywords")),o=g(t("css-system-font-keywords")),s=g(t("css-font-weight-keywords")),l=g(t("css-font-style-keywords")),c=g(t("css-font-stretch-keywords")),u={normal:1,"small-caps":1},h={serif:1,"sans-serif":1,monospace:1,cursive:1,fantasy:1,"system-ui":1},f="1rem",p="serif";function d(t,e){if(t&&!e[t]&&!i[t])throw Error("Unknown keyword `"+t+"`");return t}function g(t){for(var e={},r=0;r=0;--p)i[p]=c*t[p]+u*e[p]+h*r[p]+f*n[p];return i}return c*t+u*e+h*r+f*n},e.exports.derivative=function(t,e,r,n,a,i){var o=6*a*a-6*a,s=3*a*a-4*a+1,l=-6*a*a+6*a,c=3*a*a-2*a;if(t.length){i||(i=new Array(t.length));for(var u=t.length-1;u>=0;--u)i[u]=o*t[u]+s*e[u]+l*r[u]+c*n[u];return i}return o*t+s*e+l*r[u]+c*n}},{}],148:[function(t,e,r){"use strict";var n=t("./lib/thunk.js");function a(){this.argTypes=[],this.shimArgs=[],this.arrayArgs=[],this.arrayBlockIndices=[],this.scalarArgs=[],this.offsetArgs=[],this.offsetArgIndex=[],this.indexArgs=[],this.shapeArgs=[],this.funcName="",this.pre=null,this.body=null,this.post=null,this.debug=!1}e.exports=function(t){var e=new a;e.pre=t.pre,e.body=t.body,e.post=t.post;var r=t.args.slice(0);e.argTypes=r;for(var i=0;i0)throw new Error("cwise: pre() block may not reference array args");if(i0)throw new Error("cwise: post() block may not reference array args")}else if("scalar"===o)e.scalarArgs.push(i),e.shimArgs.push("scalar"+i);else if("index"===o){if(e.indexArgs.push(i),i0)throw new Error("cwise: pre() block may not reference array index");if(i0)throw new Error("cwise: post() block may not reference array index")}else if("shape"===o){if(e.shapeArgs.push(i),ir.length)throw new Error("cwise: Too many arguments in pre() block");if(e.body.args.length>r.length)throw new Error("cwise: Too many arguments in body() block");if(e.post.args.length>r.length)throw new Error("cwise: Too many arguments in post() block");return e.debug=!!t.printCode||!!t.debug,e.funcName=t.funcName||"cwise",e.blockSize=t.blockSize||64,n(e)}},{"./lib/thunk.js":150}],149:[function(t,e,r){"use strict";var n=t("uniq");function a(t,e,r){var n,a,i=t.length,o=e.arrayArgs.length,s=e.indexArgs.length>0,l=[],c=[],u=0,h=0;for(n=0;n0&&l.push("var "+c.join(",")),n=i-1;n>=0;--n)u=t[n],l.push(["for(i",n,"=0;i",n,"0&&l.push(["index[",h,"]-=s",h].join("")),l.push(["++index[",u,"]"].join(""))),l.push("}")}return l.join("\n")}function i(t,e,r){for(var n=t.body,a=[],i=[],o=0;o0&&(r=r&&e[n]===e[n-1])}return r?e[0]:e.join("")}e.exports=function(t,e){for(var r=e[1].length-Math.abs(t.arrayBlockIndices[0])|0,s=new Array(t.arrayArgs.length),l=new Array(t.arrayArgs.length),c=0;c0&&x.push("shape=SS.slice(0)"),t.indexArgs.length>0){var b=new Array(r);for(c=0;c0&&y.push("var "+x.join(",")),c=0;c3&&y.push(i(t.pre,t,l));var T=i(t.body,t,l),M=function(t){for(var e=0,r=t[0].length;e0,c=[],u=0;u0;){"].join("")),c.push(["if(j",u,"<",s,"){"].join("")),c.push(["s",e[u],"=j",u].join("")),c.push(["j",u,"=0"].join("")),c.push(["}else{s",e[u],"=",s].join("")),c.push(["j",u,"-=",s,"}"].join("")),l&&c.push(["index[",e[u],"]=j",u].join(""));for(u=0;u3&&y.push(i(t.post,t,l)),t.debug&&console.log("-----Generated cwise routine for ",e,":\n"+y.join("\n")+"\n----------");var A=[t.funcName||"unnamed","_cwise_loop_",s[0].join("s"),"m",M,o(l)].join("");return new Function(["function ",A,"(",m.join(","),"){",y.join("\n"),"} return ",A].join(""))()}},{uniq:545}],150:[function(t,e,r){"use strict";var n=t("./compile.js");e.exports=function(t){var e=["'use strict'","var CACHED={}"],r=[],a=t.funcName+"_cwise_thunk";e.push(["return function ",a,"(",t.shimArgs.join(","),"){"].join(""));for(var i=[],o=[],s=[["array",t.arrayArgs[0],".shape.slice(",Math.max(0,t.arrayBlockIndices[0]),t.arrayBlockIndices[0]<0?","+t.arrayBlockIndices[0]+")":")"].join("")],l=[],c=[],u=0;u0&&(l.push("array"+t.arrayArgs[0]+".shape.length===array"+h+".shape.length+"+(Math.abs(t.arrayBlockIndices[0])-Math.abs(t.arrayBlockIndices[u]))),c.push("array"+t.arrayArgs[0]+".shape[shapeIndex+"+Math.max(0,t.arrayBlockIndices[0])+"]===array"+h+".shape[shapeIndex+"+Math.max(0,t.arrayBlockIndices[u])+"]"))}for(t.arrayArgs.length>1&&(e.push("if (!("+l.join(" && ")+")) throw new Error('cwise: Arrays do not all have the same dimensionality!')"),e.push("for(var shapeIndex=array"+t.arrayArgs[0]+".shape.length-"+Math.abs(t.arrayBlockIndices[0])+"; shapeIndex--\x3e0;) {"),e.push("if (!("+c.join(" && ")+")) throw new Error('cwise: Arrays do not all have the same shape!')"),e.push("}")),u=0;ue?1:t>=e?0:NaN}function r(t){var r;return 1===t.length&&(r=t,t=function(t,n){return e(r(t),n)}),{left:function(e,r,n,a){for(null==n&&(n=0),null==a&&(a=e.length);n>>1;t(e[i],r)<0?n=i+1:a=i}return n},right:function(e,r,n,a){for(null==n&&(n=0),null==a&&(a=e.length);n>>1;t(e[i],r)>0?a=i:n=i+1}return n}}}var n=r(e),a=n.right,i=n.left;function o(t,e){return[t,e]}function s(t){return null===t?NaN:+t}function l(t,e){var r,n,a=t.length,i=0,o=-1,l=0,c=0;if(null==e)for(;++o1)return c/(i-1)}function c(t,e){var r=l(t,e);return r?Math.sqrt(r):r}function u(t,e){var r,n,a,i=t.length,o=-1;if(null==e){for(;++o=r)for(n=a=r;++or&&(n=r),a=r)for(n=a=r;++or&&(n=r),a=0?(i>=m?10:i>=y?5:i>=x?2:1)*Math.pow(10,a):-Math.pow(10,-a)/(i>=m?10:i>=y?5:i>=x?2:1)}function _(t,e,r){var n=Math.abs(e-t)/Math.max(0,r),a=Math.pow(10,Math.floor(Math.log(n)/Math.LN10)),i=n/a;return i>=m?a*=10:i>=y?a*=5:i>=x&&(a*=2),e=1)return+r(t[n-1],n-1,t);var n,a=(n-1)*e,i=Math.floor(a),o=+r(t[i],i,t);return o+(+r(t[i+1],i+1,t)-o)*(a-i)}}function T(t,e){var r,n,a=t.length,i=-1;if(null==e){for(;++i=r)for(n=r;++ir&&(n=r)}else for(;++i=r)for(n=r;++ir&&(n=r);return n}function M(t){if(!(a=t.length))return[];for(var e=-1,r=T(t,A),n=new Array(r);++et?1:e>=t?0:NaN},t.deviation=c,t.extent=u,t.histogram=function(){var t=g,e=u,r=w;function n(n){var i,o,s=n.length,l=new Array(s);for(i=0;ih;)f.pop(),--p;var d,g=new Array(p+1);for(i=0;i<=p;++i)(d=g[i]=[]).x0=i>0?f[i-1]:u,d.x1=i=r)for(n=r;++in&&(n=r)}else for(;++i=r)for(n=r;++in&&(n=r);return n},t.mean=function(t,e){var r,n=t.length,a=n,i=-1,o=0;if(null==e)for(;++i=0;)for(e=(n=t[a]).length;--e>=0;)r[--o]=n[e];return r},t.min=T,t.pairs=function(t,e){null==e&&(e=o);for(var r=0,n=t.length-1,a=t[0],i=new Array(n<0?0:n);r0)return[t];if((n=e0)for(t=Math.ceil(t/o),e=Math.floor(e/o),i=new Array(a=Math.ceil(e-t+1));++s=l.length)return null!=t&&n.sort(t),null!=e?e(n):n;for(var s,c,h,f=-1,p=n.length,d=l[a++],g=r(),v=i();++fl.length)return r;var a,i=c[n-1];return null!=e&&n>=l.length?a=r.entries():(a=[],r.each(function(e,r){a.push({key:r,values:t(e,n)})})),null!=i?a.sort(function(t,e){return i(t.key,e.key)}):a}(u(t,0,i,o),0)},key:function(t){return l.push(t),s},sortKeys:function(t){return c[l.length-1]=t,s},sortValues:function(e){return t=e,s},rollup:function(t){return e=t,s}}},t.set=c,t.map=r,t.keys=function(t){var e=[];for(var r in t)e.push(r);return e},t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],156:[function(t,e,r){var n;n=this,function(t){"use strict";function e(t,e,r){t.prototype=e.prototype=r,r.constructor=t}function r(t,e){var r=Object.create(t.prototype);for(var n in e)r[n]=e[n];return r}function n(){}var a="\\s*([+-]?\\d+)\\s*",i="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",o="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",s=/^#([0-9a-f]{3,8})$/,l=new RegExp("^rgb\\("+[a,a,a]+"\\)$"),c=new RegExp("^rgb\\("+[o,o,o]+"\\)$"),u=new RegExp("^rgba\\("+[a,a,a,i]+"\\)$"),h=new RegExp("^rgba\\("+[o,o,o,i]+"\\)$"),f=new RegExp("^hsl\\("+[i,o,o]+"\\)$"),p=new RegExp("^hsla\\("+[i,o,o,i]+"\\)$"),d={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function g(){return this.rgb().formatHex()}function v(){return this.rgb().formatRgb()}function m(t){var e,r;return t=(t+"").trim().toLowerCase(),(e=s.exec(t))?(r=e[1].length,e=parseInt(e[1],16),6===r?y(e):3===r?new w(e>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===r?new w(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===r?new w(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=l.exec(t))?new w(e[1],e[2],e[3],1):(e=c.exec(t))?new w(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=u.exec(t))?x(e[1],e[2],e[3],e[4]):(e=h.exec(t))?x(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=f.exec(t))?A(e[1],e[2]/100,e[3]/100,1):(e=p.exec(t))?A(e[1],e[2]/100,e[3]/100,e[4]):d.hasOwnProperty(t)?y(d[t]):"transparent"===t?new w(NaN,NaN,NaN,0):null}function y(t){return new w(t>>16&255,t>>8&255,255&t,1)}function x(t,e,r,n){return n<=0&&(t=e=r=NaN),new w(t,e,r,n)}function b(t){return t instanceof n||(t=m(t)),t?new w((t=t.rgb()).r,t.g,t.b,t.opacity):new w}function _(t,e,r,n){return 1===arguments.length?b(t):new w(t,e,r,null==n?1:n)}function w(t,e,r,n){this.r=+t,this.g=+e,this.b=+r,this.opacity=+n}function k(){return"#"+M(this.r)+M(this.g)+M(this.b)}function T(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}function M(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function A(t,e,r,n){return n<=0?t=e=r=NaN:r<=0||r>=1?t=e=NaN:e<=0&&(t=NaN),new L(t,e,r,n)}function S(t){if(t instanceof L)return new L(t.h,t.s,t.l,t.opacity);if(t instanceof n||(t=m(t)),!t)return new L;if(t instanceof L)return t;var e=(t=t.rgb()).r/255,r=t.g/255,a=t.b/255,i=Math.min(e,r,a),o=Math.max(e,r,a),s=NaN,l=o-i,c=(o+i)/2;return l?(s=e===o?(r-a)/l+6*(r0&&c<1?0:s,new L(s,l,c,t.opacity)}function E(t,e,r,n){return 1===arguments.length?S(t):new L(t,e,r,null==n?1:n)}function L(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}function C(t,e,r){return 255*(t<60?e+(r-e)*t/60:t<180?r:t<240?e+(r-e)*(240-t)/60:e)}e(n,m,{copy:function(t){return Object.assign(new this.constructor,this,t)},displayable:function(){return this.rgb().displayable()},hex:g,formatHex:g,formatHsl:function(){return S(this).formatHsl()},formatRgb:v,toString:v}),e(w,_,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:k,formatHex:k,formatRgb:T,toString:T})),e(L,E,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new L(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new L(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*e,a=2*r-n;return new w(C(t>=240?t-240:t+120,a,n),C(t,a,n),C(t<120?t+240:t-120,a,n),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===t?")":", "+t+")")}}));var P=Math.PI/180,O=180/Math.PI,z=.96422,I=1,D=.82521,R=4/29,F=6/29,B=3*F*F,N=F*F*F;function j(t){if(t instanceof U)return new U(t.l,t.a,t.b,t.opacity);if(t instanceof Z)return J(t);t instanceof w||(t=b(t));var e,r,n=Y(t.r),a=Y(t.g),i=Y(t.b),o=q((.2225045*n+.7168786*a+.0606169*i)/I);return n===a&&a===i?e=r=o:(e=q((.4360747*n+.3850649*a+.1430804*i)/z),r=q((.0139322*n+.0971045*a+.7141733*i)/D)),new U(116*o-16,500*(e-o),200*(o-r),t.opacity)}function V(t,e,r,n){return 1===arguments.length?j(t):new U(t,e,r,null==n?1:n)}function U(t,e,r,n){this.l=+t,this.a=+e,this.b=+r,this.opacity=+n}function q(t){return t>N?Math.pow(t,1/3):t/B+R}function H(t){return t>F?t*t*t:B*(t-R)}function G(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Y(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function W(t){if(t instanceof Z)return new Z(t.h,t.c,t.l,t.opacity);if(t instanceof U||(t=j(t)),0===t.a&&0===t.b)return new Z(NaN,0=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:e}})),l=-1,c=s.length;if(!(arguments.length<2)){if(null!=e&&"function"!=typeof e)throw new Error("invalid callback: "+e);for(;++l0)for(var r,n,a=new Array(r),i=0;if+c||np+c||iu.index){var h=f-s.x-s.vx,v=p-s.y-s.vy,m=h*h+v*v;mt.r&&(t.r=t[e].r)}function f(){if(r){var e,a,i=r.length;for(n=new Array(i),e=0;e=c)){(t.data!==r||t.next)&&(0===h&&(d+=(h=o())*h),0===f&&(d+=(f=o())*f),d1?(null==r?u.remove(t):u.set(t,y(r)),e):u.get(t)},find:function(e,r,n){var a,i,o,s,l,c=0,u=t.length;for(null==n?n=1/0:n*=n,c=0;c1?(f.on(t,r),e):f.on(t)}}},t.forceX=function(t){var e,r,n,a=i(.1);function o(t){for(var a,i=0,o=e.length;i=0;)e+=r[n].value;else e=1;t.value=e}function i(t,e){var r,n,a,i,s,u=new c(t),h=+t.value&&(u.value=t.value),f=[u];for(null==e&&(e=o);r=f.pop();)if(h&&(r.value=+r.data.value),(a=e(r.data))&&(s=a.length))for(r.children=new Array(s),i=s-1;i>=0;--i)f.push(n=r.children[i]=new c(a[i])),n.parent=r,n.depth=r.depth+1;return u.eachBefore(l)}function o(t){return t.children}function s(t){t.data=t.data.data}function l(t){var e=0;do{t.height=e}while((t=t.parent)&&t.height<++e)}function c(t){this.data=t,this.depth=this.height=0,this.parent=null}c.prototype=i.prototype={constructor:c,count:function(){return this.eachAfter(a)},each:function(t){var e,r,n,a,i=this,o=[i];do{for(e=o.reverse(),o=[];i=e.pop();)if(t(i),r=i.children)for(n=0,a=r.length;n=0;--r)a.push(e[r]);return this},sum:function(t){return this.eachAfter(function(e){for(var r=+t(e.data)||0,n=e.children,a=n&&n.length;--a>=0;)r+=n[a].value;e.value=r})},sort:function(t){return this.eachBefore(function(e){e.children&&e.children.sort(t)})},path:function(t){for(var e=this,r=function(t,e){if(t===e)return t;var r=t.ancestors(),n=e.ancestors(),a=null;for(t=r.pop(),e=n.pop();t===e;)a=t,t=r.pop(),e=n.pop();return a}(e,t),n=[e];e!==r;)e=e.parent,n.push(e);for(var a=n.length;t!==r;)n.splice(a,0,t),t=t.parent;return n},ancestors:function(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e},descendants:function(){var t=[];return this.each(function(e){t.push(e)}),t},leaves:function(){var t=[];return this.eachBefore(function(e){e.children||t.push(e)}),t},links:function(){var t=this,e=[];return t.each(function(r){r!==t&&e.push({source:r.parent,target:r})}),e},copy:function(){return i(this).eachBefore(s)}};var u=Array.prototype.slice;function h(t){for(var e,r,n=0,a=(t=function(t){for(var e,r,n=t.length;n;)r=Math.random()*n--|0,e=t[n],t[n]=t[r],t[r]=e;return t}(u.call(t))).length,i=[];n0&&r*r>n*n+a*a}function g(t,e){for(var r=0;r(o*=o)?(n=(c+o-a)/(2*c),i=Math.sqrt(Math.max(0,o/c-n*n)),r.x=t.x-n*s-i*l,r.y=t.y-n*l+i*s):(n=(c+a-o)/(2*c),i=Math.sqrt(Math.max(0,a/c-n*n)),r.x=e.x+n*s-i*l,r.y=e.y+n*l+i*s)):(r.x=e.x+r.r,r.y=e.y)}function b(t,e){var r=t.r+e.r-1e-6,n=e.x-t.x,a=e.y-t.y;return r>0&&r*r>n*n+a*a}function _(t){var e=t._,r=t.next._,n=e.r+r.r,a=(e.x*r.r+r.x*e.r)/n,i=(e.y*r.r+r.y*e.r)/n;return a*a+i*i}function w(t){this._=t,this.next=null,this.previous=null}function k(t){if(!(a=t.length))return 0;var e,r,n,a,i,o,s,l,c,u,f;if((e=t[0]).x=0,e.y=0,!(a>1))return e.r;if(r=t[1],e.x=-r.r,r.x=e.r,r.y=0,!(a>2))return e.r+r.r;x(r,e,n=t[2]),e=new w(e),r=new w(r),n=new w(n),e.next=n.previous=r,r.next=e.previous=n,n.next=r.previous=e;t:for(s=3;sf&&(f=s),v=u*u*g,(p=Math.max(f/v,v/h))>d){u-=s;break}d=p}m.push(o={value:u,dice:l1?e:1)},r}(G),X=function t(e){function r(t,r,n,a,i){if((o=t._squarify)&&o.ratio===e)for(var o,s,l,c,u,h=-1,f=o.length,p=t.value;++h1?e:1)},r}(G);t.cluster=function(){var t=e,a=1,i=1,o=!1;function s(e){var s,l=0;e.eachAfter(function(e){var a=e.children;a?(e.x=function(t){return t.reduce(r,0)/t.length}(a),e.y=function(t){return 1+t.reduce(n,0)}(a)):(e.x=s?l+=t(e,s):0,e.y=0,s=e)});var c=function(t){for(var e;e=t.children;)t=e[0];return t}(e),u=function(t){for(var e;e=t.children;)t=e[e.length-1];return t}(e),h=c.x-t(c,u)/2,f=u.x+t(u,c)/2;return e.eachAfter(o?function(t){t.x=(t.x-e.x)*a,t.y=(e.y-t.y)*i}:function(t){t.x=(t.x-h)/(f-h)*a,t.y=(1-(e.y?t.y/e.y:1))*i})}return s.separation=function(e){return arguments.length?(t=e,s):t},s.size=function(t){return arguments.length?(o=!1,a=+t[0],i=+t[1],s):o?null:[a,i]},s.nodeSize=function(t){return arguments.length?(o=!0,a=+t[0],i=+t[1],s):o?[a,i]:null},s},t.hierarchy=i,t.pack=function(){var t=null,e=1,r=1,n=M;function a(a){return a.x=e/2,a.y=r/2,t?a.eachBefore(E(t)).eachAfter(L(n,.5)).eachBefore(C(1)):a.eachBefore(E(S)).eachAfter(L(M,1)).eachAfter(L(n,a.r/Math.min(e,r))).eachBefore(C(Math.min(e,r)/(2*a.r))),a}return a.radius=function(e){return arguments.length?(t=null==(r=e)?null:T(r),a):t;var r},a.size=function(t){return arguments.length?(e=+t[0],r=+t[1],a):[e,r]},a.padding=function(t){return arguments.length?(n="function"==typeof t?t:A(+t),a):n},a},t.packEnclose=h,t.packSiblings=function(t){return k(t),t},t.partition=function(){var t=1,e=1,r=0,n=!1;function a(a){var i=a.height+1;return a.x0=a.y0=r,a.x1=t,a.y1=e/i,a.eachBefore(function(t,e){return function(n){n.children&&O(n,n.x0,t*(n.depth+1)/e,n.x1,t*(n.depth+2)/e);var a=n.x0,i=n.y0,o=n.x1-r,s=n.y1-r;o0)throw new Error("cycle");return i}return r.id=function(e){return arguments.length?(t=T(e),r):t},r.parentId=function(t){return arguments.length?(e=T(t),r):e},r},t.tree=function(){var t=B,e=1,r=1,n=null;function a(a){var l=function(t){for(var e,r,n,a,i,o=new q(t,0),s=[o];e=s.pop();)if(n=e._.children)for(e.children=new Array(i=n.length),a=i-1;a>=0;--a)s.push(r=e.children[a]=new q(n[a],a)),r.parent=e;return(o.parent=new q(null,0)).children=[o],o}(a);if(l.eachAfter(i),l.parent.m=-l.z,l.eachBefore(o),n)a.eachBefore(s);else{var c=a,u=a,h=a;a.eachBefore(function(t){t.xu.x&&(u=t),t.depth>h.depth&&(h=t)});var f=c===u?1:t(c,u)/2,p=f-c.x,d=e/(u.x+f+p),g=r/(h.depth||1);a.eachBefore(function(t){t.x=(t.x+p)*d,t.y=t.depth*g})}return a}function i(e){var r=e.children,n=e.parent.children,a=e.i?n[e.i-1]:null;if(r){!function(t){for(var e,r=0,n=0,a=t.children,i=a.length;--i>=0;)(e=a[i]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(e);var i=(r[0].z+r[r.length-1].z)/2;a?(e.z=a.z+t(e._,a._),e.m=e.z-i):e.z=i}else a&&(e.z=a.z+t(e._,a._));e.parent.A=function(e,r,n){if(r){for(var a,i=e,o=e,s=r,l=i.parent.children[0],c=i.m,u=o.m,h=s.m,f=l.m;s=j(s),i=N(i),s&&i;)l=N(l),(o=j(o)).a=e,(a=s.z+h-i.z-c+t(s._,i._))>0&&(V(U(s,e,n),e,a),c+=a,u+=a),h+=s.m,c+=i.m,f+=l.m,u+=o.m;s&&!j(o)&&(o.t=s,o.m+=h-u),i&&!N(l)&&(l.t=i,l.m+=c-f,n=e)}return n}(e,a,e.parent.A||n[0])}function o(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function s(t){t.x*=e,t.y=t.depth*r}return a.separation=function(e){return arguments.length?(t=e,a):t},a.size=function(t){return arguments.length?(n=!1,e=+t[0],r=+t[1],a):n?null:[e,r]},a.nodeSize=function(t){return arguments.length?(n=!0,e=+t[0],r=+t[1],a):n?[e,r]:null},a},t.treemap=function(){var t=W,e=!1,r=1,n=1,a=[0],i=M,o=M,s=M,l=M,c=M;function u(t){return t.x0=t.y0=0,t.x1=r,t.y1=n,t.eachBefore(h),a=[0],e&&t.eachBefore(P),t}function h(e){var r=a[e.depth],n=e.x0+r,u=e.y0+r,h=e.x1-r,f=e.y1-r;h=r-1){var u=s[e];return u.x0=a,u.y0=i,u.x1=o,void(u.y1=l)}for(var h=c[e],f=n/2+h,p=e+1,d=r-1;p>>1;c[g]l-i){var y=(a*m+o*v)/n;t(e,p,v,a,i,y,l),t(p,r,m,y,i,o,l)}else{var x=(i*m+l*v)/n;t(e,p,v,a,i,o,x),t(p,r,m,a,x,o,l)}}(0,l,t.value,e,r,n,a)},t.treemapDice=O,t.treemapResquarify=X,t.treemapSlice=H,t.treemapSliceDice=function(t,e,r,n,a){(1&t.depth?H:O)(t,e,r,n,a)},t.treemapSquarify=W,Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:(n=n||self).d3=n.d3||{})},{}],160:[function(t,e,r){var n,a;n=this,a=function(t,e){"use strict";function r(t,e,r,n,a){var i=t*t,o=i*t;return((1-3*t+3*i-o)*e+(4-6*i+3*o)*r+(1+3*t+3*i-3*o)*n+o*a)/6}function n(t){var e=t.length-1;return function(n){var a=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),i=t[a],o=t[a+1],s=a>0?t[a-1]:2*i-o,l=a180||r<-180?r-360*Math.round(r/360):r):i(isNaN(t)?e:t)}function l(t){return 1==(t=+t)?c:function(e,r){return r-e?function(t,e,r){return t=Math.pow(t,r),e=Math.pow(e,r)-t,r=1/r,function(n){return Math.pow(t+n*e,r)}}(e,r,t):i(isNaN(e)?r:e)}}function c(t,e){var r=e-t;return r?o(t,r):i(isNaN(t)?e:t)}var u=function t(r){var n=l(r);function a(t,r){var a=n((t=e.rgb(t)).r,(r=e.rgb(r)).r),i=n(t.g,r.g),o=n(t.b,r.b),s=c(t.opacity,r.opacity);return function(e){return t.r=a(e),t.g=i(e),t.b=o(e),t.opacity=s(e),t+""}}return a.gamma=t,a}(1);function h(t){return function(r){var n,a,i=r.length,o=new Array(i),s=new Array(i),l=new Array(i);for(n=0;ni&&(a=e.slice(i,a),s[o]?s[o]+=a:s[++o]=a),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:y(r,n)})),i=_.lastIndex;return i180?e+=360:e-t>180&&(t+=360),i.push({i:r.push(a(r)+"rotate(",null,n)-2,x:y(t,e)})):e&&r.push(a(r)+"rotate("+e+n)}(i.rotate,o.rotate,s,l),function(t,e,r,i){t!==e?i.push({i:r.push(a(r)+"skewX(",null,n)-2,x:y(t,e)}):e&&r.push(a(r)+"skewX("+e+n)}(i.skewX,o.skewX,s,l),function(t,e,r,n,i,o){if(t!==r||e!==n){var s=i.push(a(i)+"scale(",null,",",null,")");o.push({i:s-4,x:y(t,r)},{i:s-2,x:y(e,n)})}else 1===r&&1===n||i.push(a(i)+"scale("+r+","+n+")")}(i.scaleX,i.scaleY,o.scaleX,o.scaleY,s,l),i=o=null,function(t){for(var e,r=-1,n=l.length;++r1e-6)if(Math.abs(h*l-c*u)>1e-6&&i){var p=n-o,d=a-s,g=l*l+c*c,v=p*p+d*d,m=Math.sqrt(g),y=Math.sqrt(f),x=i*Math.tan((e-Math.acos((g+f-v)/(2*m*y)))/2),b=x/y,_=x/m;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*u)+","+(r+b*h)),this._+="A"+i+","+i+",0,0,"+ +(h*p>u*d)+","+(this._x1=t+_*l)+","+(this._y1=r+_*c)}else this._+="L"+(this._x1=t)+","+(this._y1=r);else;},arc:function(t,a,i,o,s,l){t=+t,a=+a;var c=(i=+i)*Math.cos(o),u=i*Math.sin(o),h=t+c,f=a+u,p=1^l,d=l?o-s:s-o;if(i<0)throw new Error("negative radius: "+i);null===this._x1?this._+="M"+h+","+f:(Math.abs(this._x1-h)>1e-6||Math.abs(this._y1-f)>1e-6)&&(this._+="L"+h+","+f),i&&(d<0&&(d=d%r+r),d>n?this._+="A"+i+","+i+",0,1,"+p+","+(t-c)+","+(a-u)+"A"+i+","+i+",0,1,"+p+","+(this._x1=h)+","+(this._y1=f):d>1e-6&&(this._+="A"+i+","+i+",0,"+ +(d>=e)+","+p+","+(this._x1=t+i*Math.cos(s))+","+(this._y1=a+i*Math.sin(s))))},rect:function(t,e,r,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +r+"v"+ +n+"h"+-r+"Z"},toString:function(){return this._}},t.path=i,Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],162:[function(t,e,r){var n;n=this,function(t){"use strict";function e(t,e,r,n){if(isNaN(e)||isNaN(r))return t;var a,i,o,s,l,c,u,h,f,p=t._root,d={data:n},g=t._x0,v=t._y0,m=t._x1,y=t._y1;if(!p)return t._root=d,t;for(;p.length;)if((c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o,a=p,!(p=p[h=u<<1|c]))return a[h]=d,t;if(s=+t._x.call(null,p.data),l=+t._y.call(null,p.data),e===s&&r===l)return d.next=p,a?a[h]=d:t._root=d,t;do{a=a?a[h]=new Array(4):t._root=new Array(4),(c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o}while((h=u<<1|c)==(f=(l>=o)<<1|s>=i));return a[f]=p,a[h]=d,t}var r=function(t,e,r,n,a){this.node=t,this.x0=e,this.y0=r,this.x1=n,this.y1=a};function n(t){return t[0]}function a(t){return t[1]}function i(t,e,r){var i=new o(null==e?n:e,null==r?a:r,NaN,NaN,NaN,NaN);return null==t?i:i.addAll(t)}function o(t,e,r,n,a,i){this._x=t,this._y=e,this._x0=r,this._y0=n,this._x1=a,this._y1=i,this._root=void 0}function s(t){for(var e={data:t.data},r=e;t=t.next;)r=r.next={data:t.data};return e}var l=i.prototype=o.prototype;l.copy=function(){var t,e,r=new o(this._x,this._y,this._x0,this._y0,this._x1,this._y1),n=this._root;if(!n)return r;if(!n.length)return r._root=s(n),r;for(t=[{source:n,target:r._root=new Array(4)}];n=t.pop();)for(var a=0;a<4;++a)(e=n.source[a])&&(e.length?t.push({source:e,target:n.target[a]=new Array(4)}):n.target[a]=s(e));return r},l.add=function(t){var r=+this._x.call(null,t),n=+this._y.call(null,t);return e(this.cover(r,n),r,n,t)},l.addAll=function(t){var r,n,a,i,o=t.length,s=new Array(o),l=new Array(o),c=1/0,u=1/0,h=-1/0,f=-1/0;for(n=0;nh&&(h=a),if&&(f=i));for(ht||t>a||n>e||e>i))return this;var o,s,l=a-r,c=this._root;switch(s=(e<(n+i)/2)<<1|t<(r+a)/2){case 0:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),t>(a=r+l)||e>i);break;case 1:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),(r=a-l)>t||e>i);break;case 2:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),t>(a=r+l)||n>e);break;case 3:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),(r=a-l)>t||n>e)}this._root&&this._root.length&&(this._root=c)}return this._x0=r,this._y0=n,this._x1=a,this._y1=i,this},l.data=function(){var t=[];return this.visit(function(e){if(!e.length)do{t.push(e.data)}while(e=e.next)}),t},l.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},l.find=function(t,e,n){var a,i,o,s,l,c,u,h=this._x0,f=this._y0,p=this._x1,d=this._y1,g=[],v=this._root;for(v&&g.push(new r(v,h,f,p,d)),null==n?n=1/0:(h=t-n,f=e-n,p=t+n,d=e+n,n*=n);c=g.pop();)if(!(!(v=c.node)||(i=c.x0)>p||(o=c.y0)>d||(s=c.x1)=y)<<1|t>=m)&&(c=g[g.length-1],g[g.length-1]=g[g.length-1-u],g[g.length-1-u]=c)}else{var x=t-+this._x.call(null,v.data),b=e-+this._y.call(null,v.data),_=x*x+b*b;if(_=(s=(d+v)/2))?d=s:v=s,(u=o>=(l=(g+m)/2))?g=l:m=l,e=p,!(p=p[h=u<<1|c]))return this;if(!p.length)break;(e[h+1&3]||e[h+2&3]||e[h+3&3])&&(r=e,f=h)}for(;p.data!==t;)if(n=p,!(p=p.next))return this;return(a=p.next)&&delete p.next,n?(a?n.next=a:delete n.next,this):e?(a?e[h]=a:delete e[h],(p=e[0]||e[1]||e[2]||e[3])&&p===(e[3]||e[2]||e[1]||e[0])&&!p.length&&(r?r[f]=p:this._root=p),this):(this._root=a,this)},l.removeAll=function(t){for(var e=0,r=t.length;e=1?f:t<=-1?-f:Math.asin(t)}function g(t){return t.innerRadius}function v(t){return t.outerRadius}function m(t){return t.startAngle}function y(t){return t.endAngle}function x(t){return t&&t.padAngle}function b(t,e,r,n,a,i,s){var l=t-r,u=e-n,h=(s?i:-i)/c(l*l+u*u),f=h*u,p=-h*l,d=t+f,g=e+p,v=r+f,m=n+p,y=(d+v)/2,x=(g+m)/2,b=v-d,_=m-g,w=b*b+_*_,k=a-i,T=d*m-v*g,M=(_<0?-1:1)*c(o(0,k*k*w-T*T)),A=(T*_-b*M)/w,S=(-T*b-_*M)/w,E=(T*_+b*M)/w,L=(-T*b+_*M)/w,C=A-y,P=S-x,O=E-y,z=L-x;return C*C+P*P>O*O+z*z&&(A=E,S=L),{cx:A,cy:S,x01:-f,y01:-p,x11:A*(a/k-1),y11:S*(a/k-1)}}function _(t){this._context=t}function w(t){return new _(t)}function k(t){return t[0]}function T(t){return t[1]}function M(){var t=k,n=T,a=r(!0),i=null,o=w,s=null;function l(r){var l,c,u,h=r.length,f=!1;for(null==i&&(s=o(u=e.path())),l=0;l<=h;++l)!(l=h;--f)c.point(m[f],y[f]);c.lineEnd(),c.areaEnd()}v&&(m[u]=+t(p,u,r),y[u]=+a(p,u,r),c.point(n?+n(p,u,r):m[u],i?+i(p,u,r):y[u]))}if(d)return c=null,d+""||null}function h(){return M().defined(o).curve(l).context(s)}return u.x=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),n=null,u):t},u.x0=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),u):t},u.x1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:r(+t),u):n},u.y=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),i=null,u):a},u.y0=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),u):a},u.y1=function(t){return arguments.length?(i=null==t?null:"function"==typeof t?t:r(+t),u):i},u.lineX0=u.lineY0=function(){return h().x(t).y(a)},u.lineY1=function(){return h().x(t).y(i)},u.lineX1=function(){return h().x(n).y(a)},u.defined=function(t){return arguments.length?(o="function"==typeof t?t:r(!!t),u):o},u.curve=function(t){return arguments.length?(l=t,null!=s&&(c=l(s)),u):l},u.context=function(t){return arguments.length?(null==t?s=c=null:c=l(s=t),u):s},u}function S(t,e){return et?1:e>=t?0:NaN}function E(t){return t}_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e)}}};var L=P(w);function C(t){this._curve=t}function P(t){function e(e){return new C(t(e))}return e._curve=t,e}function O(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function z(){return O(M().curve(L))}function I(){var t=A().curve(L),e=t.curve,r=t.lineX0,n=t.lineX1,a=t.lineY0,i=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return O(r())},delete t.lineX0,t.lineEndAngle=function(){return O(n())},delete t.lineX1,t.lineInnerRadius=function(){return O(a())},delete t.lineY0,t.lineOuterRadius=function(){return O(i())},delete t.lineY1,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function D(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]}C.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}};var R=Array.prototype.slice;function F(t){return t.source}function B(t){return t.target}function N(t){var n=F,a=B,i=k,o=T,s=null;function l(){var r,l=R.call(arguments),c=n.apply(this,l),u=a.apply(this,l);if(s||(s=r=e.path()),t(s,+i.apply(this,(l[0]=c,l)),+o.apply(this,l),+i.apply(this,(l[0]=u,l)),+o.apply(this,l)),r)return s=null,r+""||null}return l.source=function(t){return arguments.length?(n=t,l):n},l.target=function(t){return arguments.length?(a=t,l):a},l.x=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),l):i},l.y=function(t){return arguments.length?(o="function"==typeof t?t:r(+t),l):o},l.context=function(t){return arguments.length?(s=null==t?null:t,l):s},l}function j(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e=(e+n)/2,r,e,a,n,a)}function V(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e,r=(r+a)/2,n,r,n,a)}function U(t,e,r,n,a){var i=D(e,r),o=D(e,r=(r+a)/2),s=D(n,r),l=D(n,a);t.moveTo(i[0],i[1]),t.bezierCurveTo(o[0],o[1],s[0],s[1],l[0],l[1])}var q={draw:function(t,e){var r=Math.sqrt(e/h);t.moveTo(r,0),t.arc(0,0,r,0,p)}},H={draw:function(t,e){var r=Math.sqrt(e/5)/2;t.moveTo(-3*r,-r),t.lineTo(-r,-r),t.lineTo(-r,-3*r),t.lineTo(r,-3*r),t.lineTo(r,-r),t.lineTo(3*r,-r),t.lineTo(3*r,r),t.lineTo(r,r),t.lineTo(r,3*r),t.lineTo(-r,3*r),t.lineTo(-r,r),t.lineTo(-3*r,r),t.closePath()}},G=Math.sqrt(1/3),Y=2*G,W={draw:function(t,e){var r=Math.sqrt(e/Y),n=r*G;t.moveTo(0,-r),t.lineTo(n,0),t.lineTo(0,r),t.lineTo(-n,0),t.closePath()}},X=Math.sin(h/10)/Math.sin(7*h/10),Z=Math.sin(p/10)*X,J=-Math.cos(p/10)*X,K={draw:function(t,e){var r=Math.sqrt(.8908130915292852*e),n=Z*r,a=J*r;t.moveTo(0,-r),t.lineTo(n,a);for(var i=1;i<5;++i){var o=p*i/5,s=Math.cos(o),l=Math.sin(o);t.lineTo(l*r,-s*r),t.lineTo(s*n-l*a,l*n+s*a)}t.closePath()}},Q={draw:function(t,e){var r=Math.sqrt(e),n=-r/2;t.rect(n,n,r,r)}},$=Math.sqrt(3),tt={draw:function(t,e){var r=-Math.sqrt(e/(3*$));t.moveTo(0,2*r),t.lineTo(-$*r,-r),t.lineTo($*r,-r),t.closePath()}},et=-.5,rt=Math.sqrt(3)/2,nt=1/Math.sqrt(12),at=3*(nt/2+1),it={draw:function(t,e){var r=Math.sqrt(e/at),n=r/2,a=r*nt,i=n,o=r*nt+r,s=-i,l=o;t.moveTo(n,a),t.lineTo(i,o),t.lineTo(s,l),t.lineTo(et*n-rt*a,rt*n+et*a),t.lineTo(et*i-rt*o,rt*i+et*o),t.lineTo(et*s-rt*l,rt*s+et*l),t.lineTo(et*n+rt*a,et*a-rt*n),t.lineTo(et*i+rt*o,et*o-rt*i),t.lineTo(et*s+rt*l,et*l-rt*s),t.closePath()}},ot=[q,H,W,Q,K,tt,it];function st(){}function lt(t,e,r){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+r)/6)}function ct(t){this._context=t}function ut(t){this._context=t}function ht(t){this._context=t}function ft(t,e){this._basis=new ct(t),this._beta=e}ct.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:lt(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ut.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ht.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var r=(this._x0+4*this._x1+t)/6,n=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(r,n):this._context.moveTo(r,n);break;case 3:this._point=4;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ft.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,r=t.length-1;if(r>0)for(var n,a=t[0],i=e[0],o=t[r]-a,s=e[r]-i,l=-1;++l<=r;)n=l/r,this._basis.point(this._beta*t[l]+(1-this._beta)*(a+n*o),this._beta*e[l]+(1-this._beta)*(i+n*s));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}};var pt=function t(e){function r(t){return 1===e?new ct(t):new ft(t,e)}return r.beta=function(e){return t(+e)},r}(.85);function dt(t,e,r){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-r),t._x2,t._y2)}function gt(t,e){this._context=t,this._k=(1-e)/6}gt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:dt(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var vt=function t(e){function r(t){return new gt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function mt(t,e){this._context=t,this._k=(1-e)/6}mt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var yt=function t(e){function r(t){return new mt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function xt(t,e){this._context=t,this._k=(1-e)/6}xt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var bt=function t(e){function r(t){return new xt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function _t(t,e,r){var n=t._x1,a=t._y1,i=t._x2,o=t._y2;if(t._l01_a>u){var s=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,l=3*t._l01_a*(t._l01_a+t._l12_a);n=(n*s-t._x0*t._l12_2a+t._x2*t._l01_2a)/l,a=(a*s-t._y0*t._l12_2a+t._y2*t._l01_2a)/l}if(t._l23_a>u){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,h=3*t._l23_a*(t._l23_a+t._l12_a);i=(i*c+t._x1*t._l23_2a-e*t._l12_2a)/h,o=(o*c+t._y1*t._l23_2a-r*t._l12_2a)/h}t._context.bezierCurveTo(n,a,i,o,t._x2,t._y2)}function wt(t,e){this._context=t,this._alpha=e}wt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var kt=function t(e){function r(t){return e?new wt(t,e):new gt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Tt(t,e){this._context=t,this._alpha=e}Tt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var Mt=function t(e){function r(t){return e?new Tt(t,e):new mt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function At(t,e){this._context=t,this._alpha=e}At.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var St=function t(e){function r(t){return e?new At(t,e):new xt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Et(t){this._context=t}function Lt(t){return t<0?-1:1}function Ct(t,e,r){var n=t._x1-t._x0,a=e-t._x1,i=(t._y1-t._y0)/(n||a<0&&-0),o=(r-t._y1)/(a||n<0&&-0),s=(i*a+o*n)/(n+a);return(Lt(i)+Lt(o))*Math.min(Math.abs(i),Math.abs(o),.5*Math.abs(s))||0}function Pt(t,e){var r=t._x1-t._x0;return r?(3*(t._y1-t._y0)/r-e)/2:e}function Ot(t,e,r){var n=t._x0,a=t._y0,i=t._x1,o=t._y1,s=(i-n)/3;t._context.bezierCurveTo(n+s,a+s*e,i-s,o-s*r,i,o)}function zt(t){this._context=t}function It(t){this._context=new Dt(t)}function Dt(t){this._context=t}function Rt(t){this._context=t}function Ft(t){var e,r,n=t.length-1,a=new Array(n),i=new Array(n),o=new Array(n);for(a[0]=0,i[0]=2,o[0]=t[0]+2*t[1],e=1;e=0;--e)a[e]=(o[e]-a[e+1])/i[e];for(i[n-1]=(t[n]+a[n-1])/2,e=0;e1)for(var r,n,a,i=1,o=t[e[0]],s=o.length;i=0;)r[e]=e;return r}function Vt(t,e){return t[e]}function Ut(t){var e=t.map(qt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function qt(t){for(var e,r=-1,n=0,a=t.length,i=-1/0;++ri&&(i=e,n=r);return n}function Ht(t){var e=t.map(Gt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function Gt(t){for(var e,r=0,n=-1,a=t.length;++n=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}}this._x=t,this._y=e}},t.arc=function(){var t=g,o=v,_=r(0),w=null,k=m,T=y,M=x,A=null;function S(){var r,g,v,m=+t.apply(this,arguments),y=+o.apply(this,arguments),x=k.apply(this,arguments)-f,S=T.apply(this,arguments)-f,E=n(S-x),L=S>x;if(A||(A=r=e.path()),yu)if(E>p-u)A.moveTo(y*i(x),y*l(x)),A.arc(0,0,y,x,S,!L),m>u&&(A.moveTo(m*i(S),m*l(S)),A.arc(0,0,m,S,x,L));else{var C,P,O=x,z=S,I=x,D=S,R=E,F=E,B=M.apply(this,arguments)/2,N=B>u&&(w?+w.apply(this,arguments):c(m*m+y*y)),j=s(n(y-m)/2,+_.apply(this,arguments)),V=j,U=j;if(N>u){var q=d(N/m*l(B)),H=d(N/y*l(B));(R-=2*q)>u?(I+=q*=L?1:-1,D-=q):(R=0,I=D=(x+S)/2),(F-=2*H)>u?(O+=H*=L?1:-1,z-=H):(F=0,O=z=(x+S)/2)}var G=y*i(O),Y=y*l(O),W=m*i(D),X=m*l(D);if(j>u){var Z,J=y*i(z),K=y*l(z),Q=m*i(I),$=m*l(I);if(E1?0:v<-1?h:Math.acos(v))/2),it=c(Z[0]*Z[0]+Z[1]*Z[1]);V=s(j,(m-it)/(at-1)),U=s(j,(y-it)/(at+1))}}F>u?U>u?(C=b(Q,$,G,Y,y,U,L),P=b(J,K,W,X,y,U,L),A.moveTo(C.cx+C.x01,C.cy+C.y01),Uu&&R>u?V>u?(C=b(W,X,J,K,m,-V,L),P=b(G,Y,Q,$,m,-V,L),A.lineTo(C.cx+C.x01,C.cy+C.y01),V0&&(d+=h);for(null!=e?g.sort(function(t,r){return e(v[t],v[r])}):null!=n&&g.sort(function(t,e){return n(r[t],r[e])}),s=0,c=d?(y-f*b)/d:0;s0?h*c:0)+b,v[l]={data:r[l],index:s,value:h,startAngle:m,endAngle:u,padAngle:x};return v}return s.value=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),s):t},s.sortValues=function(t){return arguments.length?(e=t,n=null,s):e},s.sort=function(t){return arguments.length?(n=t,e=null,s):n},s.startAngle=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),s):a},s.endAngle=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),s):i},s.padAngle=function(t){return arguments.length?(o="function"==typeof t?t:r(+t),s):o},s},t.areaRadial=I,t.radialArea=I,t.lineRadial=z,t.radialLine=z,t.pointRadial=D,t.linkHorizontal=function(){return N(j)},t.linkVertical=function(){return N(V)},t.linkRadial=function(){var t=N(U);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.symbol=function(){var t=r(q),n=r(64),a=null;function i(){var r;if(a||(a=r=e.path()),t.apply(this,arguments).draw(a,+n.apply(this,arguments)),r)return a=null,r+""||null}return i.type=function(e){return arguments.length?(t="function"==typeof e?e:r(e),i):t},i.size=function(t){return arguments.length?(n="function"==typeof t?t:r(+t),i):n},i.context=function(t){return arguments.length?(a=null==t?null:t,i):a},i},t.symbols=ot,t.symbolCircle=q,t.symbolCross=H,t.symbolDiamond=W,t.symbolSquare=Q,t.symbolStar=K,t.symbolTriangle=tt,t.symbolWye=it,t.curveBasisClosed=function(t){return new ut(t)},t.curveBasisOpen=function(t){return new ht(t)},t.curveBasis=function(t){return new ct(t)},t.curveBundle=pt,t.curveCardinalClosed=yt,t.curveCardinalOpen=bt,t.curveCardinal=vt,t.curveCatmullRomClosed=Mt,t.curveCatmullRomOpen=St,t.curveCatmullRom=kt,t.curveLinearClosed=function(t){return new Et(t)},t.curveLinear=w,t.curveMonotoneX=function(t){return new zt(t)},t.curveMonotoneY=function(t){return new It(t)},t.curveNatural=function(t){return new Rt(t)},t.curveStep=function(t){return new Bt(t,.5)},t.curveStepAfter=function(t){return new Bt(t,1)},t.curveStepBefore=function(t){return new Bt(t,0)},t.stack=function(){var t=r([]),e=jt,n=Nt,a=Vt;function i(r){var i,o,s=t.apply(this,arguments),l=r.length,c=s.length,u=new Array(c);for(i=0;i0){for(var r,n,a,i=0,o=t[0].length;i1)for(var r,n,a,i,o,s,l=0,c=t[e[0]].length;l=0?(n[0]=i,n[1]=i+=a):a<0?(n[1]=o,n[0]=o+=a):n[0]=i},t.stackOffsetNone=Nt,t.stackOffsetSilhouette=function(t,e){if((r=t.length)>0){for(var r,n=0,a=t[e[0]],i=a.length;n0&&(n=(r=t[e[0]]).length)>0){for(var r,n,a,i=0,o=1;o=0&&r._call.call(null,t),r=r._next;--n}function m(){l=(s=u.now())+c,n=a=0;try{v()}finally{n=0,function(){var t,n,a=e,i=1/0;for(;a;)a._call?(i>a._time&&(i=a._time),t=a,a=a._next):(n=a._next,a._next=null,a=t?t._next=n:e=n);r=t,x(i)}(),l=0}}function y(){var t=u.now(),e=t-s;e>o&&(c-=e,s=t)}function x(t){n||(a&&(a=clearTimeout(a)),t-l>24?(t<1/0&&(a=setTimeout(m,t-u.now()-c)),i&&(i=clearInterval(i))):(i||(s=u.now(),i=setInterval(y,o)),n=1,h(m)))}d.prototype=g.prototype={constructor:d,restart:function(t,n,a){if("function"!=typeof t)throw new TypeError("callback is not a function");a=(null==a?f():+a)+(null==n?0:+n),this._next||r===this||(r?r._next=this:e=this,r=this),this._call=t,this._time=a,x()},stop:function(){this._call&&(this._call=null,this._time=1/0,x())}},t.now=f,t.timer=g,t.timerFlush=v,t.timeout=function(t,e,r){var n=new d;return e=null==e?0:+e,n.restart(function(r){n.stop(),t(r+e)},e,r),n},t.interval=function(t,e,r){var n=new d,a=e;return null==e?(n.restart(t,e,r),n):(e=+e,r=null==r?f():+r,n.restart(function i(o){o+=a,n.restart(i,a+=e,r),t(o)},e,r),n)},Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],165:[function(t,e,r){!function(){var t={version:"3.5.17"},r=[].slice,n=function(t){return r.call(t)},a=this.document;function i(t){return t&&(t.ownerDocument||t.document||t).documentElement}function o(t){return t&&(t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView)}if(a)try{n(a.documentElement.childNodes)[0].nodeType}catch(t){n=function(t){for(var e=t.length,r=new Array(e);e--;)r[e]=t[e];return r}}if(Date.now||(Date.now=function(){return+new Date}),a)try{a.createElement("DIV").style.setProperty("opacity",0,"")}catch(t){var s=this.Element.prototype,l=s.setAttribute,c=s.setAttributeNS,u=this.CSSStyleDeclaration.prototype,h=u.setProperty;s.setAttribute=function(t,e){l.call(this,t,e+"")},s.setAttributeNS=function(t,e,r){c.call(this,t,e,r+"")},u.setProperty=function(t,e,r){h.call(this,t,e+"",r)}}function f(t,e){return te?1:t>=e?0:NaN}function p(t){return null===t?NaN:+t}function d(t){return!isNaN(t)}function g(t){return{left:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n>>1;t(e[i],r)<0?n=i+1:a=i}return n},right:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n>>1;t(e[i],r)>0?a=i:n=i+1}return n}}}t.ascending=f,t.descending=function(t,e){return et?1:e>=t?0:NaN},t.min=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a=n){r=n;break}for(;++an&&(r=n)}else{for(;++a=n){r=n;break}for(;++an&&(r=n)}return r},t.max=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a=n){r=n;break}for(;++ar&&(r=n)}else{for(;++a=n){r=n;break}for(;++ar&&(r=n)}return r},t.extent=function(t,e){var r,n,a,i=-1,o=t.length;if(1===arguments.length){for(;++i=n){r=a=n;break}for(;++in&&(r=n),a=n){r=a=n;break}for(;++i
>1)-1;0===z?d(s,l,L--,I):1===z?d(c,u,C--,I):2===z&&d(h,f,P--,I)}}},scanBipartite:function(t,e,r,n,a,c,u,h,f,v,m,y){var x=0,b=2*t,_=e,w=e+t,k=1,T=1;n?T=o:k=o;for(var M=a;M>>1;i(p,L);for(var C=0,M=0;M=o?(O=!n,A-=o):(O=!!n,A-=1),O)g(s,l,C++,A);else{var z=y[A],I=b*A,D=m[I+e+1],R=m[I+e+1+t];t:for(var F=0;F>>1;i(p,k);for(var T=0,x=0;x=o)s[T++]=b-o;else{var A=d[b-=1],S=v*b,E=f[S+e+1],L=f[S+e+1+t];t:for(var C=0;C=0;--C)if(s[C]===b){for(var I=C+1;I0&&s.length>i){s.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+s.length+' "'+String(e)+'" listeners added. Use emitter.setMaxListeners() to increase limit.');l.name="MaxListenersExceededWarning",l.emitter=t,l.type=e,l.count=s.length,"object"==typeof console&&console.warn&&console.warn("%s: %s",l.name,l.message)}}else s=o[e]=r,++t._eventsCount;return t}function f(){if(!this.fired)switch(this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length){case 0:return this.listener.call(this.target);case 1:return this.listener.call(this.target,arguments[0]);case 2:return this.listener.call(this.target,arguments[0],arguments[1]);case 3:return this.listener.call(this.target,arguments[0],arguments[1],arguments[2]);default:for(var t=new Array(arguments.length),e=0;e1&&(e=arguments[1]),e instanceof Error)throw e;var l=new Error('Unhandled "error" event. ('+e+")");throw l.context=e,l}if(!(r=o[t]))return!1;var c="function"==typeof r;switch(n=arguments.length){case 1:!function(t,e,r){if(e)t.call(r);else for(var n=t.length,a=v(t,n),i=0;i=0;o--)if(r[o]===e||r[o].listener===e){s=r[o].listener,i=o;break}if(i<0)return this;0===i?r.shift():function(t,e){for(var r=e,n=r+1,a=t.length;n=0;i--)this.removeListener(t,e[i]);return this},o.prototype.listeners=function(t){return d(this,t,!0)},o.prototype.rawListeners=function(t){return d(this,t,!1)},o.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):g.call(t,e)},o.prototype.listenerCount=g,o.prototype.eventNames=function(){return this._eventsCount>0?Reflect.ownKeys(this._events):[]}},{}],107:[function(t,e,r){(function(e){"use strict";var n=t("base64-js"),a=t("ieee754"),i="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;r.Buffer=e,r.SlowBuffer=function(t){+t!=t&&(t=0);return e.alloc(+t)},r.INSPECT_MAX_BYTES=50;var o=2147483647;function s(t){if(t>o)throw new RangeError('The value "'+t+'" is invalid for option "size"');var r=new Uint8Array(t);return Object.setPrototypeOf(r,e.prototype),r}function e(t,e,r){if("number"==typeof t){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return u(t)}return l(t,e,r)}function l(t,r,n){if("string"==typeof t)return function(t,r){"string"==typeof r&&""!==r||(r="utf8");if(!e.isEncoding(r))throw new TypeError("Unknown encoding: "+r);var n=0|p(t,r),a=s(n),i=a.write(t,r);i!==n&&(a=a.slice(0,i));return a}(t,r);if(ArrayBuffer.isView(t))return h(t);if(null==t)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(j(t,ArrayBuffer)||t&&j(t.buffer,ArrayBuffer))return function(t,r,n){if(r<0||t.byteLength=o)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+o.toString(16)+" bytes");return 0|t}function p(t,r){if(e.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||j(t,ArrayBuffer))return t.byteLength;if("string"!=typeof t)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var n=t.length,a=arguments.length>2&&!0===arguments[2];if(!a&&0===n)return 0;for(var i=!1;;)switch(r){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return F(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return B(t).length;default:if(i)return a?-1:F(t).length;r=(""+r).toLowerCase(),i=!0}}function d(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function g(t,r,n,a,i){if(0===t.length)return-1;if("string"==typeof n?(a=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),V(n=+n)&&(n=i?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(i)return-1;n=t.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof r&&(r=e.from(r,a)),e.isBuffer(r))return 0===r.length?-1:v(t,r,n,a,i);if("number"==typeof r)return r&=255,"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,r,n):Uint8Array.prototype.lastIndexOf.call(t,r,n):v(t,[r],n,a,i);throw new TypeError("val must be string, number or Buffer")}function v(t,e,r,n,a){var i,o=1,s=t.length,l=e.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(t.length<2||e.length<2)return-1;o=2,s/=2,l/=2,r/=2}function c(t,e){return 1===o?t[e]:t.readUInt16BE(e*o)}if(a){var u=-1;for(i=r;is&&(r=s-l),i=r;i>=0;i--){for(var h=!0,f=0;fa&&(n=a):n=a;var i=e.length;n>i/2&&(n=i/2);for(var o=0;o>8,a=r%256,i.push(a),i.push(n);return i}(e,t.length-r),t,r,n)}function k(t,e,r){return 0===e&&r===t.length?n.fromByteArray(t):n.fromByteArray(t.slice(e,r))}function T(t,e,r){r=Math.min(t.length,r);for(var n=[],a=e;a239?4:c>223?3:c>191?2:1;if(a+h<=r)switch(h){case 1:c<128&&(u=c);break;case 2:128==(192&(i=t[a+1]))&&(l=(31&c)<<6|63&i)>127&&(u=l);break;case 3:i=t[a+1],o=t[a+2],128==(192&i)&&128==(192&o)&&(l=(15&c)<<12|(63&i)<<6|63&o)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:i=t[a+1],o=t[a+2],s=t[a+3],128==(192&i)&&128==(192&o)&&128==(192&s)&&(l=(15&c)<<18|(63&i)<<12|(63&o)<<6|63&s)>65535&&l<1114112&&(u=l)}null===u?(u=65533,h=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|1023&u),n.push(u),a+=h}return function(t){var e=t.length;if(e<=M)return String.fromCharCode.apply(String,t);var r="",n=0;for(;nthis.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return E(this,e,r);case"utf8":case"utf-8":return T(this,e,r);case"ascii":return A(this,e,r);case"latin1":case"binary":return S(this,e,r);case"base64":return k(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return L(this,e,r);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}.apply(this,arguments)},e.prototype.toLocaleString=e.prototype.toString,e.prototype.equals=function(t){if(!e.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===e.compare(this,t)},e.prototype.inspect=function(){var t="",e=r.INSPECT_MAX_BYTES;return t=this.toString("hex",0,e).replace(/(.{2})/g,"$1 ").trim(),this.length>e&&(t+=" ... "),""},i&&(e.prototype[i]=e.prototype.inspect),e.prototype.compare=function(t,r,n,a,i){if(j(t,Uint8Array)&&(t=e.from(t,t.offset,t.byteLength)),!e.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===r&&(r=0),void 0===n&&(n=t?t.length:0),void 0===a&&(a=0),void 0===i&&(i=this.length),r<0||n>t.length||a<0||i>this.length)throw new RangeError("out of range index");if(a>=i&&r>=n)return 0;if(a>=i)return-1;if(r>=n)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(a>>>=0),s=(n>>>=0)-(r>>>=0),l=Math.min(o,s),c=this.slice(a,i),u=t.slice(r,n),h=0;h>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0)}var a=this.length-e;if((void 0===r||r>a)&&(r=a),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var i=!1;;)switch(n){case"hex":return m(this,t,e,r);case"utf8":case"utf-8":return y(this,t,e,r);case"ascii":return x(this,t,e,r);case"latin1":case"binary":return b(this,t,e,r);case"base64":return _(this,t,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return w(this,t,e,r);default:if(i)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),i=!0}},e.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var M=4096;function A(t,e,r){var n="";r=Math.min(t.length,r);for(var a=e;an)&&(r=n);for(var a="",i=e;ir)throw new RangeError("Trying to access beyond buffer length")}function P(t,r,n,a,i,o){if(!e.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(r>i||rt.length)throw new RangeError("Index out of range")}function O(t,e,r,n,a,i){if(r+n>t.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function z(t,e,r,n,i){return e=+e,r>>>=0,i||O(t,0,r,4),a.write(t,e,r,n,23,4),r+4}function I(t,e,r,n,i){return e=+e,r>>>=0,i||O(t,0,r,8),a.write(t,e,r,n,52,8),r+8}e.prototype.slice=function(t,r){var n=this.length;(t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(r=void 0===r?n:~~r)<0?(r+=n)<0&&(r=0):r>n&&(r=n),r>>=0,e>>>=0,r||C(t,e,this.length);for(var n=this[t],a=1,i=0;++i>>=0,e>>>=0,r||C(t,e,this.length);for(var n=this[t+--e],a=1;e>0&&(a*=256);)n+=this[t+--e]*a;return n},e.prototype.readUInt8=function(t,e){return t>>>=0,e||C(t,1,this.length),this[t]},e.prototype.readUInt16LE=function(t,e){return t>>>=0,e||C(t,2,this.length),this[t]|this[t+1]<<8},e.prototype.readUInt16BE=function(t,e){return t>>>=0,e||C(t,2,this.length),this[t]<<8|this[t+1]},e.prototype.readUInt32LE=function(t,e){return t>>>=0,e||C(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},e.prototype.readUInt32BE=function(t,e){return t>>>=0,e||C(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},e.prototype.readIntLE=function(t,e,r){t>>>=0,e>>>=0,r||C(t,e,this.length);for(var n=this[t],a=1,i=0;++i=(a*=128)&&(n-=Math.pow(2,8*e)),n},e.prototype.readIntBE=function(t,e,r){t>>>=0,e>>>=0,r||C(t,e,this.length);for(var n=e,a=1,i=this[t+--n];n>0&&(a*=256);)i+=this[t+--n]*a;return i>=(a*=128)&&(i-=Math.pow(2,8*e)),i},e.prototype.readInt8=function(t,e){return t>>>=0,e||C(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},e.prototype.readInt16LE=function(t,e){t>>>=0,e||C(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},e.prototype.readInt16BE=function(t,e){t>>>=0,e||C(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},e.prototype.readInt32LE=function(t,e){return t>>>=0,e||C(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},e.prototype.readInt32BE=function(t,e){return t>>>=0,e||C(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},e.prototype.readFloatLE=function(t,e){return t>>>=0,e||C(t,4,this.length),a.read(this,t,!0,23,4)},e.prototype.readFloatBE=function(t,e){return t>>>=0,e||C(t,4,this.length),a.read(this,t,!1,23,4)},e.prototype.readDoubleLE=function(t,e){return t>>>=0,e||C(t,8,this.length),a.read(this,t,!0,52,8)},e.prototype.readDoubleBE=function(t,e){return t>>>=0,e||C(t,8,this.length),a.read(this,t,!1,52,8)},e.prototype.writeUIntLE=function(t,e,r,n){(t=+t,e>>>=0,r>>>=0,n)||P(this,t,e,r,Math.pow(2,8*r)-1,0);var a=1,i=0;for(this[e]=255&t;++i>>=0,r>>>=0,n)||P(this,t,e,r,Math.pow(2,8*r)-1,0);var a=r-1,i=1;for(this[e+a]=255&t;--a>=0&&(i*=256);)this[e+a]=t/i&255;return e+r},e.prototype.writeUInt8=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,1,255,0),this[e]=255&t,e+1},e.prototype.writeUInt16LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},e.prototype.writeUInt16BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},e.prototype.writeUInt32LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},e.prototype.writeUInt32BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},e.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var a=Math.pow(2,8*r-1);P(this,t,e,r,a-1,-a)}var i=0,o=1,s=0;for(this[e]=255&t;++i>0)-s&255;return e+r},e.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var a=Math.pow(2,8*r-1);P(this,t,e,r,a-1,-a)}var i=r-1,o=1,s=0;for(this[e+i]=255&t;--i>=0&&(o*=256);)t<0&&0===s&&0!==this[e+i+1]&&(s=1),this[e+i]=(t/o>>0)-s&255;return e+r},e.prototype.writeInt8=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},e.prototype.writeInt16LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},e.prototype.writeInt16BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},e.prototype.writeInt32LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},e.prototype.writeInt32BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},e.prototype.writeFloatLE=function(t,e,r){return z(this,t,e,!0,r)},e.prototype.writeFloatBE=function(t,e,r){return z(this,t,e,!1,r)},e.prototype.writeDoubleLE=function(t,e,r){return I(this,t,e,!0,r)},e.prototype.writeDoubleBE=function(t,e,r){return I(this,t,e,!1,r)},e.prototype.copy=function(t,r,n,a){if(!e.isBuffer(t))throw new TypeError("argument should be a Buffer");if(n||(n=0),a||0===a||(a=this.length),r>=t.length&&(r=t.length),r||(r=0),a>0&&a=this.length)throw new RangeError("Index out of range");if(a<0)throw new RangeError("sourceEnd out of bounds");a>this.length&&(a=this.length),t.length-r=0;--o)t[o+r]=this[o+n];else Uint8Array.prototype.set.call(t,this.subarray(n,a),r);return i},e.prototype.fill=function(t,r,n,a){if("string"==typeof t){if("string"==typeof r?(a=r,r=0,n=this.length):"string"==typeof n&&(a=n,n=this.length),void 0!==a&&"string"!=typeof a)throw new TypeError("encoding must be a string");if("string"==typeof a&&!e.isEncoding(a))throw new TypeError("Unknown encoding: "+a);if(1===t.length){var i=t.charCodeAt(0);("utf8"===a&&i<128||"latin1"===a)&&(t=i)}}else"number"==typeof t?t&=255:"boolean"==typeof t&&(t=Number(t));if(r<0||this.length>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"==typeof t)for(o=r;o55295&&r<57344){if(!a){if(r>56319){(e-=3)>-1&&i.push(239,191,189);continue}if(o+1===n){(e-=3)>-1&&i.push(239,191,189);continue}a=r;continue}if(r<56320){(e-=3)>-1&&i.push(239,191,189),a=r;continue}r=65536+(a-55296<<10|r-56320)}else a&&(e-=3)>-1&&i.push(239,191,189);if(a=null,r<128){if((e-=1)<0)break;i.push(r)}else if(r<2048){if((e-=2)<0)break;i.push(r>>6|192,63&r|128)}else if(r<65536){if((e-=3)<0)break;i.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;i.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return i}function B(t){return n.toByteArray(function(t){if((t=(t=t.split("=")[0]).trim().replace(D,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function N(t,e,r,n){for(var a=0;a=e.length||a>=t.length);++a)e[a+r]=t[a];return a}function j(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function V(t){return t!=t}}).call(this,t("buffer").Buffer)},{"base64-js":76,buffer:107,ieee754:413}],108:[function(t,e,r){"use strict";var n=t("./lib/monotone"),a=t("./lib/triangulation"),i=t("./lib/delaunay"),o=t("./lib/filter");function s(t){return[Math.min(t[0],t[1]),Math.max(t[0],t[1])]}function l(t,e){return t[0]-e[0]||t[1]-e[1]}function c(t,e,r){return e in t?t[e]:r}e.exports=function(t,e,r){Array.isArray(e)?(r=r||{},e=e||[]):(r=e||{},e=[]);var u=!!c(r,"delaunay",!0),h=!!c(r,"interior",!0),f=!!c(r,"exterior",!0),p=!!c(r,"infinity",!1);if(!h&&!f||0===t.length)return[];var d=n(t,e);if(u||h!==f||p){for(var g=a(t.length,function(t){return t.map(s).sort(l)}(e)),v=0;v0;){for(var u=r.pop(),s=r.pop(),h=-1,f=-1,l=o[s],d=1;d=0||(e.flip(s,u),a(t,e,r,h,s,f),a(t,e,r,s,f,h),a(t,e,r,f,u,h),a(t,e,r,u,h,f)))}}},{"binary-search-bounds":113,"robust-in-sphere":506}],110:[function(t,e,r){"use strict";var n,a=t("binary-search-bounds");function i(t,e,r,n,a,i,o){this.cells=t,this.neighbor=e,this.flags=n,this.constraint=r,this.active=a,this.next=i,this.boundary=o}function o(t,e){return t[0]-e[0]||t[1]-e[1]||t[2]-e[2]}e.exports=function(t,e,r){var n=function(t,e){for(var r=t.cells(),n=r.length,a=0;a0||l.length>0;){for(;s.length>0;){var p=s.pop();if(c[p]!==-a){c[p]=a;u[p];for(var d=0;d<3;++d){var g=f[3*p+d];g>=0&&0===c[g]&&(h[3*p+d]?l.push(g):(s.push(g),c[g]=a))}}}var v=l;l=s,s=v,l.length=0,a=-a}var m=function(t,e,r){for(var n=0,a=0;a1&&a(r[f[p-2]],r[f[p-1]],i)>0;)t.push([f[p-1],f[p-2],o]),p-=1;f.length=p,f.push(o);var d=u.upperIds;for(p=d.length;p>1&&a(r[d[p-2]],r[d[p-1]],i)<0;)t.push([d[p-2],d[p-1],o]),p-=1;d.length=p,d.push(o)}}function p(t,e){var r;return(r=t.a[0]m[0]&&a.push(new c(m,v,s,h),new c(v,m,o,h))}a.sort(u);for(var y=a[0].a[0]-(1+Math.abs(a[0].a[0]))*Math.pow(2,-52),x=[new l([y,1],[y,0],-1,[],[],[],[])],b=[],h=0,_=a.length;h<_;++h){var w=a[h],k=w.type;k===i?f(b,x,t,w.a,w.idx):k===s?d(x,t,w):g(x,t,w)}return b}},{"binary-search-bounds":113,"robust-orientation":508}],112:[function(t,e,r){"use strict";var n=t("binary-search-bounds");function a(t,e){this.stars=t,this.edges=e}e.exports=function(t,e){for(var r=new Array(t),n=0;n=0}}(),i.removeTriangle=function(t,e,r){var n=this.stars;o(n[t],e,r),o(n[e],r,t),o(n[r],t,e)},i.addTriangle=function(t,e,r){var n=this.stars;n[t].push(e,r),n[e].push(r,t),n[r].push(t,e)},i.opposite=function(t,e){for(var r=this.stars[e],n=1,a=r.length;n>>1,x=a[m]"];return a?e.indexOf("c")<0?i.push(";if(x===y){return m}else if(x<=y){"):i.push(";var p=c(x,y);if(p===0){return m}else if(p<=0){"):i.push(";if(",e,"){i=m;"),r?i.push("l=m+1}else{h=m-1}"):i.push("h=m-1}else{l=m+1}"),i.push("}"),a?i.push("return -1};"):i.push("return i};"),i.join("")}function a(t,e,r,a){return new Function([n("A","x"+t+"y",e,["y"],a),n("P","c(x,y)"+t+"0",e,["y","c"],a),"function dispatchBsearch",r,"(a,y,c,l,h){if(typeof(c)==='function'){return P(a,(l===void 0)?0:l|0,(h===void 0)?a.length-1:h|0,y,c)}else{return A(a,(c===void 0)?0:c|0,(l===void 0)?a.length-1:l|0,y)}}return dispatchBsearch",r].join(""))()}e.exports={ge:a(">=",!1,"GE"),gt:a(">",!1,"GT"),lt:a("<",!0,"LT"),le:a("<=",!0,"LE"),eq:a("-",!0,"EQ",!0)}},{}],114:[function(t,e,r){"use strict";e.exports=function(t){for(var e=1,r=1;rr?r:t:te?e:t}},{}],118:[function(t,e,r){"use strict";e.exports=function(t,e,r){var n;if(r){n=e;for(var a=new Array(e.length),i=0;ie[2]?1:0)}function m(t,e,r){if(0!==t.length){if(e)for(var n=0;n=0;--i){var x=e[u=(S=n[i])[0]],b=x[0],_=x[1],w=t[b],k=t[_];if((w[0]-k[0]||w[1]-k[1])<0){var T=b;b=_,_=T}x[0]=b;var M,A=x[1]=S[1];for(a&&(M=x[2]);i>0&&n[i-1][0]===u;){var S,E=(S=n[--i])[1];a?e.push([A,E,M]):e.push([A,E]),A=E}a?e.push([A,_,M]):e.push([A,_])}return f}(t,e,f,v,r));return m(e,y,r),!!y||(f.length>0||v.length>0)}},{"./lib/rat-seg-intersect":119,"big-rat":80,"big-rat/cmp":78,"big-rat/to-float":92,"box-intersect":98,nextafter:452,"rat-vec":487,"robust-segment-intersect":511,"union-find":544}],119:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){var i=s(e,t),h=s(n,r),f=u(i,h);if(0===o(f))return null;var p=s(t,r),d=u(h,p),g=a(d,f),v=c(i,g);return l(t,v)};var n=t("big-rat/mul"),a=t("big-rat/div"),i=t("big-rat/sub"),o=t("big-rat/sign"),s=t("rat-vec/sub"),l=t("rat-vec/add"),c=t("rat-vec/muls");function u(t,e){return i(n(t[0],e[1]),n(t[1],e[0]))}},{"big-rat/div":79,"big-rat/mul":89,"big-rat/sign":90,"big-rat/sub":91,"rat-vec/add":486,"rat-vec/muls":488,"rat-vec/sub":489}],120:[function(t,e,r){"use strict";var n=t("clamp");function a(t,e){null==e&&(e=!0);var r=t[0],a=t[1],i=t[2],o=t[3];return null==o&&(o=e?1:255),e&&(r*=255,a*=255,i*=255,o*=255),16777216*(r=255&n(r,0,255))+((a=255&n(a,0,255))<<16)+((i=255&n(i,0,255))<<8)+(o=255&n(o,0,255))}e.exports=a,e.exports.to=a,e.exports.from=function(t,e){var r=(t=+t)>>>24,n=(16711680&t)>>>16,a=(65280&t)>>>8,i=255&t;return!1===e?[r,n,a,i]:[r/255,n/255,a/255,i/255]}},{clamp:117}],121:[function(t,e,r){"use strict";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},{}],122:[function(t,e,r){"use strict";var n=t("color-rgba"),a=t("clamp"),i=t("dtype");e.exports=function(t,e){"float"!==e&&e||(e="array"),"uint"===e&&(e="uint8"),"uint_clamped"===e&&(e="uint8_clamped");var r=new(i(e))(4),o="uint8"!==e&&"uint8_clamped"!==e;return t.length&&"string"!=typeof t||((t=n(t))[0]/=255,t[1]/=255,t[2]/=255),function(t){return t instanceof Uint8Array||t instanceof Uint8ClampedArray||!!(Array.isArray(t)&&(t[0]>1||0===t[0])&&(t[1]>1||0===t[1])&&(t[2]>1||0===t[2])&&(!t[3]||t[3]>1))}(t)?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:255,o&&(r[0]/=255,r[1]/=255,r[2]/=255,r[3]/=255),r):(o?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:1):(r[0]=a(Math.floor(255*t[0]),0,255),r[1]=a(Math.floor(255*t[1]),0,255),r[2]=a(Math.floor(255*t[2]),0,255),r[3]=null==t[3]?255:a(Math.floor(255*t[3]),0,255)),r)}},{clamp:117,"color-rgba":124,dtype:171}],123:[function(t,e,r){(function(r){"use strict";var n=t("color-name"),a=t("is-plain-obj"),i=t("defined");e.exports=function(t){var e,s,l=[],c=1;if("string"==typeof t)if(n[t])l=n[t].slice(),s="rgb";else if("transparent"===t)c=0,s="rgb",l=[0,0,0];else if(/^#[A-Fa-f0-9]+$/.test(t)){var u=t.slice(1),h=u.length,f=h<=4;c=1,f?(l=[parseInt(u[0]+u[0],16),parseInt(u[1]+u[1],16),parseInt(u[2]+u[2],16)],4===h&&(c=parseInt(u[3]+u[3],16)/255)):(l=[parseInt(u[0]+u[1],16),parseInt(u[2]+u[3],16),parseInt(u[4]+u[5],16)],8===h&&(c=parseInt(u[6]+u[7],16)/255)),l[0]||(l[0]=0),l[1]||(l[1]=0),l[2]||(l[2]=0),s="rgb"}else if(e=/^((?:rgb|hs[lvb]|hwb|cmyk?|xy[zy]|gray|lab|lchu?v?|[ly]uv|lms)a?)\s*\(([^\)]*)\)/.exec(t)){var p=e[1],d="rgb"===p,u=p.replace(/a$/,"");s=u;var h="cmyk"===u?4:"gray"===u?1:3;l=e[2].trim().split(/\s*,\s*/).map(function(t,e){if(/%$/.test(t))return e===h?parseFloat(t)/100:"rgb"===u?255*parseFloat(t)/100:parseFloat(t);if("h"===u[e]){if(/deg$/.test(t))return parseFloat(t);if(void 0!==o[t])return o[t]}return parseFloat(t)}),p===u&&l.push(1),c=d?1:void 0===l[h]?1:l[h],l=l.slice(0,h)}else t.length>10&&/[0-9](?:\s|\/)/.test(t)&&(l=t.match(/([0-9]+)/g).map(function(t){return parseFloat(t)}),s=t.match(/([a-z])/gi).join("").toLowerCase());else if(isNaN(t))if(a(t)){var g=i(t.r,t.red,t.R,null);null!==g?(s="rgb",l=[g,i(t.g,t.green,t.G),i(t.b,t.blue,t.B)]):(s="hsl",l=[i(t.h,t.hue,t.H),i(t.s,t.saturation,t.S),i(t.l,t.lightness,t.L,t.b,t.brightness)]),c=i(t.a,t.alpha,t.opacity,1),null!=t.opacity&&(c/=100)}else(Array.isArray(t)||r.ArrayBuffer&&ArrayBuffer.isView&&ArrayBuffer.isView(t))&&(l=[t[0],t[1],t[2]],s="rgb",c=4===t.length?t[3]:1);else s="rgb",l=[t>>>16,(65280&t)>>>8,255&t];return{space:s,values:l,alpha:c}};var o={red:0,orange:60,yellow:120,green:180,blue:240,purple:300}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"color-name":121,defined:166,"is-plain-obj":423}],124:[function(t,e,r){"use strict";var n=t("color-parse"),a=t("color-space/hsl"),i=t("clamp");e.exports=function(t){var e,r=n(t);return r.space?((e=Array(3))[0]=i(r.values[0],0,255),e[1]=i(r.values[1],0,255),e[2]=i(r.values[2],0,255),"h"===r.space[0]&&(e=a.rgb(e)),e.push(i(r.alpha,0,1)),e):[]}},{clamp:117,"color-parse":123,"color-space/hsl":125}],125:[function(t,e,r){"use strict";var n=t("./rgb");e.exports={name:"hsl",min:[0,0,0],max:[360,100,100],channel:["hue","saturation","lightness"],alias:["HSL"],rgb:function(t){var e,r,n,a,i,o=t[0]/360,s=t[1]/100,l=t[2]/100;if(0===s)return[i=255*l,i,i];e=2*l-(r=l<.5?l*(1+s):l+s-l*s),a=[0,0,0];for(var c=0;c<3;c++)(n=o+1/3*-(c-1))<0?n++:n>1&&n--,i=6*n<1?e+6*(r-e)*n:2*n<1?r:3*n<2?e+(r-e)*(2/3-n)*6:e,a[c]=255*i;return a}},n.hsl=function(t){var e,r,n=t[0]/255,a=t[1]/255,i=t[2]/255,o=Math.min(n,a,i),s=Math.max(n,a,i),l=s-o;return s===o?e=0:n===s?e=(a-i)/l:a===s?e=2+(i-n)/l:i===s&&(e=4+(n-a)/l),(e=Math.min(60*e,360))<0&&(e+=360),r=(o+s)/2,[e,100*(s===o?0:r<=.5?l/(s+o):l/(2-s-o)),100*r]}},{"./rgb":126}],126:[function(t,e,r){"use strict";e.exports={name:"rgb",min:[0,0,0],max:[255,255,255],channel:["red","green","blue"],alias:["RGB"]}},{}],127:[function(t,e,r){e.exports={jet:[{index:0,rgb:[0,0,131]},{index:.125,rgb:[0,60,170]},{index:.375,rgb:[5,255,255]},{index:.625,rgb:[255,255,0]},{index:.875,rgb:[250,0,0]},{index:1,rgb:[128,0,0]}],hsv:[{index:0,rgb:[255,0,0]},{index:.169,rgb:[253,255,2]},{index:.173,rgb:[247,255,2]},{index:.337,rgb:[0,252,4]},{index:.341,rgb:[0,252,10]},{index:.506,rgb:[1,249,255]},{index:.671,rgb:[2,0,253]},{index:.675,rgb:[8,0,253]},{index:.839,rgb:[255,0,251]},{index:.843,rgb:[255,0,245]},{index:1,rgb:[255,0,6]}],hot:[{index:0,rgb:[0,0,0]},{index:.3,rgb:[230,0,0]},{index:.6,rgb:[255,210,0]},{index:1,rgb:[255,255,255]}],cool:[{index:0,rgb:[0,255,255]},{index:1,rgb:[255,0,255]}],spring:[{index:0,rgb:[255,0,255]},{index:1,rgb:[255,255,0]}],summer:[{index:0,rgb:[0,128,102]},{index:1,rgb:[255,255,102]}],autumn:[{index:0,rgb:[255,0,0]},{index:1,rgb:[255,255,0]}],winter:[{index:0,rgb:[0,0,255]},{index:1,rgb:[0,255,128]}],bone:[{index:0,rgb:[0,0,0]},{index:.376,rgb:[84,84,116]},{index:.753,rgb:[169,200,200]},{index:1,rgb:[255,255,255]}],copper:[{index:0,rgb:[0,0,0]},{index:.804,rgb:[255,160,102]},{index:1,rgb:[255,199,127]}],greys:[{index:0,rgb:[0,0,0]},{index:1,rgb:[255,255,255]}],yignbu:[{index:0,rgb:[8,29,88]},{index:.125,rgb:[37,52,148]},{index:.25,rgb:[34,94,168]},{index:.375,rgb:[29,145,192]},{index:.5,rgb:[65,182,196]},{index:.625,rgb:[127,205,187]},{index:.75,rgb:[199,233,180]},{index:.875,rgb:[237,248,217]},{index:1,rgb:[255,255,217]}],greens:[{index:0,rgb:[0,68,27]},{index:.125,rgb:[0,109,44]},{index:.25,rgb:[35,139,69]},{index:.375,rgb:[65,171,93]},{index:.5,rgb:[116,196,118]},{index:.625,rgb:[161,217,155]},{index:.75,rgb:[199,233,192]},{index:.875,rgb:[229,245,224]},{index:1,rgb:[247,252,245]}],yiorrd:[{index:0,rgb:[128,0,38]},{index:.125,rgb:[189,0,38]},{index:.25,rgb:[227,26,28]},{index:.375,rgb:[252,78,42]},{index:.5,rgb:[253,141,60]},{index:.625,rgb:[254,178,76]},{index:.75,rgb:[254,217,118]},{index:.875,rgb:[255,237,160]},{index:1,rgb:[255,255,204]}],bluered:[{index:0,rgb:[0,0,255]},{index:1,rgb:[255,0,0]}],rdbu:[{index:0,rgb:[5,10,172]},{index:.35,rgb:[106,137,247]},{index:.5,rgb:[190,190,190]},{index:.6,rgb:[220,170,132]},{index:.7,rgb:[230,145,90]},{index:1,rgb:[178,10,28]}],picnic:[{index:0,rgb:[0,0,255]},{index:.1,rgb:[51,153,255]},{index:.2,rgb:[102,204,255]},{index:.3,rgb:[153,204,255]},{index:.4,rgb:[204,204,255]},{index:.5,rgb:[255,255,255]},{index:.6,rgb:[255,204,255]},{index:.7,rgb:[255,153,255]},{index:.8,rgb:[255,102,204]},{index:.9,rgb:[255,102,102]},{index:1,rgb:[255,0,0]}],rainbow:[{index:0,rgb:[150,0,90]},{index:.125,rgb:[0,0,200]},{index:.25,rgb:[0,25,255]},{index:.375,rgb:[0,152,255]},{index:.5,rgb:[44,255,150]},{index:.625,rgb:[151,255,0]},{index:.75,rgb:[255,234,0]},{index:.875,rgb:[255,111,0]},{index:1,rgb:[255,0,0]}],portland:[{index:0,rgb:[12,51,131]},{index:.25,rgb:[10,136,186]},{index:.5,rgb:[242,211,56]},{index:.75,rgb:[242,143,56]},{index:1,rgb:[217,30,30]}],blackbody:[{index:0,rgb:[0,0,0]},{index:.2,rgb:[230,0,0]},{index:.4,rgb:[230,210,0]},{index:.7,rgb:[255,255,255]},{index:1,rgb:[160,200,255]}],earth:[{index:0,rgb:[0,0,130]},{index:.1,rgb:[0,180,180]},{index:.2,rgb:[40,210,40]},{index:.4,rgb:[230,230,50]},{index:.6,rgb:[120,70,20]},{index:1,rgb:[255,255,255]}],electric:[{index:0,rgb:[0,0,0]},{index:.15,rgb:[30,0,100]},{index:.4,rgb:[120,0,100]},{index:.6,rgb:[160,90,0]},{index:.8,rgb:[230,200,0]},{index:1,rgb:[255,250,220]}],alpha:[{index:0,rgb:[255,255,255,0]},{index:1,rgb:[255,255,255,1]}],viridis:[{index:0,rgb:[68,1,84]},{index:.13,rgb:[71,44,122]},{index:.25,rgb:[59,81,139]},{index:.38,rgb:[44,113,142]},{index:.5,rgb:[33,144,141]},{index:.63,rgb:[39,173,129]},{index:.75,rgb:[92,200,99]},{index:.88,rgb:[170,220,50]},{index:1,rgb:[253,231,37]}],inferno:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[31,12,72]},{index:.25,rgb:[85,15,109]},{index:.38,rgb:[136,34,106]},{index:.5,rgb:[186,54,85]},{index:.63,rgb:[227,89,51]},{index:.75,rgb:[249,140,10]},{index:.88,rgb:[249,201,50]},{index:1,rgb:[252,255,164]}],magma:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[28,16,68]},{index:.25,rgb:[79,18,123]},{index:.38,rgb:[129,37,129]},{index:.5,rgb:[181,54,122]},{index:.63,rgb:[229,80,100]},{index:.75,rgb:[251,135,97]},{index:.88,rgb:[254,194,135]},{index:1,rgb:[252,253,191]}],plasma:[{index:0,rgb:[13,8,135]},{index:.13,rgb:[75,3,161]},{index:.25,rgb:[125,3,168]},{index:.38,rgb:[168,34,150]},{index:.5,rgb:[203,70,121]},{index:.63,rgb:[229,107,93]},{index:.75,rgb:[248,148,65]},{index:.88,rgb:[253,195,40]},{index:1,rgb:[240,249,33]}],warm:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[172,0,187]},{index:.25,rgb:[219,0,170]},{index:.38,rgb:[255,0,130]},{index:.5,rgb:[255,63,74]},{index:.63,rgb:[255,123,0]},{index:.75,rgb:[234,176,0]},{index:.88,rgb:[190,228,0]},{index:1,rgb:[147,255,0]}],cool:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[116,0,218]},{index:.25,rgb:[98,74,237]},{index:.38,rgb:[68,146,231]},{index:.5,rgb:[0,204,197]},{index:.63,rgb:[0,247,146]},{index:.75,rgb:[0,255,88]},{index:.88,rgb:[40,255,8]},{index:1,rgb:[147,255,0]}],"rainbow-soft":[{index:0,rgb:[125,0,179]},{index:.1,rgb:[199,0,180]},{index:.2,rgb:[255,0,121]},{index:.3,rgb:[255,108,0]},{index:.4,rgb:[222,194,0]},{index:.5,rgb:[150,255,0]},{index:.6,rgb:[0,255,55]},{index:.7,rgb:[0,246,150]},{index:.8,rgb:[50,167,222]},{index:.9,rgb:[103,51,235]},{index:1,rgb:[124,0,186]}],bathymetry:[{index:0,rgb:[40,26,44]},{index:.13,rgb:[59,49,90]},{index:.25,rgb:[64,76,139]},{index:.38,rgb:[63,110,151]},{index:.5,rgb:[72,142,158]},{index:.63,rgb:[85,174,163]},{index:.75,rgb:[120,206,163]},{index:.88,rgb:[187,230,172]},{index:1,rgb:[253,254,204]}],cdom:[{index:0,rgb:[47,15,62]},{index:.13,rgb:[87,23,86]},{index:.25,rgb:[130,28,99]},{index:.38,rgb:[171,41,96]},{index:.5,rgb:[206,67,86]},{index:.63,rgb:[230,106,84]},{index:.75,rgb:[242,149,103]},{index:.88,rgb:[249,193,135]},{index:1,rgb:[254,237,176]}],chlorophyll:[{index:0,rgb:[18,36,20]},{index:.13,rgb:[25,63,41]},{index:.25,rgb:[24,91,59]},{index:.38,rgb:[13,119,72]},{index:.5,rgb:[18,148,80]},{index:.63,rgb:[80,173,89]},{index:.75,rgb:[132,196,122]},{index:.88,rgb:[175,221,162]},{index:1,rgb:[215,249,208]}],density:[{index:0,rgb:[54,14,36]},{index:.13,rgb:[89,23,80]},{index:.25,rgb:[110,45,132]},{index:.38,rgb:[120,77,178]},{index:.5,rgb:[120,113,213]},{index:.63,rgb:[115,151,228]},{index:.75,rgb:[134,185,227]},{index:.88,rgb:[177,214,227]},{index:1,rgb:[230,241,241]}],"freesurface-blue":[{index:0,rgb:[30,4,110]},{index:.13,rgb:[47,14,176]},{index:.25,rgb:[41,45,236]},{index:.38,rgb:[25,99,212]},{index:.5,rgb:[68,131,200]},{index:.63,rgb:[114,156,197]},{index:.75,rgb:[157,181,203]},{index:.88,rgb:[200,208,216]},{index:1,rgb:[241,237,236]}],"freesurface-red":[{index:0,rgb:[60,9,18]},{index:.13,rgb:[100,17,27]},{index:.25,rgb:[142,20,29]},{index:.38,rgb:[177,43,27]},{index:.5,rgb:[192,87,63]},{index:.63,rgb:[205,125,105]},{index:.75,rgb:[216,162,148]},{index:.88,rgb:[227,199,193]},{index:1,rgb:[241,237,236]}],oxygen:[{index:0,rgb:[64,5,5]},{index:.13,rgb:[106,6,15]},{index:.25,rgb:[144,26,7]},{index:.38,rgb:[168,64,3]},{index:.5,rgb:[188,100,4]},{index:.63,rgb:[206,136,11]},{index:.75,rgb:[220,174,25]},{index:.88,rgb:[231,215,44]},{index:1,rgb:[248,254,105]}],par:[{index:0,rgb:[51,20,24]},{index:.13,rgb:[90,32,35]},{index:.25,rgb:[129,44,34]},{index:.38,rgb:[159,68,25]},{index:.5,rgb:[182,99,19]},{index:.63,rgb:[199,134,22]},{index:.75,rgb:[212,171,35]},{index:.88,rgb:[221,210,54]},{index:1,rgb:[225,253,75]}],phase:[{index:0,rgb:[145,105,18]},{index:.13,rgb:[184,71,38]},{index:.25,rgb:[186,58,115]},{index:.38,rgb:[160,71,185]},{index:.5,rgb:[110,97,218]},{index:.63,rgb:[50,123,164]},{index:.75,rgb:[31,131,110]},{index:.88,rgb:[77,129,34]},{index:1,rgb:[145,105,18]}],salinity:[{index:0,rgb:[42,24,108]},{index:.13,rgb:[33,50,162]},{index:.25,rgb:[15,90,145]},{index:.38,rgb:[40,118,137]},{index:.5,rgb:[59,146,135]},{index:.63,rgb:[79,175,126]},{index:.75,rgb:[120,203,104]},{index:.88,rgb:[193,221,100]},{index:1,rgb:[253,239,154]}],temperature:[{index:0,rgb:[4,35,51]},{index:.13,rgb:[23,51,122]},{index:.25,rgb:[85,59,157]},{index:.38,rgb:[129,79,143]},{index:.5,rgb:[175,95,130]},{index:.63,rgb:[222,112,101]},{index:.75,rgb:[249,146,66]},{index:.88,rgb:[249,196,65]},{index:1,rgb:[232,250,91]}],turbidity:[{index:0,rgb:[34,31,27]},{index:.13,rgb:[65,50,41]},{index:.25,rgb:[98,69,52]},{index:.38,rgb:[131,89,57]},{index:.5,rgb:[161,112,59]},{index:.63,rgb:[185,140,66]},{index:.75,rgb:[202,174,88]},{index:.88,rgb:[216,209,126]},{index:1,rgb:[233,246,171]}],"velocity-blue":[{index:0,rgb:[17,32,64]},{index:.13,rgb:[35,52,116]},{index:.25,rgb:[29,81,156]},{index:.38,rgb:[31,113,162]},{index:.5,rgb:[50,144,169]},{index:.63,rgb:[87,173,176]},{index:.75,rgb:[149,196,189]},{index:.88,rgb:[203,221,211]},{index:1,rgb:[254,251,230]}],"velocity-green":[{index:0,rgb:[23,35,19]},{index:.13,rgb:[24,64,38]},{index:.25,rgb:[11,95,45]},{index:.38,rgb:[39,123,35]},{index:.5,rgb:[95,146,12]},{index:.63,rgb:[152,165,18]},{index:.75,rgb:[201,186,69]},{index:.88,rgb:[233,216,137]},{index:1,rgb:[255,253,205]}],cubehelix:[{index:0,rgb:[0,0,0]},{index:.07,rgb:[22,5,59]},{index:.13,rgb:[60,4,105]},{index:.2,rgb:[109,1,135]},{index:.27,rgb:[161,0,147]},{index:.33,rgb:[210,2,142]},{index:.4,rgb:[251,11,123]},{index:.47,rgb:[255,29,97]},{index:.53,rgb:[255,54,69]},{index:.6,rgb:[255,85,46]},{index:.67,rgb:[255,120,34]},{index:.73,rgb:[255,157,37]},{index:.8,rgb:[241,191,57]},{index:.87,rgb:[224,220,93]},{index:.93,rgb:[218,241,142]},{index:1,rgb:[227,253,198]}]}},{}],128:[function(t,e,r){"use strict";var n=t("./colorScale"),a=t("lerp");function i(t){return[t[0]/255,t[1]/255,t[2]/255,t[3]]}function o(t){for(var e,r="#",n=0;n<3;++n)r+=("00"+(e=(e=t[n]).toString(16))).substr(e.length);return r}function s(t){return"rgba("+t.join(",")+")"}e.exports=function(t){var e,r,l,c,u,h,f,p,d,g;t||(t={});p=(t.nshades||72)-1,f=t.format||"hex",(h=t.colormap)||(h="jet");if("string"==typeof h){if(h=h.toLowerCase(),!n[h])throw Error(h+" not a supported colorscale");u=n[h]}else{if(!Array.isArray(h))throw Error("unsupported colormap option",h);u=h.slice()}if(u.length>p+1)throw new Error(h+" map requires nshades to be at least size "+u.length);d=Array.isArray(t.alpha)?2!==t.alpha.length?[1,1]:t.alpha.slice():"number"==typeof t.alpha?[t.alpha,t.alpha]:[1,1];e=u.map(function(t){return Math.round(t.index*p)}),d[0]=Math.min(Math.max(d[0],0),1),d[1]=Math.min(Math.max(d[1],0),1);var v=u.map(function(t,e){var r=u[e].index,n=u[e].rgb.slice();return 4===n.length&&n[3]>=0&&n[3]<=1?n:(n[3]=d[0]+(d[1]-d[0])*r,n)}),m=[];for(g=0;g0?-1:l(t,e,i)?-1:1:0===s?c>0?1:l(t,e,r)?1:-1:a(c-s)}var f=n(t,e,r);if(f>0)return o>0&&n(t,e,i)>0?1:-1;if(f<0)return o>0||n(t,e,i)>0?1:-1;var p=n(t,e,i);return p>0?1:l(t,e,r)?1:-1};var n=t("robust-orientation"),a=t("signum"),i=t("two-sum"),o=t("robust-product"),s=t("robust-sum");function l(t,e,r){var n=i(t[0],-e[0]),a=i(t[1],-e[1]),l=i(r[0],-e[0]),c=i(r[1],-e[1]),u=s(o(n,l),o(a,c));return u[u.length-1]>=0}},{"robust-orientation":508,"robust-product":509,"robust-sum":513,signum:514,"two-sum":542}],130:[function(t,e,r){e.exports=function(t,e){var r=t.length,i=t.length-e.length;if(i)return i;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:return t[0]+t[1]-e[0]-e[1]||n(t[0],t[1])-n(e[0],e[1]);case 3:var o=t[0]+t[1],s=e[0]+e[1];if(i=o+t[2]-(s+e[2]))return i;var l=n(t[0],t[1]),c=n(e[0],e[1]);return n(l,t[2])-n(c,e[2])||n(l+t[2],o)-n(c+e[2],s);case 4:var u=t[0],h=t[1],f=t[2],p=t[3],d=e[0],g=e[1],v=e[2],m=e[3];return u+h+f+p-(d+g+v+m)||n(u,h,f,p)-n(d,g,v,m,d)||n(u+h,u+f,u+p,h+f,h+p,f+p)-n(d+g,d+v,d+m,g+v,g+m,v+m)||n(u+h+f,u+h+p,u+f+p,h+f+p)-n(d+g+v,d+g+m,d+v+m,g+v+m);default:for(var y=t.slice().sort(a),x=e.slice().sort(a),b=0;bt[r][0]&&(r=n);return er?[[r],[e]]:[[e]]}},{}],134:[function(t,e,r){"use strict";e.exports=function(t){var e=n(t),r=e.length;if(r<=2)return[];for(var a=new Array(r),i=e[r-1],o=0;o=e[l]&&(s+=1);i[o]=s}}return t}(o,r)}};var n=t("incremental-convex-hull"),a=t("affine-hull")},{"affine-hull":65,"incremental-convex-hull":414}],136:[function(t,e,r){e.exports={AFG:"afghan",ALA:"\\b\\wland",ALB:"albania",DZA:"algeria",ASM:"^(?=.*americ).*samoa",AND:"andorra",AGO:"angola",AIA:"anguill?a",ATA:"antarctica",ATG:"antigua",ARG:"argentin",ARM:"armenia",ABW:"^(?!.*bonaire).*\\baruba",AUS:"australia",AUT:"^(?!.*hungary).*austria|\\baustri.*\\bemp",AZE:"azerbaijan",BHS:"bahamas",BHR:"bahrain",BGD:"bangladesh|^(?=.*east).*paki?stan",BRB:"barbados",BLR:"belarus|byelo",BEL:"^(?!.*luxem).*belgium",BLZ:"belize|^(?=.*british).*honduras",BEN:"benin|dahome",BMU:"bermuda",BTN:"bhutan",BOL:"bolivia",BES:"^(?=.*bonaire).*eustatius|^(?=.*carib).*netherlands|\\bbes.?islands",BIH:"herzegovina|bosnia",BWA:"botswana|bechuana",BVT:"bouvet",BRA:"brazil",IOT:"british.?indian.?ocean",BRN:"brunei",BGR:"bulgaria",BFA:"burkina|\\bfaso|upper.?volta",BDI:"burundi",CPV:"verde",KHM:"cambodia|kampuchea|khmer",CMR:"cameroon",CAN:"canada",CYM:"cayman",CAF:"\\bcentral.african.republic",TCD:"\\bchad",CHL:"\\bchile",CHN:"^(?!.*\\bmac)(?!.*\\bhong)(?!.*\\btai)(?!.*\\brep).*china|^(?=.*peo)(?=.*rep).*china",CXR:"christmas",CCK:"\\bcocos|keeling",COL:"colombia",COM:"comoro",COG:"^(?!.*\\bdem)(?!.*\\bd[\\.]?r)(?!.*kinshasa)(?!.*zaire)(?!.*belg)(?!.*l.opoldville)(?!.*free).*\\bcongo",COK:"\\bcook",CRI:"costa.?rica",CIV:"ivoire|ivory",HRV:"croatia",CUB:"\\bcuba",CUW:"^(?!.*bonaire).*\\bcura(c|\xe7)ao",CYP:"cyprus",CSK:"czechoslovakia",CZE:"^(?=.*rep).*czech|czechia|bohemia",COD:"\\bdem.*congo|congo.*\\bdem|congo.*\\bd[\\.]?r|\\bd[\\.]?r.*congo|belgian.?congo|congo.?free.?state|kinshasa|zaire|l.opoldville|drc|droc|rdc",DNK:"denmark",DJI:"djibouti",DMA:"dominica(?!n)",DOM:"dominican.rep",ECU:"ecuador",EGY:"egypt",SLV:"el.?salvador",GNQ:"guine.*eq|eq.*guine|^(?=.*span).*guinea",ERI:"eritrea",EST:"estonia",ETH:"ethiopia|abyssinia",FLK:"falkland|malvinas",FRO:"faroe|faeroe",FJI:"fiji",FIN:"finland",FRA:"^(?!.*\\bdep)(?!.*martinique).*france|french.?republic|\\bgaul",GUF:"^(?=.*french).*guiana",PYF:"french.?polynesia|tahiti",ATF:"french.?southern",GAB:"gabon",GMB:"gambia",GEO:"^(?!.*south).*georgia",DDR:"german.?democratic.?republic|democratic.?republic.*germany|east.germany",DEU:"^(?!.*east).*germany|^(?=.*\\bfed.*\\brep).*german",GHA:"ghana|gold.?coast",GIB:"gibraltar",GRC:"greece|hellenic|hellas",GRL:"greenland",GRD:"grenada",GLP:"guadeloupe",GUM:"\\bguam",GTM:"guatemala",GGY:"guernsey",GIN:"^(?!.*eq)(?!.*span)(?!.*bissau)(?!.*portu)(?!.*new).*guinea",GNB:"bissau|^(?=.*portu).*guinea",GUY:"guyana|british.?guiana",HTI:"haiti",HMD:"heard.*mcdonald",VAT:"holy.?see|vatican|papal.?st",HND:"^(?!.*brit).*honduras",HKG:"hong.?kong",HUN:"^(?!.*austr).*hungary",ISL:"iceland",IND:"india(?!.*ocea)",IDN:"indonesia",IRN:"\\biran|persia",IRQ:"\\biraq|mesopotamia",IRL:"(^ireland)|(^republic.*ireland)",IMN:"^(?=.*isle).*\\bman",ISR:"israel",ITA:"italy",JAM:"jamaica",JPN:"japan",JEY:"jersey",JOR:"jordan",KAZ:"kazak",KEN:"kenya|british.?east.?africa|east.?africa.?prot",KIR:"kiribati",PRK:"^(?=.*democrat|people|north|d.*p.*.r).*\\bkorea|dprk|korea.*(d.*p.*r)",KWT:"kuwait",KGZ:"kyrgyz|kirghiz",LAO:"\\blaos?\\b",LVA:"latvia",LBN:"lebanon",LSO:"lesotho|basuto",LBR:"liberia",LBY:"libya",LIE:"liechtenstein",LTU:"lithuania",LUX:"^(?!.*belg).*luxem",MAC:"maca(o|u)",MDG:"madagascar|malagasy",MWI:"malawi|nyasa",MYS:"malaysia",MDV:"maldive",MLI:"\\bmali\\b",MLT:"\\bmalta",MHL:"marshall",MTQ:"martinique",MRT:"mauritania",MUS:"mauritius",MYT:"\\bmayotte",MEX:"\\bmexic",FSM:"fed.*micronesia|micronesia.*fed",MCO:"monaco",MNG:"mongolia",MNE:"^(?!.*serbia).*montenegro",MSR:"montserrat",MAR:"morocco|\\bmaroc",MOZ:"mozambique",MMR:"myanmar|burma",NAM:"namibia",NRU:"nauru",NPL:"nepal",NLD:"^(?!.*\\bant)(?!.*\\bcarib).*netherlands",ANT:"^(?=.*\\bant).*(nether|dutch)",NCL:"new.?caledonia",NZL:"new.?zealand",NIC:"nicaragua",NER:"\\bniger(?!ia)",NGA:"nigeria",NIU:"niue",NFK:"norfolk",MNP:"mariana",NOR:"norway",OMN:"\\boman|trucial",PAK:"^(?!.*east).*paki?stan",PLW:"palau",PSE:"palestin|\\bgaza|west.?bank",PAN:"panama",PNG:"papua|new.?guinea",PRY:"paraguay",PER:"peru",PHL:"philippines",PCN:"pitcairn",POL:"poland",PRT:"portugal",PRI:"puerto.?rico",QAT:"qatar",KOR:"^(?!.*d.*p.*r)(?!.*democrat)(?!.*people)(?!.*north).*\\bkorea(?!.*d.*p.*r)",MDA:"moldov|b(a|e)ssarabia",REU:"r(e|\xe9)union",ROU:"r(o|u|ou)mania",RUS:"\\brussia|soviet.?union|u\\.?s\\.?s\\.?r|socialist.?republics",RWA:"rwanda",BLM:"barth(e|\xe9)lemy",SHN:"helena",KNA:"kitts|\\bnevis",LCA:"\\blucia",MAF:"^(?=.*collectivity).*martin|^(?=.*france).*martin(?!ique)|^(?=.*french).*martin(?!ique)",SPM:"miquelon",VCT:"vincent",WSM:"^(?!.*amer).*samoa",SMR:"san.?marino",STP:"\\bs(a|\xe3)o.?tom(e|\xe9)",SAU:"\\bsa\\w*.?arabia",SEN:"senegal",SRB:"^(?!.*monte).*serbia",SYC:"seychell",SLE:"sierra",SGP:"singapore",SXM:"^(?!.*martin)(?!.*saba).*maarten",SVK:"^(?!.*cze).*slovak",SVN:"slovenia",SLB:"solomon",SOM:"somali",ZAF:"south.africa|s\\\\..?africa",SGS:"south.?georgia|sandwich",SSD:"\\bs\\w*.?sudan",ESP:"spain",LKA:"sri.?lanka|ceylon",SDN:"^(?!.*\\bs(?!u)).*sudan",SUR:"surinam|dutch.?guiana",SJM:"svalbard",SWZ:"swaziland",SWE:"sweden",CHE:"switz|swiss",SYR:"syria",TWN:"taiwan|taipei|formosa|^(?!.*peo)(?=.*rep).*china",TJK:"tajik",THA:"thailand|\\bsiam",MKD:"macedonia|fyrom",TLS:"^(?=.*leste).*timor|^(?=.*east).*timor",TGO:"togo",TKL:"tokelau",TON:"tonga",TTO:"trinidad|tobago",TUN:"tunisia",TUR:"turkey",TKM:"turkmen",TCA:"turks",TUV:"tuvalu",UGA:"uganda",UKR:"ukrain",ARE:"emirates|^u\\.?a\\.?e\\.?$|united.?arab.?em",GBR:"united.?kingdom|britain|^u\\.?k\\.?$",TZA:"tanzania",USA:"united.?states\\b(?!.*islands)|\\bu\\.?s\\.?a\\.?\\b|^\\s*u\\.?s\\.?\\b(?!.*islands)",UMI:"minor.?outlying.?is",URY:"uruguay",UZB:"uzbek",VUT:"vanuatu|new.?hebrides",VEN:"venezuela",VNM:"^(?!.*republic).*viet.?nam|^(?=.*socialist).*viet.?nam",VGB:"^(?=.*\\bu\\.?\\s?k).*virgin|^(?=.*brit).*virgin|^(?=.*kingdom).*virgin",VIR:"^(?=.*\\bu\\.?\\s?s).*virgin|^(?=.*states).*virgin",WLF:"futuna|wallis",ESH:"western.sahara",YEM:"^(?!.*arab)(?!.*north)(?!.*sana)(?!.*peo)(?!.*dem)(?!.*south)(?!.*aden)(?!.*\\bp\\.?d\\.?r).*yemen",YMD:"^(?=.*peo).*yemen|^(?!.*rep)(?=.*dem).*yemen|^(?=.*south).*yemen|^(?=.*aden).*yemen|^(?=.*\\bp\\.?d\\.?r).*yemen",YUG:"yugoslavia",ZMB:"zambia|northern.?rhodesia",EAZ:"zanzibar",ZWE:"zimbabwe|^(?!.*northern).*rhodesia"}},{}],137:[function(t,e,r){e.exports=["xx-small","x-small","small","medium","large","x-large","xx-large","larger","smaller"]},{}],138:[function(t,e,r){e.exports=["normal","condensed","semi-condensed","extra-condensed","ultra-condensed","expanded","semi-expanded","extra-expanded","ultra-expanded"]},{}],139:[function(t,e,r){e.exports=["normal","italic","oblique"]},{}],140:[function(t,e,r){e.exports=["normal","bold","bolder","lighter","100","200","300","400","500","600","700","800","900"]},{}],141:[function(t,e,r){"use strict";e.exports={parse:t("./parse"),stringify:t("./stringify")}},{"./parse":143,"./stringify":144}],142:[function(t,e,r){"use strict";var n=t("css-font-size-keywords");e.exports={isSize:function(t){return/^[\d\.]/.test(t)||-1!==t.indexOf("/")||-1!==n.indexOf(t)}}},{"css-font-size-keywords":137}],143:[function(t,e,r){"use strict";var n=t("unquote"),a=t("css-global-keywords"),i=t("css-system-font-keywords"),o=t("css-font-weight-keywords"),s=t("css-font-style-keywords"),l=t("css-font-stretch-keywords"),c=t("string-split-by"),u=t("./lib/util").isSize;e.exports=f;var h=f.cache={};function f(t){if("string"!=typeof t)throw new Error("Font argument must be a string.");if(h[t])return h[t];if(""===t)throw new Error("Cannot parse an empty string.");if(-1!==i.indexOf(t))return h[t]={system:t};for(var e,r={style:"normal",variant:"normal",weight:"normal",stretch:"normal",lineHeight:"normal",size:"1rem",family:["serif"]},f=c(t,/\s+/);e=f.shift();){if(-1!==a.indexOf(e))return["style","variant","weight","stretch"].forEach(function(t){r[t]=e}),h[t]=r;if(-1===s.indexOf(e))if("normal"!==e&&"small-caps"!==e)if(-1===l.indexOf(e)){if(-1===o.indexOf(e)){if(u(e)){var d=c(e,"/");if(r.size=d[0],null!=d[1]?r.lineHeight=p(d[1]):"/"===f[0]&&(f.shift(),r.lineHeight=p(f.shift())),!f.length)throw new Error("Missing required font-family.");return r.family=c(f.join(" "),/\s*,\s*/).map(n),h[t]=r}throw new Error("Unknown or unsupported font token: "+e)}r.weight=e}else r.stretch=e;else r.variant=e;else r.style=e}throw new Error("Missing required font-size.")}function p(t){var e=parseFloat(t);return e.toString()===t?e:t}},{"./lib/util":142,"css-font-stretch-keywords":138,"css-font-style-keywords":139,"css-font-weight-keywords":140,"css-global-keywords":145,"css-system-font-keywords":146,"string-split-by":527,unquote:546}],144:[function(t,e,r){"use strict";var n=t("pick-by-alias"),a=t("./lib/util").isSize,i=g(t("css-global-keywords")),o=g(t("css-system-font-keywords")),s=g(t("css-font-weight-keywords")),l=g(t("css-font-style-keywords")),c=g(t("css-font-stretch-keywords")),u={normal:1,"small-caps":1},h={serif:1,"sans-serif":1,monospace:1,cursive:1,fantasy:1,"system-ui":1},f="1rem",p="serif";function d(t,e){if(t&&!e[t]&&!i[t])throw Error("Unknown keyword `"+t+"`");return t}function g(t){for(var e={},r=0;r=0;--p)i[p]=c*t[p]+u*e[p]+h*r[p]+f*n[p];return i}return c*t+u*e+h*r+f*n},e.exports.derivative=function(t,e,r,n,a,i){var o=6*a*a-6*a,s=3*a*a-4*a+1,l=-6*a*a+6*a,c=3*a*a-2*a;if(t.length){i||(i=new Array(t.length));for(var u=t.length-1;u>=0;--u)i[u]=o*t[u]+s*e[u]+l*r[u]+c*n[u];return i}return o*t+s*e+l*r[u]+c*n}},{}],148:[function(t,e,r){"use strict";var n=t("./lib/thunk.js");function a(){this.argTypes=[],this.shimArgs=[],this.arrayArgs=[],this.arrayBlockIndices=[],this.scalarArgs=[],this.offsetArgs=[],this.offsetArgIndex=[],this.indexArgs=[],this.shapeArgs=[],this.funcName="",this.pre=null,this.body=null,this.post=null,this.debug=!1}e.exports=function(t){var e=new a;e.pre=t.pre,e.body=t.body,e.post=t.post;var r=t.args.slice(0);e.argTypes=r;for(var i=0;i0)throw new Error("cwise: pre() block may not reference array args");if(i0)throw new Error("cwise: post() block may not reference array args")}else if("scalar"===o)e.scalarArgs.push(i),e.shimArgs.push("scalar"+i);else if("index"===o){if(e.indexArgs.push(i),i0)throw new Error("cwise: pre() block may not reference array index");if(i0)throw new Error("cwise: post() block may not reference array index")}else if("shape"===o){if(e.shapeArgs.push(i),ir.length)throw new Error("cwise: Too many arguments in pre() block");if(e.body.args.length>r.length)throw new Error("cwise: Too many arguments in body() block");if(e.post.args.length>r.length)throw new Error("cwise: Too many arguments in post() block");return e.debug=!!t.printCode||!!t.debug,e.funcName=t.funcName||"cwise",e.blockSize=t.blockSize||64,n(e)}},{"./lib/thunk.js":150}],149:[function(t,e,r){"use strict";var n=t("uniq");function a(t,e,r){var n,a,i=t.length,o=e.arrayArgs.length,s=e.indexArgs.length>0,l=[],c=[],u=0,h=0;for(n=0;n0&&l.push("var "+c.join(",")),n=i-1;n>=0;--n)u=t[n],l.push(["for(i",n,"=0;i",n,"0&&l.push(["index[",h,"]-=s",h].join("")),l.push(["++index[",u,"]"].join(""))),l.push("}")}return l.join("\n")}function i(t,e,r){for(var n=t.body,a=[],i=[],o=0;o0&&(r=r&&e[n]===e[n-1])}return r?e[0]:e.join("")}e.exports=function(t,e){for(var r=e[1].length-Math.abs(t.arrayBlockIndices[0])|0,s=new Array(t.arrayArgs.length),l=new Array(t.arrayArgs.length),c=0;c0&&x.push("shape=SS.slice(0)"),t.indexArgs.length>0){var b=new Array(r);for(c=0;c0&&y.push("var "+x.join(",")),c=0;c3&&y.push(i(t.pre,t,l));var T=i(t.body,t,l),M=function(t){for(var e=0,r=t[0].length;e0,c=[],u=0;u0;){"].join("")),c.push(["if(j",u,"<",s,"){"].join("")),c.push(["s",e[u],"=j",u].join("")),c.push(["j",u,"=0"].join("")),c.push(["}else{s",e[u],"=",s].join("")),c.push(["j",u,"-=",s,"}"].join("")),l&&c.push(["index[",e[u],"]=j",u].join(""));for(u=0;u3&&y.push(i(t.post,t,l)),t.debug&&console.log("-----Generated cwise routine for ",e,":\n"+y.join("\n")+"\n----------");var A=[t.funcName||"unnamed","_cwise_loop_",s[0].join("s"),"m",M,o(l)].join("");return new Function(["function ",A,"(",m.join(","),"){",y.join("\n"),"} return ",A].join(""))()}},{uniq:545}],150:[function(t,e,r){"use strict";var n=t("./compile.js");e.exports=function(t){var e=["'use strict'","var CACHED={}"],r=[],a=t.funcName+"_cwise_thunk";e.push(["return function ",a,"(",t.shimArgs.join(","),"){"].join(""));for(var i=[],o=[],s=[["array",t.arrayArgs[0],".shape.slice(",Math.max(0,t.arrayBlockIndices[0]),t.arrayBlockIndices[0]<0?","+t.arrayBlockIndices[0]+")":")"].join("")],l=[],c=[],u=0;u0&&(l.push("array"+t.arrayArgs[0]+".shape.length===array"+h+".shape.length+"+(Math.abs(t.arrayBlockIndices[0])-Math.abs(t.arrayBlockIndices[u]))),c.push("array"+t.arrayArgs[0]+".shape[shapeIndex+"+Math.max(0,t.arrayBlockIndices[0])+"]===array"+h+".shape[shapeIndex+"+Math.max(0,t.arrayBlockIndices[u])+"]"))}for(t.arrayArgs.length>1&&(e.push("if (!("+l.join(" && ")+")) throw new Error('cwise: Arrays do not all have the same dimensionality!')"),e.push("for(var shapeIndex=array"+t.arrayArgs[0]+".shape.length-"+Math.abs(t.arrayBlockIndices[0])+"; shapeIndex--\x3e0;) {"),e.push("if (!("+c.join(" && ")+")) throw new Error('cwise: Arrays do not all have the same shape!')"),e.push("}")),u=0;ue?1:t>=e?0:NaN}function r(t){var r;return 1===t.length&&(r=t,t=function(t,n){return e(r(t),n)}),{left:function(e,r,n,a){for(null==n&&(n=0),null==a&&(a=e.length);n>>1;t(e[i],r)<0?n=i+1:a=i}return n},right:function(e,r,n,a){for(null==n&&(n=0),null==a&&(a=e.length);n>>1;t(e[i],r)>0?a=i:n=i+1}return n}}}var n=r(e),a=n.right,i=n.left;function o(t,e){return[t,e]}function s(t){return null===t?NaN:+t}function l(t,e){var r,n,a=t.length,i=0,o=-1,l=0,c=0;if(null==e)for(;++o1)return c/(i-1)}function c(t,e){var r=l(t,e);return r?Math.sqrt(r):r}function u(t,e){var r,n,a,i=t.length,o=-1;if(null==e){for(;++o=r)for(n=a=r;++or&&(n=r),a=r)for(n=a=r;++or&&(n=r),a=0?(i>=m?10:i>=y?5:i>=x?2:1)*Math.pow(10,a):-Math.pow(10,-a)/(i>=m?10:i>=y?5:i>=x?2:1)}function _(t,e,r){var n=Math.abs(e-t)/Math.max(0,r),a=Math.pow(10,Math.floor(Math.log(n)/Math.LN10)),i=n/a;return i>=m?a*=10:i>=y?a*=5:i>=x&&(a*=2),e=1)return+r(t[n-1],n-1,t);var n,a=(n-1)*e,i=Math.floor(a),o=+r(t[i],i,t);return o+(+r(t[i+1],i+1,t)-o)*(a-i)}}function T(t,e){var r,n,a=t.length,i=-1;if(null==e){for(;++i=r)for(n=r;++ir&&(n=r)}else for(;++i=r)for(n=r;++ir&&(n=r);return n}function M(t){if(!(a=t.length))return[];for(var e=-1,r=T(t,A),n=new Array(r);++et?1:e>=t?0:NaN},t.deviation=c,t.extent=u,t.histogram=function(){var t=g,e=u,r=w;function n(n){var i,o,s=n.length,l=new Array(s);for(i=0;ih;)f.pop(),--p;var d,g=new Array(p+1);for(i=0;i<=p;++i)(d=g[i]=[]).x0=i>0?f[i-1]:u,d.x1=i=r)for(n=r;++in&&(n=r)}else for(;++i=r)for(n=r;++in&&(n=r);return n},t.mean=function(t,e){var r,n=t.length,a=n,i=-1,o=0;if(null==e)for(;++i=0;)for(e=(n=t[a]).length;--e>=0;)r[--o]=n[e];return r},t.min=T,t.pairs=function(t,e){null==e&&(e=o);for(var r=0,n=t.length-1,a=t[0],i=new Array(n<0?0:n);r0)return[t];if((n=e0)for(t=Math.ceil(t/o),e=Math.floor(e/o),i=new Array(a=Math.ceil(e-t+1));++s=l.length)return null!=t&&n.sort(t),null!=e?e(n):n;for(var s,c,h,f=-1,p=n.length,d=l[a++],g=r(),v=i();++fl.length)return r;var a,i=c[n-1];return null!=e&&n>=l.length?a=r.entries():(a=[],r.each(function(e,r){a.push({key:r,values:t(e,n)})})),null!=i?a.sort(function(t,e){return i(t.key,e.key)}):a}(u(t,0,i,o),0)},key:function(t){return l.push(t),s},sortKeys:function(t){return c[l.length-1]=t,s},sortValues:function(e){return t=e,s},rollup:function(t){return e=t,s}}},t.set=c,t.map=r,t.keys=function(t){var e=[];for(var r in t)e.push(r);return e},t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],156:[function(t,e,r){var n;n=this,function(t){"use strict";function e(t,e,r){t.prototype=e.prototype=r,r.constructor=t}function r(t,e){var r=Object.create(t.prototype);for(var n in e)r[n]=e[n];return r}function n(){}var a="\\s*([+-]?\\d+)\\s*",i="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",o="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",s=/^#([0-9a-f]{3,8})$/,l=new RegExp("^rgb\\("+[a,a,a]+"\\)$"),c=new RegExp("^rgb\\("+[o,o,o]+"\\)$"),u=new RegExp("^rgba\\("+[a,a,a,i]+"\\)$"),h=new RegExp("^rgba\\("+[o,o,o,i]+"\\)$"),f=new RegExp("^hsl\\("+[i,o,o]+"\\)$"),p=new RegExp("^hsla\\("+[i,o,o,i]+"\\)$"),d={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function g(){return this.rgb().formatHex()}function v(){return this.rgb().formatRgb()}function m(t){var e,r;return t=(t+"").trim().toLowerCase(),(e=s.exec(t))?(r=e[1].length,e=parseInt(e[1],16),6===r?y(e):3===r?new w(e>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===r?new w(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===r?new w(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=l.exec(t))?new w(e[1],e[2],e[3],1):(e=c.exec(t))?new w(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=u.exec(t))?x(e[1],e[2],e[3],e[4]):(e=h.exec(t))?x(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=f.exec(t))?A(e[1],e[2]/100,e[3]/100,1):(e=p.exec(t))?A(e[1],e[2]/100,e[3]/100,e[4]):d.hasOwnProperty(t)?y(d[t]):"transparent"===t?new w(NaN,NaN,NaN,0):null}function y(t){return new w(t>>16&255,t>>8&255,255&t,1)}function x(t,e,r,n){return n<=0&&(t=e=r=NaN),new w(t,e,r,n)}function b(t){return t instanceof n||(t=m(t)),t?new w((t=t.rgb()).r,t.g,t.b,t.opacity):new w}function _(t,e,r,n){return 1===arguments.length?b(t):new w(t,e,r,null==n?1:n)}function w(t,e,r,n){this.r=+t,this.g=+e,this.b=+r,this.opacity=+n}function k(){return"#"+M(this.r)+M(this.g)+M(this.b)}function T(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}function M(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function A(t,e,r,n){return n<=0?t=e=r=NaN:r<=0||r>=1?t=e=NaN:e<=0&&(t=NaN),new L(t,e,r,n)}function S(t){if(t instanceof L)return new L(t.h,t.s,t.l,t.opacity);if(t instanceof n||(t=m(t)),!t)return new L;if(t instanceof L)return t;var e=(t=t.rgb()).r/255,r=t.g/255,a=t.b/255,i=Math.min(e,r,a),o=Math.max(e,r,a),s=NaN,l=o-i,c=(o+i)/2;return l?(s=e===o?(r-a)/l+6*(r0&&c<1?0:s,new L(s,l,c,t.opacity)}function E(t,e,r,n){return 1===arguments.length?S(t):new L(t,e,r,null==n?1:n)}function L(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}function C(t,e,r){return 255*(t<60?e+(r-e)*t/60:t<180?r:t<240?e+(r-e)*(240-t)/60:e)}e(n,m,{copy:function(t){return Object.assign(new this.constructor,this,t)},displayable:function(){return this.rgb().displayable()},hex:g,formatHex:g,formatHsl:function(){return S(this).formatHsl()},formatRgb:v,toString:v}),e(w,_,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:k,formatHex:k,formatRgb:T,toString:T})),e(L,E,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new L(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new L(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*e,a=2*r-n;return new w(C(t>=240?t-240:t+120,a,n),C(t,a,n),C(t<120?t+240:t-120,a,n),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===t?")":", "+t+")")}}));var P=Math.PI/180,O=180/Math.PI,z=.96422,I=1,D=.82521,R=4/29,F=6/29,B=3*F*F,N=F*F*F;function j(t){if(t instanceof U)return new U(t.l,t.a,t.b,t.opacity);if(t instanceof Z)return J(t);t instanceof w||(t=b(t));var e,r,n=Y(t.r),a=Y(t.g),i=Y(t.b),o=q((.2225045*n+.7168786*a+.0606169*i)/I);return n===a&&a===i?e=r=o:(e=q((.4360747*n+.3850649*a+.1430804*i)/z),r=q((.0139322*n+.0971045*a+.7141733*i)/D)),new U(116*o-16,500*(e-o),200*(o-r),t.opacity)}function V(t,e,r,n){return 1===arguments.length?j(t):new U(t,e,r,null==n?1:n)}function U(t,e,r,n){this.l=+t,this.a=+e,this.b=+r,this.opacity=+n}function q(t){return t>N?Math.pow(t,1/3):t/B+R}function H(t){return t>F?t*t*t:B*(t-R)}function G(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Y(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function W(t){if(t instanceof Z)return new Z(t.h,t.c,t.l,t.opacity);if(t instanceof U||(t=j(t)),0===t.a&&0===t.b)return new Z(NaN,0=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:e}})),l=-1,c=s.length;if(!(arguments.length<2)){if(null!=e&&"function"!=typeof e)throw new Error("invalid callback: "+e);for(;++l0)for(var r,n,a=new Array(r),i=0;if+c||np+c||iu.index){var h=f-s.x-s.vx,v=p-s.y-s.vy,m=h*h+v*v;mt.r&&(t.r=t[e].r)}function f(){if(r){var e,a,i=r.length;for(n=new Array(i),e=0;e=c)){(t.data!==r||t.next)&&(0===h&&(d+=(h=o())*h),0===f&&(d+=(f=o())*f),d1?(null==r?u.remove(t):u.set(t,y(r)),e):u.get(t)},find:function(e,r,n){var a,i,o,s,l,c=0,u=t.length;for(null==n?n=1/0:n*=n,c=0;c1?(f.on(t,r),e):f.on(t)}}},t.forceX=function(t){var e,r,n,a=i(.1);function o(t){for(var a,i=0,o=e.length;i=0;)e+=r[n].value;else e=1;t.value=e}function i(t,e){var r,n,a,i,s,u=new c(t),h=+t.value&&(u.value=t.value),f=[u];for(null==e&&(e=o);r=f.pop();)if(h&&(r.value=+r.data.value),(a=e(r.data))&&(s=a.length))for(r.children=new Array(s),i=s-1;i>=0;--i)f.push(n=r.children[i]=new c(a[i])),n.parent=r,n.depth=r.depth+1;return u.eachBefore(l)}function o(t){return t.children}function s(t){t.data=t.data.data}function l(t){var e=0;do{t.height=e}while((t=t.parent)&&t.height<++e)}function c(t){this.data=t,this.depth=this.height=0,this.parent=null}c.prototype=i.prototype={constructor:c,count:function(){return this.eachAfter(a)},each:function(t){var e,r,n,a,i=this,o=[i];do{for(e=o.reverse(),o=[];i=e.pop();)if(t(i),r=i.children)for(n=0,a=r.length;n=0;--r)a.push(e[r]);return this},sum:function(t){return this.eachAfter(function(e){for(var r=+t(e.data)||0,n=e.children,a=n&&n.length;--a>=0;)r+=n[a].value;e.value=r})},sort:function(t){return this.eachBefore(function(e){e.children&&e.children.sort(t)})},path:function(t){for(var e=this,r=function(t,e){if(t===e)return t;var r=t.ancestors(),n=e.ancestors(),a=null;for(t=r.pop(),e=n.pop();t===e;)a=t,t=r.pop(),e=n.pop();return a}(e,t),n=[e];e!==r;)e=e.parent,n.push(e);for(var a=n.length;t!==r;)n.splice(a,0,t),t=t.parent;return n},ancestors:function(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e},descendants:function(){var t=[];return this.each(function(e){t.push(e)}),t},leaves:function(){var t=[];return this.eachBefore(function(e){e.children||t.push(e)}),t},links:function(){var t=this,e=[];return t.each(function(r){r!==t&&e.push({source:r.parent,target:r})}),e},copy:function(){return i(this).eachBefore(s)}};var u=Array.prototype.slice;function h(t){for(var e,r,n=0,a=(t=function(t){for(var e,r,n=t.length;n;)r=Math.random()*n--|0,e=t[n],t[n]=t[r],t[r]=e;return t}(u.call(t))).length,i=[];n0&&r*r>n*n+a*a}function g(t,e){for(var r=0;r(o*=o)?(n=(c+o-a)/(2*c),i=Math.sqrt(Math.max(0,o/c-n*n)),r.x=t.x-n*s-i*l,r.y=t.y-n*l+i*s):(n=(c+a-o)/(2*c),i=Math.sqrt(Math.max(0,a/c-n*n)),r.x=e.x+n*s-i*l,r.y=e.y+n*l+i*s)):(r.x=e.x+r.r,r.y=e.y)}function b(t,e){var r=t.r+e.r-1e-6,n=e.x-t.x,a=e.y-t.y;return r>0&&r*r>n*n+a*a}function _(t){var e=t._,r=t.next._,n=e.r+r.r,a=(e.x*r.r+r.x*e.r)/n,i=(e.y*r.r+r.y*e.r)/n;return a*a+i*i}function w(t){this._=t,this.next=null,this.previous=null}function k(t){if(!(a=t.length))return 0;var e,r,n,a,i,o,s,l,c,u,f;if((e=t[0]).x=0,e.y=0,!(a>1))return e.r;if(r=t[1],e.x=-r.r,r.x=e.r,r.y=0,!(a>2))return e.r+r.r;x(r,e,n=t[2]),e=new w(e),r=new w(r),n=new w(n),e.next=n.previous=r,r.next=e.previous=n,n.next=r.previous=e;t:for(s=3;sf&&(f=s),v=u*u*g,(p=Math.max(f/v,v/h))>d){u-=s;break}d=p}m.push(o={value:u,dice:l1?e:1)},r}(G),X=function t(e){function r(t,r,n,a,i){if((o=t._squarify)&&o.ratio===e)for(var o,s,l,c,u,h=-1,f=o.length,p=t.value;++h1?e:1)},r}(G);t.cluster=function(){var t=e,a=1,i=1,o=!1;function s(e){var s,l=0;e.eachAfter(function(e){var a=e.children;a?(e.x=function(t){return t.reduce(r,0)/t.length}(a),e.y=function(t){return 1+t.reduce(n,0)}(a)):(e.x=s?l+=t(e,s):0,e.y=0,s=e)});var c=function(t){for(var e;e=t.children;)t=e[0];return t}(e),u=function(t){for(var e;e=t.children;)t=e[e.length-1];return t}(e),h=c.x-t(c,u)/2,f=u.x+t(u,c)/2;return e.eachAfter(o?function(t){t.x=(t.x-e.x)*a,t.y=(e.y-t.y)*i}:function(t){t.x=(t.x-h)/(f-h)*a,t.y=(1-(e.y?t.y/e.y:1))*i})}return s.separation=function(e){return arguments.length?(t=e,s):t},s.size=function(t){return arguments.length?(o=!1,a=+t[0],i=+t[1],s):o?null:[a,i]},s.nodeSize=function(t){return arguments.length?(o=!0,a=+t[0],i=+t[1],s):o?[a,i]:null},s},t.hierarchy=i,t.pack=function(){var t=null,e=1,r=1,n=M;function a(a){return a.x=e/2,a.y=r/2,t?a.eachBefore(E(t)).eachAfter(L(n,.5)).eachBefore(C(1)):a.eachBefore(E(S)).eachAfter(L(M,1)).eachAfter(L(n,a.r/Math.min(e,r))).eachBefore(C(Math.min(e,r)/(2*a.r))),a}return a.radius=function(e){return arguments.length?(t=null==(r=e)?null:T(r),a):t;var r},a.size=function(t){return arguments.length?(e=+t[0],r=+t[1],a):[e,r]},a.padding=function(t){return arguments.length?(n="function"==typeof t?t:A(+t),a):n},a},t.packEnclose=h,t.packSiblings=function(t){return k(t),t},t.partition=function(){var t=1,e=1,r=0,n=!1;function a(a){var i=a.height+1;return a.x0=a.y0=r,a.x1=t,a.y1=e/i,a.eachBefore(function(t,e){return function(n){n.children&&O(n,n.x0,t*(n.depth+1)/e,n.x1,t*(n.depth+2)/e);var a=n.x0,i=n.y0,o=n.x1-r,s=n.y1-r;o0)throw new Error("cycle");return i}return r.id=function(e){return arguments.length?(t=T(e),r):t},r.parentId=function(t){return arguments.length?(e=T(t),r):e},r},t.tree=function(){var t=B,e=1,r=1,n=null;function a(a){var l=function(t){for(var e,r,n,a,i,o=new q(t,0),s=[o];e=s.pop();)if(n=e._.children)for(e.children=new Array(i=n.length),a=i-1;a>=0;--a)s.push(r=e.children[a]=new q(n[a],a)),r.parent=e;return(o.parent=new q(null,0)).children=[o],o}(a);if(l.eachAfter(i),l.parent.m=-l.z,l.eachBefore(o),n)a.eachBefore(s);else{var c=a,u=a,h=a;a.eachBefore(function(t){t.xu.x&&(u=t),t.depth>h.depth&&(h=t)});var f=c===u?1:t(c,u)/2,p=f-c.x,d=e/(u.x+f+p),g=r/(h.depth||1);a.eachBefore(function(t){t.x=(t.x+p)*d,t.y=t.depth*g})}return a}function i(e){var r=e.children,n=e.parent.children,a=e.i?n[e.i-1]:null;if(r){!function(t){for(var e,r=0,n=0,a=t.children,i=a.length;--i>=0;)(e=a[i]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(e);var i=(r[0].z+r[r.length-1].z)/2;a?(e.z=a.z+t(e._,a._),e.m=e.z-i):e.z=i}else a&&(e.z=a.z+t(e._,a._));e.parent.A=function(e,r,n){if(r){for(var a,i=e,o=e,s=r,l=i.parent.children[0],c=i.m,u=o.m,h=s.m,f=l.m;s=j(s),i=N(i),s&&i;)l=N(l),(o=j(o)).a=e,(a=s.z+h-i.z-c+t(s._,i._))>0&&(V(U(s,e,n),e,a),c+=a,u+=a),h+=s.m,c+=i.m,f+=l.m,u+=o.m;s&&!j(o)&&(o.t=s,o.m+=h-u),i&&!N(l)&&(l.t=i,l.m+=c-f,n=e)}return n}(e,a,e.parent.A||n[0])}function o(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function s(t){t.x*=e,t.y=t.depth*r}return a.separation=function(e){return arguments.length?(t=e,a):t},a.size=function(t){return arguments.length?(n=!1,e=+t[0],r=+t[1],a):n?null:[e,r]},a.nodeSize=function(t){return arguments.length?(n=!0,e=+t[0],r=+t[1],a):n?[e,r]:null},a},t.treemap=function(){var t=W,e=!1,r=1,n=1,a=[0],i=M,o=M,s=M,l=M,c=M;function u(t){return t.x0=t.y0=0,t.x1=r,t.y1=n,t.eachBefore(h),a=[0],e&&t.eachBefore(P),t}function h(e){var r=a[e.depth],n=e.x0+r,u=e.y0+r,h=e.x1-r,f=e.y1-r;h=r-1){var u=s[e];return u.x0=a,u.y0=i,u.x1=o,void(u.y1=l)}for(var h=c[e],f=n/2+h,p=e+1,d=r-1;p>>1;c[g]l-i){var y=(a*m+o*v)/n;t(e,p,v,a,i,y,l),t(p,r,m,y,i,o,l)}else{var x=(i*m+l*v)/n;t(e,p,v,a,i,o,x),t(p,r,m,a,x,o,l)}}(0,l,t.value,e,r,n,a)},t.treemapDice=O,t.treemapResquarify=X,t.treemapSlice=H,t.treemapSliceDice=function(t,e,r,n,a){(1&t.depth?H:O)(t,e,r,n,a)},t.treemapSquarify=W,Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:(n=n||self).d3=n.d3||{})},{}],160:[function(t,e,r){var n,a;n=this,a=function(t,e){"use strict";function r(t,e,r,n,a){var i=t*t,o=i*t;return((1-3*t+3*i-o)*e+(4-6*i+3*o)*r+(1+3*t+3*i-3*o)*n+o*a)/6}function n(t){var e=t.length-1;return function(n){var a=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),i=t[a],o=t[a+1],s=a>0?t[a-1]:2*i-o,l=a180||r<-180?r-360*Math.round(r/360):r):i(isNaN(t)?e:t)}function l(t){return 1==(t=+t)?c:function(e,r){return r-e?function(t,e,r){return t=Math.pow(t,r),e=Math.pow(e,r)-t,r=1/r,function(n){return Math.pow(t+n*e,r)}}(e,r,t):i(isNaN(e)?r:e)}}function c(t,e){var r=e-t;return r?o(t,r):i(isNaN(t)?e:t)}var u=function t(r){var n=l(r);function a(t,r){var a=n((t=e.rgb(t)).r,(r=e.rgb(r)).r),i=n(t.g,r.g),o=n(t.b,r.b),s=c(t.opacity,r.opacity);return function(e){return t.r=a(e),t.g=i(e),t.b=o(e),t.opacity=s(e),t+""}}return a.gamma=t,a}(1);function h(t){return function(r){var n,a,i=r.length,o=new Array(i),s=new Array(i),l=new Array(i);for(n=0;ni&&(a=e.slice(i,a),s[o]?s[o]+=a:s[++o]=a),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:y(r,n)})),i=_.lastIndex;return i180?e+=360:e-t>180&&(t+=360),i.push({i:r.push(a(r)+"rotate(",null,n)-2,x:y(t,e)})):e&&r.push(a(r)+"rotate("+e+n)}(i.rotate,o.rotate,s,l),function(t,e,r,i){t!==e?i.push({i:r.push(a(r)+"skewX(",null,n)-2,x:y(t,e)}):e&&r.push(a(r)+"skewX("+e+n)}(i.skewX,o.skewX,s,l),function(t,e,r,n,i,o){if(t!==r||e!==n){var s=i.push(a(i)+"scale(",null,",",null,")");o.push({i:s-4,x:y(t,r)},{i:s-2,x:y(e,n)})}else 1===r&&1===n||i.push(a(i)+"scale("+r+","+n+")")}(i.scaleX,i.scaleY,o.scaleX,o.scaleY,s,l),i=o=null,function(t){for(var e,r=-1,n=l.length;++r1e-6)if(Math.abs(h*l-c*u)>1e-6&&i){var p=n-o,d=a-s,g=l*l+c*c,v=p*p+d*d,m=Math.sqrt(g),y=Math.sqrt(f),x=i*Math.tan((e-Math.acos((g+f-v)/(2*m*y)))/2),b=x/y,_=x/m;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*u)+","+(r+b*h)),this._+="A"+i+","+i+",0,0,"+ +(h*p>u*d)+","+(this._x1=t+_*l)+","+(this._y1=r+_*c)}else this._+="L"+(this._x1=t)+","+(this._y1=r);else;},arc:function(t,a,i,o,s,l){t=+t,a=+a;var c=(i=+i)*Math.cos(o),u=i*Math.sin(o),h=t+c,f=a+u,p=1^l,d=l?o-s:s-o;if(i<0)throw new Error("negative radius: "+i);null===this._x1?this._+="M"+h+","+f:(Math.abs(this._x1-h)>1e-6||Math.abs(this._y1-f)>1e-6)&&(this._+="L"+h+","+f),i&&(d<0&&(d=d%r+r),d>n?this._+="A"+i+","+i+",0,1,"+p+","+(t-c)+","+(a-u)+"A"+i+","+i+",0,1,"+p+","+(this._x1=h)+","+(this._y1=f):d>1e-6&&(this._+="A"+i+","+i+",0,"+ +(d>=e)+","+p+","+(this._x1=t+i*Math.cos(s))+","+(this._y1=a+i*Math.sin(s))))},rect:function(t,e,r,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +r+"v"+ +n+"h"+-r+"Z"},toString:function(){return this._}},t.path=i,Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],162:[function(t,e,r){var n;n=this,function(t){"use strict";function e(t,e,r,n){if(isNaN(e)||isNaN(r))return t;var a,i,o,s,l,c,u,h,f,p=t._root,d={data:n},g=t._x0,v=t._y0,m=t._x1,y=t._y1;if(!p)return t._root=d,t;for(;p.length;)if((c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o,a=p,!(p=p[h=u<<1|c]))return a[h]=d,t;if(s=+t._x.call(null,p.data),l=+t._y.call(null,p.data),e===s&&r===l)return d.next=p,a?a[h]=d:t._root=d,t;do{a=a?a[h]=new Array(4):t._root=new Array(4),(c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o}while((h=u<<1|c)==(f=(l>=o)<<1|s>=i));return a[f]=p,a[h]=d,t}var r=function(t,e,r,n,a){this.node=t,this.x0=e,this.y0=r,this.x1=n,this.y1=a};function n(t){return t[0]}function a(t){return t[1]}function i(t,e,r){var i=new o(null==e?n:e,null==r?a:r,NaN,NaN,NaN,NaN);return null==t?i:i.addAll(t)}function o(t,e,r,n,a,i){this._x=t,this._y=e,this._x0=r,this._y0=n,this._x1=a,this._y1=i,this._root=void 0}function s(t){for(var e={data:t.data},r=e;t=t.next;)r=r.next={data:t.data};return e}var l=i.prototype=o.prototype;l.copy=function(){var t,e,r=new o(this._x,this._y,this._x0,this._y0,this._x1,this._y1),n=this._root;if(!n)return r;if(!n.length)return r._root=s(n),r;for(t=[{source:n,target:r._root=new Array(4)}];n=t.pop();)for(var a=0;a<4;++a)(e=n.source[a])&&(e.length?t.push({source:e,target:n.target[a]=new Array(4)}):n.target[a]=s(e));return r},l.add=function(t){var r=+this._x.call(null,t),n=+this._y.call(null,t);return e(this.cover(r,n),r,n,t)},l.addAll=function(t){var r,n,a,i,o=t.length,s=new Array(o),l=new Array(o),c=1/0,u=1/0,h=-1/0,f=-1/0;for(n=0;nh&&(h=a),if&&(f=i));for(ht||t>a||n>e||e>i))return this;var o,s,l=a-r,c=this._root;switch(s=(e<(n+i)/2)<<1|t<(r+a)/2){case 0:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),t>(a=r+l)||e>i);break;case 1:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),(r=a-l)>t||e>i);break;case 2:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),t>(a=r+l)||n>e);break;case 3:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),(r=a-l)>t||n>e)}this._root&&this._root.length&&(this._root=c)}return this._x0=r,this._y0=n,this._x1=a,this._y1=i,this},l.data=function(){var t=[];return this.visit(function(e){if(!e.length)do{t.push(e.data)}while(e=e.next)}),t},l.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},l.find=function(t,e,n){var a,i,o,s,l,c,u,h=this._x0,f=this._y0,p=this._x1,d=this._y1,g=[],v=this._root;for(v&&g.push(new r(v,h,f,p,d)),null==n?n=1/0:(h=t-n,f=e-n,p=t+n,d=e+n,n*=n);c=g.pop();)if(!(!(v=c.node)||(i=c.x0)>p||(o=c.y0)>d||(s=c.x1)=y)<<1|t>=m)&&(c=g[g.length-1],g[g.length-1]=g[g.length-1-u],g[g.length-1-u]=c)}else{var x=t-+this._x.call(null,v.data),b=e-+this._y.call(null,v.data),_=x*x+b*b;if(_=(s=(d+v)/2))?d=s:v=s,(u=o>=(l=(g+m)/2))?g=l:m=l,e=p,!(p=p[h=u<<1|c]))return this;if(!p.length)break;(e[h+1&3]||e[h+2&3]||e[h+3&3])&&(r=e,f=h)}for(;p.data!==t;)if(n=p,!(p=p.next))return this;return(a=p.next)&&delete p.next,n?(a?n.next=a:delete n.next,this):e?(a?e[h]=a:delete e[h],(p=e[0]||e[1]||e[2]||e[3])&&p===(e[3]||e[2]||e[1]||e[0])&&!p.length&&(r?r[f]=p:this._root=p),this):(this._root=a,this)},l.removeAll=function(t){for(var e=0,r=t.length;e=1?f:t<=-1?-f:Math.asin(t)}function g(t){return t.innerRadius}function v(t){return t.outerRadius}function m(t){return t.startAngle}function y(t){return t.endAngle}function x(t){return t&&t.padAngle}function b(t,e,r,n,a,i,s){var l=t-r,u=e-n,h=(s?i:-i)/c(l*l+u*u),f=h*u,p=-h*l,d=t+f,g=e+p,v=r+f,m=n+p,y=(d+v)/2,x=(g+m)/2,b=v-d,_=m-g,w=b*b+_*_,k=a-i,T=d*m-v*g,M=(_<0?-1:1)*c(o(0,k*k*w-T*T)),A=(T*_-b*M)/w,S=(-T*b-_*M)/w,E=(T*_+b*M)/w,L=(-T*b+_*M)/w,C=A-y,P=S-x,O=E-y,z=L-x;return C*C+P*P>O*O+z*z&&(A=E,S=L),{cx:A,cy:S,x01:-f,y01:-p,x11:A*(a/k-1),y11:S*(a/k-1)}}function _(t){this._context=t}function w(t){return new _(t)}function k(t){return t[0]}function T(t){return t[1]}function M(){var t=k,n=T,a=r(!0),i=null,o=w,s=null;function l(r){var l,c,u,h=r.length,f=!1;for(null==i&&(s=o(u=e.path())),l=0;l<=h;++l)!(l=h;--f)c.point(m[f],y[f]);c.lineEnd(),c.areaEnd()}v&&(m[u]=+t(p,u,r),y[u]=+a(p,u,r),c.point(n?+n(p,u,r):m[u],i?+i(p,u,r):y[u]))}if(d)return c=null,d+""||null}function h(){return M().defined(o).curve(l).context(s)}return u.x=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),n=null,u):t},u.x0=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),u):t},u.x1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:r(+t),u):n},u.y=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),i=null,u):a},u.y0=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),u):a},u.y1=function(t){return arguments.length?(i=null==t?null:"function"==typeof t?t:r(+t),u):i},u.lineX0=u.lineY0=function(){return h().x(t).y(a)},u.lineY1=function(){return h().x(t).y(i)},u.lineX1=function(){return h().x(n).y(a)},u.defined=function(t){return arguments.length?(o="function"==typeof t?t:r(!!t),u):o},u.curve=function(t){return arguments.length?(l=t,null!=s&&(c=l(s)),u):l},u.context=function(t){return arguments.length?(null==t?s=c=null:c=l(s=t),u):s},u}function S(t,e){return et?1:e>=t?0:NaN}function E(t){return t}_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e)}}};var L=P(w);function C(t){this._curve=t}function P(t){function e(e){return new C(t(e))}return e._curve=t,e}function O(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function z(){return O(M().curve(L))}function I(){var t=A().curve(L),e=t.curve,r=t.lineX0,n=t.lineX1,a=t.lineY0,i=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return O(r())},delete t.lineX0,t.lineEndAngle=function(){return O(n())},delete t.lineX1,t.lineInnerRadius=function(){return O(a())},delete t.lineY0,t.lineOuterRadius=function(){return O(i())},delete t.lineY1,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function D(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]}C.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}};var R=Array.prototype.slice;function F(t){return t.source}function B(t){return t.target}function N(t){var n=F,a=B,i=k,o=T,s=null;function l(){var r,l=R.call(arguments),c=n.apply(this,l),u=a.apply(this,l);if(s||(s=r=e.path()),t(s,+i.apply(this,(l[0]=c,l)),+o.apply(this,l),+i.apply(this,(l[0]=u,l)),+o.apply(this,l)),r)return s=null,r+""||null}return l.source=function(t){return arguments.length?(n=t,l):n},l.target=function(t){return arguments.length?(a=t,l):a},l.x=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),l):i},l.y=function(t){return arguments.length?(o="function"==typeof t?t:r(+t),l):o},l.context=function(t){return arguments.length?(s=null==t?null:t,l):s},l}function j(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e=(e+n)/2,r,e,a,n,a)}function V(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e,r=(r+a)/2,n,r,n,a)}function U(t,e,r,n,a){var i=D(e,r),o=D(e,r=(r+a)/2),s=D(n,r),l=D(n,a);t.moveTo(i[0],i[1]),t.bezierCurveTo(o[0],o[1],s[0],s[1],l[0],l[1])}var q={draw:function(t,e){var r=Math.sqrt(e/h);t.moveTo(r,0),t.arc(0,0,r,0,p)}},H={draw:function(t,e){var r=Math.sqrt(e/5)/2;t.moveTo(-3*r,-r),t.lineTo(-r,-r),t.lineTo(-r,-3*r),t.lineTo(r,-3*r),t.lineTo(r,-r),t.lineTo(3*r,-r),t.lineTo(3*r,r),t.lineTo(r,r),t.lineTo(r,3*r),t.lineTo(-r,3*r),t.lineTo(-r,r),t.lineTo(-3*r,r),t.closePath()}},G=Math.sqrt(1/3),Y=2*G,W={draw:function(t,e){var r=Math.sqrt(e/Y),n=r*G;t.moveTo(0,-r),t.lineTo(n,0),t.lineTo(0,r),t.lineTo(-n,0),t.closePath()}},X=Math.sin(h/10)/Math.sin(7*h/10),Z=Math.sin(p/10)*X,J=-Math.cos(p/10)*X,K={draw:function(t,e){var r=Math.sqrt(.8908130915292852*e),n=Z*r,a=J*r;t.moveTo(0,-r),t.lineTo(n,a);for(var i=1;i<5;++i){var o=p*i/5,s=Math.cos(o),l=Math.sin(o);t.lineTo(l*r,-s*r),t.lineTo(s*n-l*a,l*n+s*a)}t.closePath()}},Q={draw:function(t,e){var r=Math.sqrt(e),n=-r/2;t.rect(n,n,r,r)}},$=Math.sqrt(3),tt={draw:function(t,e){var r=-Math.sqrt(e/(3*$));t.moveTo(0,2*r),t.lineTo(-$*r,-r),t.lineTo($*r,-r),t.closePath()}},et=-.5,rt=Math.sqrt(3)/2,nt=1/Math.sqrt(12),at=3*(nt/2+1),it={draw:function(t,e){var r=Math.sqrt(e/at),n=r/2,a=r*nt,i=n,o=r*nt+r,s=-i,l=o;t.moveTo(n,a),t.lineTo(i,o),t.lineTo(s,l),t.lineTo(et*n-rt*a,rt*n+et*a),t.lineTo(et*i-rt*o,rt*i+et*o),t.lineTo(et*s-rt*l,rt*s+et*l),t.lineTo(et*n+rt*a,et*a-rt*n),t.lineTo(et*i+rt*o,et*o-rt*i),t.lineTo(et*s+rt*l,et*l-rt*s),t.closePath()}},ot=[q,H,W,Q,K,tt,it];function st(){}function lt(t,e,r){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+r)/6)}function ct(t){this._context=t}function ut(t){this._context=t}function ht(t){this._context=t}function ft(t,e){this._basis=new ct(t),this._beta=e}ct.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:lt(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ut.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ht.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var r=(this._x0+4*this._x1+t)/6,n=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(r,n):this._context.moveTo(r,n);break;case 3:this._point=4;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ft.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,r=t.length-1;if(r>0)for(var n,a=t[0],i=e[0],o=t[r]-a,s=e[r]-i,l=-1;++l<=r;)n=l/r,this._basis.point(this._beta*t[l]+(1-this._beta)*(a+n*o),this._beta*e[l]+(1-this._beta)*(i+n*s));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}};var pt=function t(e){function r(t){return 1===e?new ct(t):new ft(t,e)}return r.beta=function(e){return t(+e)},r}(.85);function dt(t,e,r){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-r),t._x2,t._y2)}function gt(t,e){this._context=t,this._k=(1-e)/6}gt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:dt(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var vt=function t(e){function r(t){return new gt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function mt(t,e){this._context=t,this._k=(1-e)/6}mt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var yt=function t(e){function r(t){return new mt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function xt(t,e){this._context=t,this._k=(1-e)/6}xt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var bt=function t(e){function r(t){return new xt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function _t(t,e,r){var n=t._x1,a=t._y1,i=t._x2,o=t._y2;if(t._l01_a>u){var s=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,l=3*t._l01_a*(t._l01_a+t._l12_a);n=(n*s-t._x0*t._l12_2a+t._x2*t._l01_2a)/l,a=(a*s-t._y0*t._l12_2a+t._y2*t._l01_2a)/l}if(t._l23_a>u){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,h=3*t._l23_a*(t._l23_a+t._l12_a);i=(i*c+t._x1*t._l23_2a-e*t._l12_2a)/h,o=(o*c+t._y1*t._l23_2a-r*t._l12_2a)/h}t._context.bezierCurveTo(n,a,i,o,t._x2,t._y2)}function wt(t,e){this._context=t,this._alpha=e}wt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var kt=function t(e){function r(t){return e?new wt(t,e):new gt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Tt(t,e){this._context=t,this._alpha=e}Tt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var Mt=function t(e){function r(t){return e?new Tt(t,e):new mt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function At(t,e){this._context=t,this._alpha=e}At.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var St=function t(e){function r(t){return e?new At(t,e):new xt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Et(t){this._context=t}function Lt(t){return t<0?-1:1}function Ct(t,e,r){var n=t._x1-t._x0,a=e-t._x1,i=(t._y1-t._y0)/(n||a<0&&-0),o=(r-t._y1)/(a||n<0&&-0),s=(i*a+o*n)/(n+a);return(Lt(i)+Lt(o))*Math.min(Math.abs(i),Math.abs(o),.5*Math.abs(s))||0}function Pt(t,e){var r=t._x1-t._x0;return r?(3*(t._y1-t._y0)/r-e)/2:e}function Ot(t,e,r){var n=t._x0,a=t._y0,i=t._x1,o=t._y1,s=(i-n)/3;t._context.bezierCurveTo(n+s,a+s*e,i-s,o-s*r,i,o)}function zt(t){this._context=t}function It(t){this._context=new Dt(t)}function Dt(t){this._context=t}function Rt(t){this._context=t}function Ft(t){var e,r,n=t.length-1,a=new Array(n),i=new Array(n),o=new Array(n);for(a[0]=0,i[0]=2,o[0]=t[0]+2*t[1],e=1;e=0;--e)a[e]=(o[e]-a[e+1])/i[e];for(i[n-1]=(t[n]+a[n-1])/2,e=0;e1)for(var r,n,a,i=1,o=t[e[0]],s=o.length;i=0;)r[e]=e;return r}function Vt(t,e){return t[e]}function Ut(t){var e=t.map(qt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function qt(t){for(var e,r=-1,n=0,a=t.length,i=-1/0;++ri&&(i=e,n=r);return n}function Ht(t){var e=t.map(Gt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function Gt(t){for(var e,r=0,n=-1,a=t.length;++n=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}}this._x=t,this._y=e}},t.arc=function(){var t=g,o=v,_=r(0),w=null,k=m,T=y,M=x,A=null;function S(){var r,g,v,m=+t.apply(this,arguments),y=+o.apply(this,arguments),x=k.apply(this,arguments)-f,S=T.apply(this,arguments)-f,E=n(S-x),L=S>x;if(A||(A=r=e.path()),yu)if(E>p-u)A.moveTo(y*i(x),y*l(x)),A.arc(0,0,y,x,S,!L),m>u&&(A.moveTo(m*i(S),m*l(S)),A.arc(0,0,m,S,x,L));else{var C,P,O=x,z=S,I=x,D=S,R=E,F=E,B=M.apply(this,arguments)/2,N=B>u&&(w?+w.apply(this,arguments):c(m*m+y*y)),j=s(n(y-m)/2,+_.apply(this,arguments)),V=j,U=j;if(N>u){var q=d(N/m*l(B)),H=d(N/y*l(B));(R-=2*q)>u?(I+=q*=L?1:-1,D-=q):(R=0,I=D=(x+S)/2),(F-=2*H)>u?(O+=H*=L?1:-1,z-=H):(F=0,O=z=(x+S)/2)}var G=y*i(O),Y=y*l(O),W=m*i(D),X=m*l(D);if(j>u){var Z,J=y*i(z),K=y*l(z),Q=m*i(I),$=m*l(I);if(E1?0:v<-1?h:Math.acos(v))/2),it=c(Z[0]*Z[0]+Z[1]*Z[1]);V=s(j,(m-it)/(at-1)),U=s(j,(y-it)/(at+1))}}F>u?U>u?(C=b(Q,$,G,Y,y,U,L),P=b(J,K,W,X,y,U,L),A.moveTo(C.cx+C.x01,C.cy+C.y01),Uu&&R>u?V>u?(C=b(W,X,J,K,m,-V,L),P=b(G,Y,Q,$,m,-V,L),A.lineTo(C.cx+C.x01,C.cy+C.y01),V0&&(d+=h);for(null!=e?g.sort(function(t,r){return e(v[t],v[r])}):null!=n&&g.sort(function(t,e){return n(r[t],r[e])}),s=0,c=d?(y-f*b)/d:0;s0?h*c:0)+b,v[l]={data:r[l],index:s,value:h,startAngle:m,endAngle:u,padAngle:x};return v}return s.value=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),s):t},s.sortValues=function(t){return arguments.length?(e=t,n=null,s):e},s.sort=function(t){return arguments.length?(n=t,e=null,s):n},s.startAngle=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),s):a},s.endAngle=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),s):i},s.padAngle=function(t){return arguments.length?(o="function"==typeof t?t:r(+t),s):o},s},t.areaRadial=I,t.radialArea=I,t.lineRadial=z,t.radialLine=z,t.pointRadial=D,t.linkHorizontal=function(){return N(j)},t.linkVertical=function(){return N(V)},t.linkRadial=function(){var t=N(U);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.symbol=function(){var t=r(q),n=r(64),a=null;function i(){var r;if(a||(a=r=e.path()),t.apply(this,arguments).draw(a,+n.apply(this,arguments)),r)return a=null,r+""||null}return i.type=function(e){return arguments.length?(t="function"==typeof e?e:r(e),i):t},i.size=function(t){return arguments.length?(n="function"==typeof t?t:r(+t),i):n},i.context=function(t){return arguments.length?(a=null==t?null:t,i):a},i},t.symbols=ot,t.symbolCircle=q,t.symbolCross=H,t.symbolDiamond=W,t.symbolSquare=Q,t.symbolStar=K,t.symbolTriangle=tt,t.symbolWye=it,t.curveBasisClosed=function(t){return new ut(t)},t.curveBasisOpen=function(t){return new ht(t)},t.curveBasis=function(t){return new ct(t)},t.curveBundle=pt,t.curveCardinalClosed=yt,t.curveCardinalOpen=bt,t.curveCardinal=vt,t.curveCatmullRomClosed=Mt,t.curveCatmullRomOpen=St,t.curveCatmullRom=kt,t.curveLinearClosed=function(t){return new Et(t)},t.curveLinear=w,t.curveMonotoneX=function(t){return new zt(t)},t.curveMonotoneY=function(t){return new It(t)},t.curveNatural=function(t){return new Rt(t)},t.curveStep=function(t){return new Bt(t,.5)},t.curveStepAfter=function(t){return new Bt(t,1)},t.curveStepBefore=function(t){return new Bt(t,0)},t.stack=function(){var t=r([]),e=jt,n=Nt,a=Vt;function i(r){var i,o,s=t.apply(this,arguments),l=r.length,c=s.length,u=new Array(c);for(i=0;i0){for(var r,n,a,i=0,o=t[0].length;i1)for(var r,n,a,i,o,s,l=0,c=t[e[0]].length;l=0?(n[0]=i,n[1]=i+=a):a<0?(n[1]=o,n[0]=o+=a):n[0]=i},t.stackOffsetNone=Nt,t.stackOffsetSilhouette=function(t,e){if((r=t.length)>0){for(var r,n=0,a=t[e[0]],i=a.length;n0&&(n=(r=t[e[0]]).length)>0){for(var r,n,a,i=0,o=1;o=0&&r._call.call(null,t),r=r._next;--n}function m(){l=(s=u.now())+c,n=a=0;try{v()}finally{n=0,function(){var t,n,a=e,i=1/0;for(;a;)a._call?(i>a._time&&(i=a._time),t=a,a=a._next):(n=a._next,a._next=null,a=t?t._next=n:e=n);r=t,x(i)}(),l=0}}function y(){var t=u.now(),e=t-s;e>o&&(c-=e,s=t)}function x(t){n||(a&&(a=clearTimeout(a)),t-l>24?(t<1/0&&(a=setTimeout(m,t-u.now()-c)),i&&(i=clearInterval(i))):(i||(s=u.now(),i=setInterval(y,o)),n=1,h(m)))}d.prototype=g.prototype={constructor:d,restart:function(t,n,a){if("function"!=typeof t)throw new TypeError("callback is not a function");a=(null==a?f():+a)+(null==n?0:+n),this._next||r===this||(r?r._next=this:e=this,r=this),this._call=t,this._time=a,x()},stop:function(){this._call&&(this._call=null,this._time=1/0,x())}},t.now=f,t.timer=g,t.timerFlush=v,t.timeout=function(t,e,r){var n=new d;return e=null==e?0:+e,n.restart(function(r){n.stop(),t(r+e)},e,r),n},t.interval=function(t,e,r){var n=new d,a=e;return null==e?(n.restart(t,e,r),n):(e=+e,r=null==r?f():+r,n.restart(function i(o){o+=a,n.restart(i,a+=e,r),t(o)},e,r),n)},Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],165:[function(t,e,r){!function(){var t={version:"3.5.17"},r=[].slice,n=function(t){return r.call(t)},a=this.document;function i(t){return t&&(t.ownerDocument||t.document||t).documentElement}function o(t){return t&&(t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView)}if(a)try{n(a.documentElement.childNodes)[0].nodeType}catch(t){n=function(t){for(var e=t.length,r=new Array(e);e--;)r[e]=t[e];return r}}if(Date.now||(Date.now=function(){return+new Date}),a)try{a.createElement("DIV").style.setProperty("opacity",0,"")}catch(t){var s=this.Element.prototype,l=s.setAttribute,c=s.setAttributeNS,u=this.CSSStyleDeclaration.prototype,h=u.setProperty;s.setAttribute=function(t,e){l.call(this,t,e+"")},s.setAttributeNS=function(t,e,r){c.call(this,t,e,r+"")},u.setProperty=function(t,e,r){h.call(this,t,e+"",r)}}function f(t,e){return te?1:t>=e?0:NaN}function p(t){return null===t?NaN:+t}function d(t){return!isNaN(t)}function g(t){return{left:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n>>1;t(e[i],r)<0?n=i+1:a=i}return n},right:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n>>1;t(e[i],r)>0?a=i:n=i+1}return n}}}t.ascending=f,t.descending=function(t,e){return et?1:e>=t?0:NaN},t.min=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a=n){r=n;break}for(;++an&&(r=n)}else{for(;++a=n){r=n;break}for(;++an&&(r=n)}return r},t.max=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a=n){r=n;break}for(;++ar&&(r=n)}else{for(;++a=n){r=n;break}for(;++ar&&(r=n)}return r},t.extent=function(t,e){var r,n,a,i=-1,o=t.length;if(1===arguments.length){for(;++i=n){r=a=n;break}for(;++in&&(r=n),a=n){r=a=n;break}for(;++i
=r)for(n=r;++in&&(n=r)}else for(;++i=r)for(n=r;++in&&(n=r);return n},t.mean=function(t,e){var r,n=t.length,a=n,i=-1,o=0;if(null==e)for(;++i=0;)for(e=(n=t[a]).length;--e>=0;)r[--o]=n[e];return r},t.min=T,t.pairs=function(t,e){null==e&&(e=o);for(var r=0,n=t.length-1,a=t[0],i=new Array(n<0?0:n);r0)return[t];if((n=e0)for(t=Math.ceil(t/o),e=Math.floor(e/o),i=new Array(a=Math.ceil(e-t+1));++s=l.length)return null!=t&&n.sort(t),null!=e?e(n):n;for(var s,c,h,f=-1,p=n.length,d=l[a++],g=r(),v=i();++fl.length)return r;var a,i=c[n-1];return null!=e&&n>=l.length?a=r.entries():(a=[],r.each(function(e,r){a.push({key:r,values:t(e,n)})})),null!=i?a.sort(function(t,e){return i(t.key,e.key)}):a}(u(t,0,i,o),0)},key:function(t){return l.push(t),s},sortKeys:function(t){return c[l.length-1]=t,s},sortValues:function(e){return t=e,s},rollup:function(t){return e=t,s}}},t.set=c,t.map=r,t.keys=function(t){var e=[];for(var r in t)e.push(r);return e},t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],156:[function(t,e,r){var n;n=this,function(t){"use strict";function e(t,e,r){t.prototype=e.prototype=r,r.constructor=t}function r(t,e){var r=Object.create(t.prototype);for(var n in e)r[n]=e[n];return r}function n(){}var a="\\s*([+-]?\\d+)\\s*",i="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",o="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",s=/^#([0-9a-f]{3,8})$/,l=new RegExp("^rgb\\("+[a,a,a]+"\\)$"),c=new RegExp("^rgb\\("+[o,o,o]+"\\)$"),u=new RegExp("^rgba\\("+[a,a,a,i]+"\\)$"),h=new RegExp("^rgba\\("+[o,o,o,i]+"\\)$"),f=new RegExp("^hsl\\("+[i,o,o]+"\\)$"),p=new RegExp("^hsla\\("+[i,o,o,i]+"\\)$"),d={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function g(){return this.rgb().formatHex()}function v(){return this.rgb().formatRgb()}function m(t){var e,r;return t=(t+"").trim().toLowerCase(),(e=s.exec(t))?(r=e[1].length,e=parseInt(e[1],16),6===r?y(e):3===r?new w(e>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===r?new w(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===r?new w(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=l.exec(t))?new w(e[1],e[2],e[3],1):(e=c.exec(t))?new w(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=u.exec(t))?x(e[1],e[2],e[3],e[4]):(e=h.exec(t))?x(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=f.exec(t))?A(e[1],e[2]/100,e[3]/100,1):(e=p.exec(t))?A(e[1],e[2]/100,e[3]/100,e[4]):d.hasOwnProperty(t)?y(d[t]):"transparent"===t?new w(NaN,NaN,NaN,0):null}function y(t){return new w(t>>16&255,t>>8&255,255&t,1)}function x(t,e,r,n){return n<=0&&(t=e=r=NaN),new w(t,e,r,n)}function b(t){return t instanceof n||(t=m(t)),t?new w((t=t.rgb()).r,t.g,t.b,t.opacity):new w}function _(t,e,r,n){return 1===arguments.length?b(t):new w(t,e,r,null==n?1:n)}function w(t,e,r,n){this.r=+t,this.g=+e,this.b=+r,this.opacity=+n}function k(){return"#"+M(this.r)+M(this.g)+M(this.b)}function T(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}function M(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function A(t,e,r,n){return n<=0?t=e=r=NaN:r<=0||r>=1?t=e=NaN:e<=0&&(t=NaN),new L(t,e,r,n)}function S(t){if(t instanceof L)return new L(t.h,t.s,t.l,t.opacity);if(t instanceof n||(t=m(t)),!t)return new L;if(t instanceof L)return t;var e=(t=t.rgb()).r/255,r=t.g/255,a=t.b/255,i=Math.min(e,r,a),o=Math.max(e,r,a),s=NaN,l=o-i,c=(o+i)/2;return l?(s=e===o?(r-a)/l+6*(r0&&c<1?0:s,new L(s,l,c,t.opacity)}function E(t,e,r,n){return 1===arguments.length?S(t):new L(t,e,r,null==n?1:n)}function L(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}function C(t,e,r){return 255*(t<60?e+(r-e)*t/60:t<180?r:t<240?e+(r-e)*(240-t)/60:e)}e(n,m,{copy:function(t){return Object.assign(new this.constructor,this,t)},displayable:function(){return this.rgb().displayable()},hex:g,formatHex:g,formatHsl:function(){return S(this).formatHsl()},formatRgb:v,toString:v}),e(w,_,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:k,formatHex:k,formatRgb:T,toString:T})),e(L,E,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new L(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new L(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*e,a=2*r-n;return new w(C(t>=240?t-240:t+120,a,n),C(t,a,n),C(t<120?t+240:t-120,a,n),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===t?")":", "+t+")")}}));var P=Math.PI/180,O=180/Math.PI,z=.96422,I=1,D=.82521,R=4/29,F=6/29,B=3*F*F,N=F*F*F;function j(t){if(t instanceof U)return new U(t.l,t.a,t.b,t.opacity);if(t instanceof Z)return J(t);t instanceof w||(t=b(t));var e,r,n=Y(t.r),a=Y(t.g),i=Y(t.b),o=q((.2225045*n+.7168786*a+.0606169*i)/I);return n===a&&a===i?e=r=o:(e=q((.4360747*n+.3850649*a+.1430804*i)/z),r=q((.0139322*n+.0971045*a+.7141733*i)/D)),new U(116*o-16,500*(e-o),200*(o-r),t.opacity)}function V(t,e,r,n){return 1===arguments.length?j(t):new U(t,e,r,null==n?1:n)}function U(t,e,r,n){this.l=+t,this.a=+e,this.b=+r,this.opacity=+n}function q(t){return t>N?Math.pow(t,1/3):t/B+R}function H(t){return t>F?t*t*t:B*(t-R)}function G(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Y(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function W(t){if(t instanceof Z)return new Z(t.h,t.c,t.l,t.opacity);if(t instanceof U||(t=j(t)),0===t.a&&0===t.b)return new Z(NaN,0=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:e}})),l=-1,c=s.length;if(!(arguments.length<2)){if(null!=e&&"function"!=typeof e)throw new Error("invalid callback: "+e);for(;++l0)for(var r,n,a=new Array(r),i=0;if+c||np+c||iu.index){var h=f-s.x-s.vx,v=p-s.y-s.vy,m=h*h+v*v;mt.r&&(t.r=t[e].r)}function f(){if(r){var e,a,i=r.length;for(n=new Array(i),e=0;e=c)){(t.data!==r||t.next)&&(0===h&&(d+=(h=o())*h),0===f&&(d+=(f=o())*f),d1?(null==r?u.remove(t):u.set(t,y(r)),e):u.get(t)},find:function(e,r,n){var a,i,o,s,l,c=0,u=t.length;for(null==n?n=1/0:n*=n,c=0;c1?(f.on(t,r),e):f.on(t)}}},t.forceX=function(t){var e,r,n,a=i(.1);function o(t){for(var a,i=0,o=e.length;i=0;)e+=r[n].value;else e=1;t.value=e}function i(t,e){var r,n,a,i,s,u=new c(t),h=+t.value&&(u.value=t.value),f=[u];for(null==e&&(e=o);r=f.pop();)if(h&&(r.value=+r.data.value),(a=e(r.data))&&(s=a.length))for(r.children=new Array(s),i=s-1;i>=0;--i)f.push(n=r.children[i]=new c(a[i])),n.parent=r,n.depth=r.depth+1;return u.eachBefore(l)}function o(t){return t.children}function s(t){t.data=t.data.data}function l(t){var e=0;do{t.height=e}while((t=t.parent)&&t.height<++e)}function c(t){this.data=t,this.depth=this.height=0,this.parent=null}c.prototype=i.prototype={constructor:c,count:function(){return this.eachAfter(a)},each:function(t){var e,r,n,a,i=this,o=[i];do{for(e=o.reverse(),o=[];i=e.pop();)if(t(i),r=i.children)for(n=0,a=r.length;n=0;--r)a.push(e[r]);return this},sum:function(t){return this.eachAfter(function(e){for(var r=+t(e.data)||0,n=e.children,a=n&&n.length;--a>=0;)r+=n[a].value;e.value=r})},sort:function(t){return this.eachBefore(function(e){e.children&&e.children.sort(t)})},path:function(t){for(var e=this,r=function(t,e){if(t===e)return t;var r=t.ancestors(),n=e.ancestors(),a=null;for(t=r.pop(),e=n.pop();t===e;)a=t,t=r.pop(),e=n.pop();return a}(e,t),n=[e];e!==r;)e=e.parent,n.push(e);for(var a=n.length;t!==r;)n.splice(a,0,t),t=t.parent;return n},ancestors:function(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e},descendants:function(){var t=[];return this.each(function(e){t.push(e)}),t},leaves:function(){var t=[];return this.eachBefore(function(e){e.children||t.push(e)}),t},links:function(){var t=this,e=[];return t.each(function(r){r!==t&&e.push({source:r.parent,target:r})}),e},copy:function(){return i(this).eachBefore(s)}};var u=Array.prototype.slice;function h(t){for(var e,r,n=0,a=(t=function(t){for(var e,r,n=t.length;n;)r=Math.random()*n--|0,e=t[n],t[n]=t[r],t[r]=e;return t}(u.call(t))).length,i=[];n0&&r*r>n*n+a*a}function g(t,e){for(var r=0;r(o*=o)?(n=(c+o-a)/(2*c),i=Math.sqrt(Math.max(0,o/c-n*n)),r.x=t.x-n*s-i*l,r.y=t.y-n*l+i*s):(n=(c+a-o)/(2*c),i=Math.sqrt(Math.max(0,a/c-n*n)),r.x=e.x+n*s-i*l,r.y=e.y+n*l+i*s)):(r.x=e.x+r.r,r.y=e.y)}function b(t,e){var r=t.r+e.r-1e-6,n=e.x-t.x,a=e.y-t.y;return r>0&&r*r>n*n+a*a}function _(t){var e=t._,r=t.next._,n=e.r+r.r,a=(e.x*r.r+r.x*e.r)/n,i=(e.y*r.r+r.y*e.r)/n;return a*a+i*i}function w(t){this._=t,this.next=null,this.previous=null}function k(t){if(!(a=t.length))return 0;var e,r,n,a,i,o,s,l,c,u,f;if((e=t[0]).x=0,e.y=0,!(a>1))return e.r;if(r=t[1],e.x=-r.r,r.x=e.r,r.y=0,!(a>2))return e.r+r.r;x(r,e,n=t[2]),e=new w(e),r=new w(r),n=new w(n),e.next=n.previous=r,r.next=e.previous=n,n.next=r.previous=e;t:for(s=3;sf&&(f=s),v=u*u*g,(p=Math.max(f/v,v/h))>d){u-=s;break}d=p}m.push(o={value:u,dice:l1?e:1)},r}(G),X=function t(e){function r(t,r,n,a,i){if((o=t._squarify)&&o.ratio===e)for(var o,s,l,c,u,h=-1,f=o.length,p=t.value;++h1?e:1)},r}(G);t.cluster=function(){var t=e,a=1,i=1,o=!1;function s(e){var s,l=0;e.eachAfter(function(e){var a=e.children;a?(e.x=function(t){return t.reduce(r,0)/t.length}(a),e.y=function(t){return 1+t.reduce(n,0)}(a)):(e.x=s?l+=t(e,s):0,e.y=0,s=e)});var c=function(t){for(var e;e=t.children;)t=e[0];return t}(e),u=function(t){for(var e;e=t.children;)t=e[e.length-1];return t}(e),h=c.x-t(c,u)/2,f=u.x+t(u,c)/2;return e.eachAfter(o?function(t){t.x=(t.x-e.x)*a,t.y=(e.y-t.y)*i}:function(t){t.x=(t.x-h)/(f-h)*a,t.y=(1-(e.y?t.y/e.y:1))*i})}return s.separation=function(e){return arguments.length?(t=e,s):t},s.size=function(t){return arguments.length?(o=!1,a=+t[0],i=+t[1],s):o?null:[a,i]},s.nodeSize=function(t){return arguments.length?(o=!0,a=+t[0],i=+t[1],s):o?[a,i]:null},s},t.hierarchy=i,t.pack=function(){var t=null,e=1,r=1,n=M;function a(a){return a.x=e/2,a.y=r/2,t?a.eachBefore(E(t)).eachAfter(L(n,.5)).eachBefore(C(1)):a.eachBefore(E(S)).eachAfter(L(M,1)).eachAfter(L(n,a.r/Math.min(e,r))).eachBefore(C(Math.min(e,r)/(2*a.r))),a}return a.radius=function(e){return arguments.length?(t=null==(r=e)?null:T(r),a):t;var r},a.size=function(t){return arguments.length?(e=+t[0],r=+t[1],a):[e,r]},a.padding=function(t){return arguments.length?(n="function"==typeof t?t:A(+t),a):n},a},t.packEnclose=h,t.packSiblings=function(t){return k(t),t},t.partition=function(){var t=1,e=1,r=0,n=!1;function a(a){var i=a.height+1;return a.x0=a.y0=r,a.x1=t,a.y1=e/i,a.eachBefore(function(t,e){return function(n){n.children&&O(n,n.x0,t*(n.depth+1)/e,n.x1,t*(n.depth+2)/e);var a=n.x0,i=n.y0,o=n.x1-r,s=n.y1-r;o0)throw new Error("cycle");return i}return r.id=function(e){return arguments.length?(t=T(e),r):t},r.parentId=function(t){return arguments.length?(e=T(t),r):e},r},t.tree=function(){var t=B,e=1,r=1,n=null;function a(a){var l=function(t){for(var e,r,n,a,i,o=new q(t,0),s=[o];e=s.pop();)if(n=e._.children)for(e.children=new Array(i=n.length),a=i-1;a>=0;--a)s.push(r=e.children[a]=new q(n[a],a)),r.parent=e;return(o.parent=new q(null,0)).children=[o],o}(a);if(l.eachAfter(i),l.parent.m=-l.z,l.eachBefore(o),n)a.eachBefore(s);else{var c=a,u=a,h=a;a.eachBefore(function(t){t.xu.x&&(u=t),t.depth>h.depth&&(h=t)});var f=c===u?1:t(c,u)/2,p=f-c.x,d=e/(u.x+f+p),g=r/(h.depth||1);a.eachBefore(function(t){t.x=(t.x+p)*d,t.y=t.depth*g})}return a}function i(e){var r=e.children,n=e.parent.children,a=e.i?n[e.i-1]:null;if(r){!function(t){for(var e,r=0,n=0,a=t.children,i=a.length;--i>=0;)(e=a[i]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(e);var i=(r[0].z+r[r.length-1].z)/2;a?(e.z=a.z+t(e._,a._),e.m=e.z-i):e.z=i}else a&&(e.z=a.z+t(e._,a._));e.parent.A=function(e,r,n){if(r){for(var a,i=e,o=e,s=r,l=i.parent.children[0],c=i.m,u=o.m,h=s.m,f=l.m;s=j(s),i=N(i),s&&i;)l=N(l),(o=j(o)).a=e,(a=s.z+h-i.z-c+t(s._,i._))>0&&(V(U(s,e,n),e,a),c+=a,u+=a),h+=s.m,c+=i.m,f+=l.m,u+=o.m;s&&!j(o)&&(o.t=s,o.m+=h-u),i&&!N(l)&&(l.t=i,l.m+=c-f,n=e)}return n}(e,a,e.parent.A||n[0])}function o(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function s(t){t.x*=e,t.y=t.depth*r}return a.separation=function(e){return arguments.length?(t=e,a):t},a.size=function(t){return arguments.length?(n=!1,e=+t[0],r=+t[1],a):n?null:[e,r]},a.nodeSize=function(t){return arguments.length?(n=!0,e=+t[0],r=+t[1],a):n?[e,r]:null},a},t.treemap=function(){var t=W,e=!1,r=1,n=1,a=[0],i=M,o=M,s=M,l=M,c=M;function u(t){return t.x0=t.y0=0,t.x1=r,t.y1=n,t.eachBefore(h),a=[0],e&&t.eachBefore(P),t}function h(e){var r=a[e.depth],n=e.x0+r,u=e.y0+r,h=e.x1-r,f=e.y1-r;h=r-1){var u=s[e];return u.x0=a,u.y0=i,u.x1=o,void(u.y1=l)}for(var h=c[e],f=n/2+h,p=e+1,d=r-1;p>>1;c[g]l-i){var y=(a*m+o*v)/n;t(e,p,v,a,i,y,l),t(p,r,m,y,i,o,l)}else{var x=(i*m+l*v)/n;t(e,p,v,a,i,o,x),t(p,r,m,a,x,o,l)}}(0,l,t.value,e,r,n,a)},t.treemapDice=O,t.treemapResquarify=X,t.treemapSlice=H,t.treemapSliceDice=function(t,e,r,n,a){(1&t.depth?H:O)(t,e,r,n,a)},t.treemapSquarify=W,Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:(n=n||self).d3=n.d3||{})},{}],160:[function(t,e,r){var n,a;n=this,a=function(t,e){"use strict";function r(t,e,r,n,a){var i=t*t,o=i*t;return((1-3*t+3*i-o)*e+(4-6*i+3*o)*r+(1+3*t+3*i-3*o)*n+o*a)/6}function n(t){var e=t.length-1;return function(n){var a=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),i=t[a],o=t[a+1],s=a>0?t[a-1]:2*i-o,l=a180||r<-180?r-360*Math.round(r/360):r):i(isNaN(t)?e:t)}function l(t){return 1==(t=+t)?c:function(e,r){return r-e?function(t,e,r){return t=Math.pow(t,r),e=Math.pow(e,r)-t,r=1/r,function(n){return Math.pow(t+n*e,r)}}(e,r,t):i(isNaN(e)?r:e)}}function c(t,e){var r=e-t;return r?o(t,r):i(isNaN(t)?e:t)}var u=function t(r){var n=l(r);function a(t,r){var a=n((t=e.rgb(t)).r,(r=e.rgb(r)).r),i=n(t.g,r.g),o=n(t.b,r.b),s=c(t.opacity,r.opacity);return function(e){return t.r=a(e),t.g=i(e),t.b=o(e),t.opacity=s(e),t+""}}return a.gamma=t,a}(1);function h(t){return function(r){var n,a,i=r.length,o=new Array(i),s=new Array(i),l=new Array(i);for(n=0;ni&&(a=e.slice(i,a),s[o]?s[o]+=a:s[++o]=a),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:y(r,n)})),i=_.lastIndex;return i180?e+=360:e-t>180&&(t+=360),i.push({i:r.push(a(r)+"rotate(",null,n)-2,x:y(t,e)})):e&&r.push(a(r)+"rotate("+e+n)}(i.rotate,o.rotate,s,l),function(t,e,r,i){t!==e?i.push({i:r.push(a(r)+"skewX(",null,n)-2,x:y(t,e)}):e&&r.push(a(r)+"skewX("+e+n)}(i.skewX,o.skewX,s,l),function(t,e,r,n,i,o){if(t!==r||e!==n){var s=i.push(a(i)+"scale(",null,",",null,")");o.push({i:s-4,x:y(t,r)},{i:s-2,x:y(e,n)})}else 1===r&&1===n||i.push(a(i)+"scale("+r+","+n+")")}(i.scaleX,i.scaleY,o.scaleX,o.scaleY,s,l),i=o=null,function(t){for(var e,r=-1,n=l.length;++r1e-6)if(Math.abs(h*l-c*u)>1e-6&&i){var p=n-o,d=a-s,g=l*l+c*c,v=p*p+d*d,m=Math.sqrt(g),y=Math.sqrt(f),x=i*Math.tan((e-Math.acos((g+f-v)/(2*m*y)))/2),b=x/y,_=x/m;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*u)+","+(r+b*h)),this._+="A"+i+","+i+",0,0,"+ +(h*p>u*d)+","+(this._x1=t+_*l)+","+(this._y1=r+_*c)}else this._+="L"+(this._x1=t)+","+(this._y1=r);else;},arc:function(t,a,i,o,s,l){t=+t,a=+a;var c=(i=+i)*Math.cos(o),u=i*Math.sin(o),h=t+c,f=a+u,p=1^l,d=l?o-s:s-o;if(i<0)throw new Error("negative radius: "+i);null===this._x1?this._+="M"+h+","+f:(Math.abs(this._x1-h)>1e-6||Math.abs(this._y1-f)>1e-6)&&(this._+="L"+h+","+f),i&&(d<0&&(d=d%r+r),d>n?this._+="A"+i+","+i+",0,1,"+p+","+(t-c)+","+(a-u)+"A"+i+","+i+",0,1,"+p+","+(this._x1=h)+","+(this._y1=f):d>1e-6&&(this._+="A"+i+","+i+",0,"+ +(d>=e)+","+p+","+(this._x1=t+i*Math.cos(s))+","+(this._y1=a+i*Math.sin(s))))},rect:function(t,e,r,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +r+"v"+ +n+"h"+-r+"Z"},toString:function(){return this._}},t.path=i,Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],162:[function(t,e,r){var n;n=this,function(t){"use strict";function e(t,e,r,n){if(isNaN(e)||isNaN(r))return t;var a,i,o,s,l,c,u,h,f,p=t._root,d={data:n},g=t._x0,v=t._y0,m=t._x1,y=t._y1;if(!p)return t._root=d,t;for(;p.length;)if((c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o,a=p,!(p=p[h=u<<1|c]))return a[h]=d,t;if(s=+t._x.call(null,p.data),l=+t._y.call(null,p.data),e===s&&r===l)return d.next=p,a?a[h]=d:t._root=d,t;do{a=a?a[h]=new Array(4):t._root=new Array(4),(c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o}while((h=u<<1|c)==(f=(l>=o)<<1|s>=i));return a[f]=p,a[h]=d,t}var r=function(t,e,r,n,a){this.node=t,this.x0=e,this.y0=r,this.x1=n,this.y1=a};function n(t){return t[0]}function a(t){return t[1]}function i(t,e,r){var i=new o(null==e?n:e,null==r?a:r,NaN,NaN,NaN,NaN);return null==t?i:i.addAll(t)}function o(t,e,r,n,a,i){this._x=t,this._y=e,this._x0=r,this._y0=n,this._x1=a,this._y1=i,this._root=void 0}function s(t){for(var e={data:t.data},r=e;t=t.next;)r=r.next={data:t.data};return e}var l=i.prototype=o.prototype;l.copy=function(){var t,e,r=new o(this._x,this._y,this._x0,this._y0,this._x1,this._y1),n=this._root;if(!n)return r;if(!n.length)return r._root=s(n),r;for(t=[{source:n,target:r._root=new Array(4)}];n=t.pop();)for(var a=0;a<4;++a)(e=n.source[a])&&(e.length?t.push({source:e,target:n.target[a]=new Array(4)}):n.target[a]=s(e));return r},l.add=function(t){var r=+this._x.call(null,t),n=+this._y.call(null,t);return e(this.cover(r,n),r,n,t)},l.addAll=function(t){var r,n,a,i,o=t.length,s=new Array(o),l=new Array(o),c=1/0,u=1/0,h=-1/0,f=-1/0;for(n=0;nh&&(h=a),if&&(f=i));for(ht||t>a||n>e||e>i))return this;var o,s,l=a-r,c=this._root;switch(s=(e<(n+i)/2)<<1|t<(r+a)/2){case 0:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),t>(a=r+l)||e>i);break;case 1:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),(r=a-l)>t||e>i);break;case 2:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),t>(a=r+l)||n>e);break;case 3:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),(r=a-l)>t||n>e)}this._root&&this._root.length&&(this._root=c)}return this._x0=r,this._y0=n,this._x1=a,this._y1=i,this},l.data=function(){var t=[];return this.visit(function(e){if(!e.length)do{t.push(e.data)}while(e=e.next)}),t},l.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},l.find=function(t,e,n){var a,i,o,s,l,c,u,h=this._x0,f=this._y0,p=this._x1,d=this._y1,g=[],v=this._root;for(v&&g.push(new r(v,h,f,p,d)),null==n?n=1/0:(h=t-n,f=e-n,p=t+n,d=e+n,n*=n);c=g.pop();)if(!(!(v=c.node)||(i=c.x0)>p||(o=c.y0)>d||(s=c.x1)=y)<<1|t>=m)&&(c=g[g.length-1],g[g.length-1]=g[g.length-1-u],g[g.length-1-u]=c)}else{var x=t-+this._x.call(null,v.data),b=e-+this._y.call(null,v.data),_=x*x+b*b;if(_=(s=(d+v)/2))?d=s:v=s,(u=o>=(l=(g+m)/2))?g=l:m=l,e=p,!(p=p[h=u<<1|c]))return this;if(!p.length)break;(e[h+1&3]||e[h+2&3]||e[h+3&3])&&(r=e,f=h)}for(;p.data!==t;)if(n=p,!(p=p.next))return this;return(a=p.next)&&delete p.next,n?(a?n.next=a:delete n.next,this):e?(a?e[h]=a:delete e[h],(p=e[0]||e[1]||e[2]||e[3])&&p===(e[3]||e[2]||e[1]||e[0])&&!p.length&&(r?r[f]=p:this._root=p),this):(this._root=a,this)},l.removeAll=function(t){for(var e=0,r=t.length;e=1?f:t<=-1?-f:Math.asin(t)}function g(t){return t.innerRadius}function v(t){return t.outerRadius}function m(t){return t.startAngle}function y(t){return t.endAngle}function x(t){return t&&t.padAngle}function b(t,e,r,n,a,i,s){var l=t-r,u=e-n,h=(s?i:-i)/c(l*l+u*u),f=h*u,p=-h*l,d=t+f,g=e+p,v=r+f,m=n+p,y=(d+v)/2,x=(g+m)/2,b=v-d,_=m-g,w=b*b+_*_,k=a-i,T=d*m-v*g,M=(_<0?-1:1)*c(o(0,k*k*w-T*T)),A=(T*_-b*M)/w,S=(-T*b-_*M)/w,E=(T*_+b*M)/w,L=(-T*b+_*M)/w,C=A-y,P=S-x,O=E-y,z=L-x;return C*C+P*P>O*O+z*z&&(A=E,S=L),{cx:A,cy:S,x01:-f,y01:-p,x11:A*(a/k-1),y11:S*(a/k-1)}}function _(t){this._context=t}function w(t){return new _(t)}function k(t){return t[0]}function T(t){return t[1]}function M(){var t=k,n=T,a=r(!0),i=null,o=w,s=null;function l(r){var l,c,u,h=r.length,f=!1;for(null==i&&(s=o(u=e.path())),l=0;l<=h;++l)!(l=h;--f)c.point(m[f],y[f]);c.lineEnd(),c.areaEnd()}v&&(m[u]=+t(p,u,r),y[u]=+a(p,u,r),c.point(n?+n(p,u,r):m[u],i?+i(p,u,r):y[u]))}if(d)return c=null,d+""||null}function h(){return M().defined(o).curve(l).context(s)}return u.x=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),n=null,u):t},u.x0=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),u):t},u.x1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:r(+t),u):n},u.y=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),i=null,u):a},u.y0=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),u):a},u.y1=function(t){return arguments.length?(i=null==t?null:"function"==typeof t?t:r(+t),u):i},u.lineX0=u.lineY0=function(){return h().x(t).y(a)},u.lineY1=function(){return h().x(t).y(i)},u.lineX1=function(){return h().x(n).y(a)},u.defined=function(t){return arguments.length?(o="function"==typeof t?t:r(!!t),u):o},u.curve=function(t){return arguments.length?(l=t,null!=s&&(c=l(s)),u):l},u.context=function(t){return arguments.length?(null==t?s=c=null:c=l(s=t),u):s},u}function S(t,e){return et?1:e>=t?0:NaN}function E(t){return t}_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e)}}};var L=P(w);function C(t){this._curve=t}function P(t){function e(e){return new C(t(e))}return e._curve=t,e}function O(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function z(){return O(M().curve(L))}function I(){var t=A().curve(L),e=t.curve,r=t.lineX0,n=t.lineX1,a=t.lineY0,i=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return O(r())},delete t.lineX0,t.lineEndAngle=function(){return O(n())},delete t.lineX1,t.lineInnerRadius=function(){return O(a())},delete t.lineY0,t.lineOuterRadius=function(){return O(i())},delete t.lineY1,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function D(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]}C.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}};var R=Array.prototype.slice;function F(t){return t.source}function B(t){return t.target}function N(t){var n=F,a=B,i=k,o=T,s=null;function l(){var r,l=R.call(arguments),c=n.apply(this,l),u=a.apply(this,l);if(s||(s=r=e.path()),t(s,+i.apply(this,(l[0]=c,l)),+o.apply(this,l),+i.apply(this,(l[0]=u,l)),+o.apply(this,l)),r)return s=null,r+""||null}return l.source=function(t){return arguments.length?(n=t,l):n},l.target=function(t){return arguments.length?(a=t,l):a},l.x=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),l):i},l.y=function(t){return arguments.length?(o="function"==typeof t?t:r(+t),l):o},l.context=function(t){return arguments.length?(s=null==t?null:t,l):s},l}function j(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e=(e+n)/2,r,e,a,n,a)}function V(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e,r=(r+a)/2,n,r,n,a)}function U(t,e,r,n,a){var i=D(e,r),o=D(e,r=(r+a)/2),s=D(n,r),l=D(n,a);t.moveTo(i[0],i[1]),t.bezierCurveTo(o[0],o[1],s[0],s[1],l[0],l[1])}var q={draw:function(t,e){var r=Math.sqrt(e/h);t.moveTo(r,0),t.arc(0,0,r,0,p)}},H={draw:function(t,e){var r=Math.sqrt(e/5)/2;t.moveTo(-3*r,-r),t.lineTo(-r,-r),t.lineTo(-r,-3*r),t.lineTo(r,-3*r),t.lineTo(r,-r),t.lineTo(3*r,-r),t.lineTo(3*r,r),t.lineTo(r,r),t.lineTo(r,3*r),t.lineTo(-r,3*r),t.lineTo(-r,r),t.lineTo(-3*r,r),t.closePath()}},G=Math.sqrt(1/3),Y=2*G,W={draw:function(t,e){var r=Math.sqrt(e/Y),n=r*G;t.moveTo(0,-r),t.lineTo(n,0),t.lineTo(0,r),t.lineTo(-n,0),t.closePath()}},X=Math.sin(h/10)/Math.sin(7*h/10),Z=Math.sin(p/10)*X,J=-Math.cos(p/10)*X,K={draw:function(t,e){var r=Math.sqrt(.8908130915292852*e),n=Z*r,a=J*r;t.moveTo(0,-r),t.lineTo(n,a);for(var i=1;i<5;++i){var o=p*i/5,s=Math.cos(o),l=Math.sin(o);t.lineTo(l*r,-s*r),t.lineTo(s*n-l*a,l*n+s*a)}t.closePath()}},Q={draw:function(t,e){var r=Math.sqrt(e),n=-r/2;t.rect(n,n,r,r)}},$=Math.sqrt(3),tt={draw:function(t,e){var r=-Math.sqrt(e/(3*$));t.moveTo(0,2*r),t.lineTo(-$*r,-r),t.lineTo($*r,-r),t.closePath()}},et=-.5,rt=Math.sqrt(3)/2,nt=1/Math.sqrt(12),at=3*(nt/2+1),it={draw:function(t,e){var r=Math.sqrt(e/at),n=r/2,a=r*nt,i=n,o=r*nt+r,s=-i,l=o;t.moveTo(n,a),t.lineTo(i,o),t.lineTo(s,l),t.lineTo(et*n-rt*a,rt*n+et*a),t.lineTo(et*i-rt*o,rt*i+et*o),t.lineTo(et*s-rt*l,rt*s+et*l),t.lineTo(et*n+rt*a,et*a-rt*n),t.lineTo(et*i+rt*o,et*o-rt*i),t.lineTo(et*s+rt*l,et*l-rt*s),t.closePath()}},ot=[q,H,W,Q,K,tt,it];function st(){}function lt(t,e,r){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+r)/6)}function ct(t){this._context=t}function ut(t){this._context=t}function ht(t){this._context=t}function ft(t,e){this._basis=new ct(t),this._beta=e}ct.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:lt(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ut.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ht.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var r=(this._x0+4*this._x1+t)/6,n=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(r,n):this._context.moveTo(r,n);break;case 3:this._point=4;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ft.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,r=t.length-1;if(r>0)for(var n,a=t[0],i=e[0],o=t[r]-a,s=e[r]-i,l=-1;++l<=r;)n=l/r,this._basis.point(this._beta*t[l]+(1-this._beta)*(a+n*o),this._beta*e[l]+(1-this._beta)*(i+n*s));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}};var pt=function t(e){function r(t){return 1===e?new ct(t):new ft(t,e)}return r.beta=function(e){return t(+e)},r}(.85);function dt(t,e,r){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-r),t._x2,t._y2)}function gt(t,e){this._context=t,this._k=(1-e)/6}gt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:dt(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var vt=function t(e){function r(t){return new gt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function mt(t,e){this._context=t,this._k=(1-e)/6}mt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var yt=function t(e){function r(t){return new mt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function xt(t,e){this._context=t,this._k=(1-e)/6}xt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var bt=function t(e){function r(t){return new xt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function _t(t,e,r){var n=t._x1,a=t._y1,i=t._x2,o=t._y2;if(t._l01_a>u){var s=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,l=3*t._l01_a*(t._l01_a+t._l12_a);n=(n*s-t._x0*t._l12_2a+t._x2*t._l01_2a)/l,a=(a*s-t._y0*t._l12_2a+t._y2*t._l01_2a)/l}if(t._l23_a>u){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,h=3*t._l23_a*(t._l23_a+t._l12_a);i=(i*c+t._x1*t._l23_2a-e*t._l12_2a)/h,o=(o*c+t._y1*t._l23_2a-r*t._l12_2a)/h}t._context.bezierCurveTo(n,a,i,o,t._x2,t._y2)}function wt(t,e){this._context=t,this._alpha=e}wt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var kt=function t(e){function r(t){return e?new wt(t,e):new gt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Tt(t,e){this._context=t,this._alpha=e}Tt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var Mt=function t(e){function r(t){return e?new Tt(t,e):new mt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function At(t,e){this._context=t,this._alpha=e}At.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var St=function t(e){function r(t){return e?new At(t,e):new xt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Et(t){this._context=t}function Lt(t){return t<0?-1:1}function Ct(t,e,r){var n=t._x1-t._x0,a=e-t._x1,i=(t._y1-t._y0)/(n||a<0&&-0),o=(r-t._y1)/(a||n<0&&-0),s=(i*a+o*n)/(n+a);return(Lt(i)+Lt(o))*Math.min(Math.abs(i),Math.abs(o),.5*Math.abs(s))||0}function Pt(t,e){var r=t._x1-t._x0;return r?(3*(t._y1-t._y0)/r-e)/2:e}function Ot(t,e,r){var n=t._x0,a=t._y0,i=t._x1,o=t._y1,s=(i-n)/3;t._context.bezierCurveTo(n+s,a+s*e,i-s,o-s*r,i,o)}function zt(t){this._context=t}function It(t){this._context=new Dt(t)}function Dt(t){this._context=t}function Rt(t){this._context=t}function Ft(t){var e,r,n=t.length-1,a=new Array(n),i=new Array(n),o=new Array(n);for(a[0]=0,i[0]=2,o[0]=t[0]+2*t[1],e=1;e=0;--e)a[e]=(o[e]-a[e+1])/i[e];for(i[n-1]=(t[n]+a[n-1])/2,e=0;e1)for(var r,n,a,i=1,o=t[e[0]],s=o.length;i=0;)r[e]=e;return r}function Vt(t,e){return t[e]}function Ut(t){var e=t.map(qt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function qt(t){for(var e,r=-1,n=0,a=t.length,i=-1/0;++ri&&(i=e,n=r);return n}function Ht(t){var e=t.map(Gt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function Gt(t){for(var e,r=0,n=-1,a=t.length;++n=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}}this._x=t,this._y=e}},t.arc=function(){var t=g,o=v,_=r(0),w=null,k=m,T=y,M=x,A=null;function S(){var r,g,v,m=+t.apply(this,arguments),y=+o.apply(this,arguments),x=k.apply(this,arguments)-f,S=T.apply(this,arguments)-f,E=n(S-x),L=S>x;if(A||(A=r=e.path()),yu)if(E>p-u)A.moveTo(y*i(x),y*l(x)),A.arc(0,0,y,x,S,!L),m>u&&(A.moveTo(m*i(S),m*l(S)),A.arc(0,0,m,S,x,L));else{var C,P,O=x,z=S,I=x,D=S,R=E,F=E,B=M.apply(this,arguments)/2,N=B>u&&(w?+w.apply(this,arguments):c(m*m+y*y)),j=s(n(y-m)/2,+_.apply(this,arguments)),V=j,U=j;if(N>u){var q=d(N/m*l(B)),H=d(N/y*l(B));(R-=2*q)>u?(I+=q*=L?1:-1,D-=q):(R=0,I=D=(x+S)/2),(F-=2*H)>u?(O+=H*=L?1:-1,z-=H):(F=0,O=z=(x+S)/2)}var G=y*i(O),Y=y*l(O),W=m*i(D),X=m*l(D);if(j>u){var Z,J=y*i(z),K=y*l(z),Q=m*i(I),$=m*l(I);if(E1?0:v<-1?h:Math.acos(v))/2),it=c(Z[0]*Z[0]+Z[1]*Z[1]);V=s(j,(m-it)/(at-1)),U=s(j,(y-it)/(at+1))}}F>u?U>u?(C=b(Q,$,G,Y,y,U,L),P=b(J,K,W,X,y,U,L),A.moveTo(C.cx+C.x01,C.cy+C.y01),Uu&&R>u?V>u?(C=b(W,X,J,K,m,-V,L),P=b(G,Y,Q,$,m,-V,L),A.lineTo(C.cx+C.x01,C.cy+C.y01),V0&&(d+=h);for(null!=e?g.sort(function(t,r){return e(v[t],v[r])}):null!=n&&g.sort(function(t,e){return n(r[t],r[e])}),s=0,c=d?(y-f*b)/d:0;s0?h*c:0)+b,v[l]={data:r[l],index:s,value:h,startAngle:m,endAngle:u,padAngle:x};return v}return s.value=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),s):t},s.sortValues=function(t){return arguments.length?(e=t,n=null,s):e},s.sort=function(t){return arguments.length?(n=t,e=null,s):n},s.startAngle=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),s):a},s.endAngle=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),s):i},s.padAngle=function(t){return arguments.length?(o="function"==typeof t?t:r(+t),s):o},s},t.areaRadial=I,t.radialArea=I,t.lineRadial=z,t.radialLine=z,t.pointRadial=D,t.linkHorizontal=function(){return N(j)},t.linkVertical=function(){return N(V)},t.linkRadial=function(){var t=N(U);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.symbol=function(){var t=r(q),n=r(64),a=null;function i(){var r;if(a||(a=r=e.path()),t.apply(this,arguments).draw(a,+n.apply(this,arguments)),r)return a=null,r+""||null}return i.type=function(e){return arguments.length?(t="function"==typeof e?e:r(e),i):t},i.size=function(t){return arguments.length?(n="function"==typeof t?t:r(+t),i):n},i.context=function(t){return arguments.length?(a=null==t?null:t,i):a},i},t.symbols=ot,t.symbolCircle=q,t.symbolCross=H,t.symbolDiamond=W,t.symbolSquare=Q,t.symbolStar=K,t.symbolTriangle=tt,t.symbolWye=it,t.curveBasisClosed=function(t){return new ut(t)},t.curveBasisOpen=function(t){return new ht(t)},t.curveBasis=function(t){return new ct(t)},t.curveBundle=pt,t.curveCardinalClosed=yt,t.curveCardinalOpen=bt,t.curveCardinal=vt,t.curveCatmullRomClosed=Mt,t.curveCatmullRomOpen=St,t.curveCatmullRom=kt,t.curveLinearClosed=function(t){return new Et(t)},t.curveLinear=w,t.curveMonotoneX=function(t){return new zt(t)},t.curveMonotoneY=function(t){return new It(t)},t.curveNatural=function(t){return new Rt(t)},t.curveStep=function(t){return new Bt(t,.5)},t.curveStepAfter=function(t){return new Bt(t,1)},t.curveStepBefore=function(t){return new Bt(t,0)},t.stack=function(){var t=r([]),e=jt,n=Nt,a=Vt;function i(r){var i,o,s=t.apply(this,arguments),l=r.length,c=s.length,u=new Array(c);for(i=0;i0){for(var r,n,a,i=0,o=t[0].length;i1)for(var r,n,a,i,o,s,l=0,c=t[e[0]].length;l=0?(n[0]=i,n[1]=i+=a):a<0?(n[1]=o,n[0]=o+=a):n[0]=i},t.stackOffsetNone=Nt,t.stackOffsetSilhouette=function(t,e){if((r=t.length)>0){for(var r,n=0,a=t[e[0]],i=a.length;n0&&(n=(r=t[e[0]]).length)>0){for(var r,n,a,i=0,o=1;o=0&&r._call.call(null,t),r=r._next;--n}function m(){l=(s=u.now())+c,n=a=0;try{v()}finally{n=0,function(){var t,n,a=e,i=1/0;for(;a;)a._call?(i>a._time&&(i=a._time),t=a,a=a._next):(n=a._next,a._next=null,a=t?t._next=n:e=n);r=t,x(i)}(),l=0}}function y(){var t=u.now(),e=t-s;e>o&&(c-=e,s=t)}function x(t){n||(a&&(a=clearTimeout(a)),t-l>24?(t<1/0&&(a=setTimeout(m,t-u.now()-c)),i&&(i=clearInterval(i))):(i||(s=u.now(),i=setInterval(y,o)),n=1,h(m)))}d.prototype=g.prototype={constructor:d,restart:function(t,n,a){if("function"!=typeof t)throw new TypeError("callback is not a function");a=(null==a?f():+a)+(null==n?0:+n),this._next||r===this||(r?r._next=this:e=this,r=this),this._call=t,this._time=a,x()},stop:function(){this._call&&(this._call=null,this._time=1/0,x())}},t.now=f,t.timer=g,t.timerFlush=v,t.timeout=function(t,e,r){var n=new d;return e=null==e?0:+e,n.restart(function(r){n.stop(),t(r+e)},e,r),n},t.interval=function(t,e,r){var n=new d,a=e;return null==e?(n.restart(t,e,r),n):(e=+e,r=null==r?f():+r,n.restart(function i(o){o+=a,n.restart(i,a+=e,r),t(o)},e,r),n)},Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],165:[function(t,e,r){!function(){var t={version:"3.5.17"},r=[].slice,n=function(t){return r.call(t)},a=this.document;function i(t){return t&&(t.ownerDocument||t.document||t).documentElement}function o(t){return t&&(t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView)}if(a)try{n(a.documentElement.childNodes)[0].nodeType}catch(t){n=function(t){for(var e=t.length,r=new Array(e);e--;)r[e]=t[e];return r}}if(Date.now||(Date.now=function(){return+new Date}),a)try{a.createElement("DIV").style.setProperty("opacity",0,"")}catch(t){var s=this.Element.prototype,l=s.setAttribute,c=s.setAttributeNS,u=this.CSSStyleDeclaration.prototype,h=u.setProperty;s.setAttribute=function(t,e){l.call(this,t,e+"")},s.setAttributeNS=function(t,e,r){c.call(this,t,e,r+"")},u.setProperty=function(t,e,r){h.call(this,t,e+"",r)}}function f(t,e){return te?1:t>=e?0:NaN}function p(t){return null===t?NaN:+t}function d(t){return!isNaN(t)}function g(t){return{left:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n>>1;t(e[i],r)<0?n=i+1:a=i}return n},right:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n>>1;t(e[i],r)>0?a=i:n=i+1}return n}}}t.ascending=f,t.descending=function(t,e){return et?1:e>=t?0:NaN},t.min=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a=n){r=n;break}for(;++an&&(r=n)}else{for(;++a=n){r=n;break}for(;++an&&(r=n)}return r},t.max=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a=n){r=n;break}for(;++ar&&(r=n)}else{for(;++a=n){r=n;break}for(;++ar&&(r=n)}return r},t.extent=function(t,e){var r,n,a,i=-1,o=t.length;if(1===arguments.length){for(;++i=n){r=a=n;break}for(;++in&&(r=n),a=n){r=a=n;break}for(;++i
l.length)return r;var a,i=c[n-1];return null!=e&&n>=l.length?a=r.entries():(a=[],r.each(function(e,r){a.push({key:r,values:t(e,n)})})),null!=i?a.sort(function(t,e){return i(t.key,e.key)}):a}(u(t,0,i,o),0)},key:function(t){return l.push(t),s},sortKeys:function(t){return c[l.length-1]=t,s},sortValues:function(e){return t=e,s},rollup:function(t){return e=t,s}}},t.set=c,t.map=r,t.keys=function(t){var e=[];for(var r in t)e.push(r);return e},t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],156:[function(t,e,r){var n;n=this,function(t){"use strict";function e(t,e,r){t.prototype=e.prototype=r,r.constructor=t}function r(t,e){var r=Object.create(t.prototype);for(var n in e)r[n]=e[n];return r}function n(){}var a="\\s*([+-]?\\d+)\\s*",i="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",o="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",s=/^#([0-9a-f]{3,8})$/,l=new RegExp("^rgb\\("+[a,a,a]+"\\)$"),c=new RegExp("^rgb\\("+[o,o,o]+"\\)$"),u=new RegExp("^rgba\\("+[a,a,a,i]+"\\)$"),h=new RegExp("^rgba\\("+[o,o,o,i]+"\\)$"),f=new RegExp("^hsl\\("+[i,o,o]+"\\)$"),p=new RegExp("^hsla\\("+[i,o,o,i]+"\\)$"),d={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function g(){return this.rgb().formatHex()}function v(){return this.rgb().formatRgb()}function m(t){var e,r;return t=(t+"").trim().toLowerCase(),(e=s.exec(t))?(r=e[1].length,e=parseInt(e[1],16),6===r?y(e):3===r?new w(e>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===r?new w(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===r?new w(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=l.exec(t))?new w(e[1],e[2],e[3],1):(e=c.exec(t))?new w(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=u.exec(t))?x(e[1],e[2],e[3],e[4]):(e=h.exec(t))?x(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=f.exec(t))?A(e[1],e[2]/100,e[3]/100,1):(e=p.exec(t))?A(e[1],e[2]/100,e[3]/100,e[4]):d.hasOwnProperty(t)?y(d[t]):"transparent"===t?new w(NaN,NaN,NaN,0):null}function y(t){return new w(t>>16&255,t>>8&255,255&t,1)}function x(t,e,r,n){return n<=0&&(t=e=r=NaN),new w(t,e,r,n)}function b(t){return t instanceof n||(t=m(t)),t?new w((t=t.rgb()).r,t.g,t.b,t.opacity):new w}function _(t,e,r,n){return 1===arguments.length?b(t):new w(t,e,r,null==n?1:n)}function w(t,e,r,n){this.r=+t,this.g=+e,this.b=+r,this.opacity=+n}function k(){return"#"+M(this.r)+M(this.g)+M(this.b)}function T(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}function M(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function A(t,e,r,n){return n<=0?t=e=r=NaN:r<=0||r>=1?t=e=NaN:e<=0&&(t=NaN),new L(t,e,r,n)}function S(t){if(t instanceof L)return new L(t.h,t.s,t.l,t.opacity);if(t instanceof n||(t=m(t)),!t)return new L;if(t instanceof L)return t;var e=(t=t.rgb()).r/255,r=t.g/255,a=t.b/255,i=Math.min(e,r,a),o=Math.max(e,r,a),s=NaN,l=o-i,c=(o+i)/2;return l?(s=e===o?(r-a)/l+6*(r0&&c<1?0:s,new L(s,l,c,t.opacity)}function E(t,e,r,n){return 1===arguments.length?S(t):new L(t,e,r,null==n?1:n)}function L(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}function C(t,e,r){return 255*(t<60?e+(r-e)*t/60:t<180?r:t<240?e+(r-e)*(240-t)/60:e)}e(n,m,{copy:function(t){return Object.assign(new this.constructor,this,t)},displayable:function(){return this.rgb().displayable()},hex:g,formatHex:g,formatHsl:function(){return S(this).formatHsl()},formatRgb:v,toString:v}),e(w,_,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:k,formatHex:k,formatRgb:T,toString:T})),e(L,E,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new L(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new L(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*e,a=2*r-n;return new w(C(t>=240?t-240:t+120,a,n),C(t,a,n),C(t<120?t+240:t-120,a,n),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===t?")":", "+t+")")}}));var P=Math.PI/180,O=180/Math.PI,z=.96422,I=1,D=.82521,R=4/29,F=6/29,B=3*F*F,N=F*F*F;function j(t){if(t instanceof U)return new U(t.l,t.a,t.b,t.opacity);if(t instanceof Z)return J(t);t instanceof w||(t=b(t));var e,r,n=Y(t.r),a=Y(t.g),i=Y(t.b),o=q((.2225045*n+.7168786*a+.0606169*i)/I);return n===a&&a===i?e=r=o:(e=q((.4360747*n+.3850649*a+.1430804*i)/z),r=q((.0139322*n+.0971045*a+.7141733*i)/D)),new U(116*o-16,500*(e-o),200*(o-r),t.opacity)}function V(t,e,r,n){return 1===arguments.length?j(t):new U(t,e,r,null==n?1:n)}function U(t,e,r,n){this.l=+t,this.a=+e,this.b=+r,this.opacity=+n}function q(t){return t>N?Math.pow(t,1/3):t/B+R}function H(t){return t>F?t*t*t:B*(t-R)}function G(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Y(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function W(t){if(t instanceof Z)return new Z(t.h,t.c,t.l,t.opacity);if(t instanceof U||(t=j(t)),0===t.a&&0===t.b)return new Z(NaN,0=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:e}})),l=-1,c=s.length;if(!(arguments.length<2)){if(null!=e&&"function"!=typeof e)throw new Error("invalid callback: "+e);for(;++l0)for(var r,n,a=new Array(r),i=0;if+c||np+c||iu.index){var h=f-s.x-s.vx,v=p-s.y-s.vy,m=h*h+v*v;mt.r&&(t.r=t[e].r)}function f(){if(r){var e,a,i=r.length;for(n=new Array(i),e=0;e=c)){(t.data!==r||t.next)&&(0===h&&(d+=(h=o())*h),0===f&&(d+=(f=o())*f),d1?(null==r?u.remove(t):u.set(t,y(r)),e):u.get(t)},find:function(e,r,n){var a,i,o,s,l,c=0,u=t.length;for(null==n?n=1/0:n*=n,c=0;c1?(f.on(t,r),e):f.on(t)}}},t.forceX=function(t){var e,r,n,a=i(.1);function o(t){for(var a,i=0,o=e.length;i=0;)e+=r[n].value;else e=1;t.value=e}function i(t,e){var r,n,a,i,s,u=new c(t),h=+t.value&&(u.value=t.value),f=[u];for(null==e&&(e=o);r=f.pop();)if(h&&(r.value=+r.data.value),(a=e(r.data))&&(s=a.length))for(r.children=new Array(s),i=s-1;i>=0;--i)f.push(n=r.children[i]=new c(a[i])),n.parent=r,n.depth=r.depth+1;return u.eachBefore(l)}function o(t){return t.children}function s(t){t.data=t.data.data}function l(t){var e=0;do{t.height=e}while((t=t.parent)&&t.height<++e)}function c(t){this.data=t,this.depth=this.height=0,this.parent=null}c.prototype=i.prototype={constructor:c,count:function(){return this.eachAfter(a)},each:function(t){var e,r,n,a,i=this,o=[i];do{for(e=o.reverse(),o=[];i=e.pop();)if(t(i),r=i.children)for(n=0,a=r.length;n=0;--r)a.push(e[r]);return this},sum:function(t){return this.eachAfter(function(e){for(var r=+t(e.data)||0,n=e.children,a=n&&n.length;--a>=0;)r+=n[a].value;e.value=r})},sort:function(t){return this.eachBefore(function(e){e.children&&e.children.sort(t)})},path:function(t){for(var e=this,r=function(t,e){if(t===e)return t;var r=t.ancestors(),n=e.ancestors(),a=null;for(t=r.pop(),e=n.pop();t===e;)a=t,t=r.pop(),e=n.pop();return a}(e,t),n=[e];e!==r;)e=e.parent,n.push(e);for(var a=n.length;t!==r;)n.splice(a,0,t),t=t.parent;return n},ancestors:function(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e},descendants:function(){var t=[];return this.each(function(e){t.push(e)}),t},leaves:function(){var t=[];return this.eachBefore(function(e){e.children||t.push(e)}),t},links:function(){var t=this,e=[];return t.each(function(r){r!==t&&e.push({source:r.parent,target:r})}),e},copy:function(){return i(this).eachBefore(s)}};var u=Array.prototype.slice;function h(t){for(var e,r,n=0,a=(t=function(t){for(var e,r,n=t.length;n;)r=Math.random()*n--|0,e=t[n],t[n]=t[r],t[r]=e;return t}(u.call(t))).length,i=[];n0&&r*r>n*n+a*a}function g(t,e){for(var r=0;r(o*=o)?(n=(c+o-a)/(2*c),i=Math.sqrt(Math.max(0,o/c-n*n)),r.x=t.x-n*s-i*l,r.y=t.y-n*l+i*s):(n=(c+a-o)/(2*c),i=Math.sqrt(Math.max(0,a/c-n*n)),r.x=e.x+n*s-i*l,r.y=e.y+n*l+i*s)):(r.x=e.x+r.r,r.y=e.y)}function b(t,e){var r=t.r+e.r-1e-6,n=e.x-t.x,a=e.y-t.y;return r>0&&r*r>n*n+a*a}function _(t){var e=t._,r=t.next._,n=e.r+r.r,a=(e.x*r.r+r.x*e.r)/n,i=(e.y*r.r+r.y*e.r)/n;return a*a+i*i}function w(t){this._=t,this.next=null,this.previous=null}function k(t){if(!(a=t.length))return 0;var e,r,n,a,i,o,s,l,c,u,f;if((e=t[0]).x=0,e.y=0,!(a>1))return e.r;if(r=t[1],e.x=-r.r,r.x=e.r,r.y=0,!(a>2))return e.r+r.r;x(r,e,n=t[2]),e=new w(e),r=new w(r),n=new w(n),e.next=n.previous=r,r.next=e.previous=n,n.next=r.previous=e;t:for(s=3;sf&&(f=s),v=u*u*g,(p=Math.max(f/v,v/h))>d){u-=s;break}d=p}m.push(o={value:u,dice:l1?e:1)},r}(G),X=function t(e){function r(t,r,n,a,i){if((o=t._squarify)&&o.ratio===e)for(var o,s,l,c,u,h=-1,f=o.length,p=t.value;++h1?e:1)},r}(G);t.cluster=function(){var t=e,a=1,i=1,o=!1;function s(e){var s,l=0;e.eachAfter(function(e){var a=e.children;a?(e.x=function(t){return t.reduce(r,0)/t.length}(a),e.y=function(t){return 1+t.reduce(n,0)}(a)):(e.x=s?l+=t(e,s):0,e.y=0,s=e)});var c=function(t){for(var e;e=t.children;)t=e[0];return t}(e),u=function(t){for(var e;e=t.children;)t=e[e.length-1];return t}(e),h=c.x-t(c,u)/2,f=u.x+t(u,c)/2;return e.eachAfter(o?function(t){t.x=(t.x-e.x)*a,t.y=(e.y-t.y)*i}:function(t){t.x=(t.x-h)/(f-h)*a,t.y=(1-(e.y?t.y/e.y:1))*i})}return s.separation=function(e){return arguments.length?(t=e,s):t},s.size=function(t){return arguments.length?(o=!1,a=+t[0],i=+t[1],s):o?null:[a,i]},s.nodeSize=function(t){return arguments.length?(o=!0,a=+t[0],i=+t[1],s):o?[a,i]:null},s},t.hierarchy=i,t.pack=function(){var t=null,e=1,r=1,n=M;function a(a){return a.x=e/2,a.y=r/2,t?a.eachBefore(E(t)).eachAfter(L(n,.5)).eachBefore(C(1)):a.eachBefore(E(S)).eachAfter(L(M,1)).eachAfter(L(n,a.r/Math.min(e,r))).eachBefore(C(Math.min(e,r)/(2*a.r))),a}return a.radius=function(e){return arguments.length?(t=null==(r=e)?null:T(r),a):t;var r},a.size=function(t){return arguments.length?(e=+t[0],r=+t[1],a):[e,r]},a.padding=function(t){return arguments.length?(n="function"==typeof t?t:A(+t),a):n},a},t.packEnclose=h,t.packSiblings=function(t){return k(t),t},t.partition=function(){var t=1,e=1,r=0,n=!1;function a(a){var i=a.height+1;return a.x0=a.y0=r,a.x1=t,a.y1=e/i,a.eachBefore(function(t,e){return function(n){n.children&&O(n,n.x0,t*(n.depth+1)/e,n.x1,t*(n.depth+2)/e);var a=n.x0,i=n.y0,o=n.x1-r,s=n.y1-r;o0)throw new Error("cycle");return i}return r.id=function(e){return arguments.length?(t=T(e),r):t},r.parentId=function(t){return arguments.length?(e=T(t),r):e},r},t.tree=function(){var t=B,e=1,r=1,n=null;function a(a){var l=function(t){for(var e,r,n,a,i,o=new q(t,0),s=[o];e=s.pop();)if(n=e._.children)for(e.children=new Array(i=n.length),a=i-1;a>=0;--a)s.push(r=e.children[a]=new q(n[a],a)),r.parent=e;return(o.parent=new q(null,0)).children=[o],o}(a);if(l.eachAfter(i),l.parent.m=-l.z,l.eachBefore(o),n)a.eachBefore(s);else{var c=a,u=a,h=a;a.eachBefore(function(t){t.xu.x&&(u=t),t.depth>h.depth&&(h=t)});var f=c===u?1:t(c,u)/2,p=f-c.x,d=e/(u.x+f+p),g=r/(h.depth||1);a.eachBefore(function(t){t.x=(t.x+p)*d,t.y=t.depth*g})}return a}function i(e){var r=e.children,n=e.parent.children,a=e.i?n[e.i-1]:null;if(r){!function(t){for(var e,r=0,n=0,a=t.children,i=a.length;--i>=0;)(e=a[i]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(e);var i=(r[0].z+r[r.length-1].z)/2;a?(e.z=a.z+t(e._,a._),e.m=e.z-i):e.z=i}else a&&(e.z=a.z+t(e._,a._));e.parent.A=function(e,r,n){if(r){for(var a,i=e,o=e,s=r,l=i.parent.children[0],c=i.m,u=o.m,h=s.m,f=l.m;s=j(s),i=N(i),s&&i;)l=N(l),(o=j(o)).a=e,(a=s.z+h-i.z-c+t(s._,i._))>0&&(V(U(s,e,n),e,a),c+=a,u+=a),h+=s.m,c+=i.m,f+=l.m,u+=o.m;s&&!j(o)&&(o.t=s,o.m+=h-u),i&&!N(l)&&(l.t=i,l.m+=c-f,n=e)}return n}(e,a,e.parent.A||n[0])}function o(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function s(t){t.x*=e,t.y=t.depth*r}return a.separation=function(e){return arguments.length?(t=e,a):t},a.size=function(t){return arguments.length?(n=!1,e=+t[0],r=+t[1],a):n?null:[e,r]},a.nodeSize=function(t){return arguments.length?(n=!0,e=+t[0],r=+t[1],a):n?[e,r]:null},a},t.treemap=function(){var t=W,e=!1,r=1,n=1,a=[0],i=M,o=M,s=M,l=M,c=M;function u(t){return t.x0=t.y0=0,t.x1=r,t.y1=n,t.eachBefore(h),a=[0],e&&t.eachBefore(P),t}function h(e){var r=a[e.depth],n=e.x0+r,u=e.y0+r,h=e.x1-r,f=e.y1-r;h=r-1){var u=s[e];return u.x0=a,u.y0=i,u.x1=o,void(u.y1=l)}for(var h=c[e],f=n/2+h,p=e+1,d=r-1;p>>1;c[g]l-i){var y=(a*m+o*v)/n;t(e,p,v,a,i,y,l),t(p,r,m,y,i,o,l)}else{var x=(i*m+l*v)/n;t(e,p,v,a,i,o,x),t(p,r,m,a,x,o,l)}}(0,l,t.value,e,r,n,a)},t.treemapDice=O,t.treemapResquarify=X,t.treemapSlice=H,t.treemapSliceDice=function(t,e,r,n,a){(1&t.depth?H:O)(t,e,r,n,a)},t.treemapSquarify=W,Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:(n=n||self).d3=n.d3||{})},{}],160:[function(t,e,r){var n,a;n=this,a=function(t,e){"use strict";function r(t,e,r,n,a){var i=t*t,o=i*t;return((1-3*t+3*i-o)*e+(4-6*i+3*o)*r+(1+3*t+3*i-3*o)*n+o*a)/6}function n(t){var e=t.length-1;return function(n){var a=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),i=t[a],o=t[a+1],s=a>0?t[a-1]:2*i-o,l=a180||r<-180?r-360*Math.round(r/360):r):i(isNaN(t)?e:t)}function l(t){return 1==(t=+t)?c:function(e,r){return r-e?function(t,e,r){return t=Math.pow(t,r),e=Math.pow(e,r)-t,r=1/r,function(n){return Math.pow(t+n*e,r)}}(e,r,t):i(isNaN(e)?r:e)}}function c(t,e){var r=e-t;return r?o(t,r):i(isNaN(t)?e:t)}var u=function t(r){var n=l(r);function a(t,r){var a=n((t=e.rgb(t)).r,(r=e.rgb(r)).r),i=n(t.g,r.g),o=n(t.b,r.b),s=c(t.opacity,r.opacity);return function(e){return t.r=a(e),t.g=i(e),t.b=o(e),t.opacity=s(e),t+""}}return a.gamma=t,a}(1);function h(t){return function(r){var n,a,i=r.length,o=new Array(i),s=new Array(i),l=new Array(i);for(n=0;ni&&(a=e.slice(i,a),s[o]?s[o]+=a:s[++o]=a),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:y(r,n)})),i=_.lastIndex;return i180?e+=360:e-t>180&&(t+=360),i.push({i:r.push(a(r)+"rotate(",null,n)-2,x:y(t,e)})):e&&r.push(a(r)+"rotate("+e+n)}(i.rotate,o.rotate,s,l),function(t,e,r,i){t!==e?i.push({i:r.push(a(r)+"skewX(",null,n)-2,x:y(t,e)}):e&&r.push(a(r)+"skewX("+e+n)}(i.skewX,o.skewX,s,l),function(t,e,r,n,i,o){if(t!==r||e!==n){var s=i.push(a(i)+"scale(",null,",",null,")");o.push({i:s-4,x:y(t,r)},{i:s-2,x:y(e,n)})}else 1===r&&1===n||i.push(a(i)+"scale("+r+","+n+")")}(i.scaleX,i.scaleY,o.scaleX,o.scaleY,s,l),i=o=null,function(t){for(var e,r=-1,n=l.length;++r1e-6)if(Math.abs(h*l-c*u)>1e-6&&i){var p=n-o,d=a-s,g=l*l+c*c,v=p*p+d*d,m=Math.sqrt(g),y=Math.sqrt(f),x=i*Math.tan((e-Math.acos((g+f-v)/(2*m*y)))/2),b=x/y,_=x/m;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*u)+","+(r+b*h)),this._+="A"+i+","+i+",0,0,"+ +(h*p>u*d)+","+(this._x1=t+_*l)+","+(this._y1=r+_*c)}else this._+="L"+(this._x1=t)+","+(this._y1=r);else;},arc:function(t,a,i,o,s,l){t=+t,a=+a;var c=(i=+i)*Math.cos(o),u=i*Math.sin(o),h=t+c,f=a+u,p=1^l,d=l?o-s:s-o;if(i<0)throw new Error("negative radius: "+i);null===this._x1?this._+="M"+h+","+f:(Math.abs(this._x1-h)>1e-6||Math.abs(this._y1-f)>1e-6)&&(this._+="L"+h+","+f),i&&(d<0&&(d=d%r+r),d>n?this._+="A"+i+","+i+",0,1,"+p+","+(t-c)+","+(a-u)+"A"+i+","+i+",0,1,"+p+","+(this._x1=h)+","+(this._y1=f):d>1e-6&&(this._+="A"+i+","+i+",0,"+ +(d>=e)+","+p+","+(this._x1=t+i*Math.cos(s))+","+(this._y1=a+i*Math.sin(s))))},rect:function(t,e,r,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +r+"v"+ +n+"h"+-r+"Z"},toString:function(){return this._}},t.path=i,Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],162:[function(t,e,r){var n;n=this,function(t){"use strict";function e(t,e,r,n){if(isNaN(e)||isNaN(r))return t;var a,i,o,s,l,c,u,h,f,p=t._root,d={data:n},g=t._x0,v=t._y0,m=t._x1,y=t._y1;if(!p)return t._root=d,t;for(;p.length;)if((c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o,a=p,!(p=p[h=u<<1|c]))return a[h]=d,t;if(s=+t._x.call(null,p.data),l=+t._y.call(null,p.data),e===s&&r===l)return d.next=p,a?a[h]=d:t._root=d,t;do{a=a?a[h]=new Array(4):t._root=new Array(4),(c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o}while((h=u<<1|c)==(f=(l>=o)<<1|s>=i));return a[f]=p,a[h]=d,t}var r=function(t,e,r,n,a){this.node=t,this.x0=e,this.y0=r,this.x1=n,this.y1=a};function n(t){return t[0]}function a(t){return t[1]}function i(t,e,r){var i=new o(null==e?n:e,null==r?a:r,NaN,NaN,NaN,NaN);return null==t?i:i.addAll(t)}function o(t,e,r,n,a,i){this._x=t,this._y=e,this._x0=r,this._y0=n,this._x1=a,this._y1=i,this._root=void 0}function s(t){for(var e={data:t.data},r=e;t=t.next;)r=r.next={data:t.data};return e}var l=i.prototype=o.prototype;l.copy=function(){var t,e,r=new o(this._x,this._y,this._x0,this._y0,this._x1,this._y1),n=this._root;if(!n)return r;if(!n.length)return r._root=s(n),r;for(t=[{source:n,target:r._root=new Array(4)}];n=t.pop();)for(var a=0;a<4;++a)(e=n.source[a])&&(e.length?t.push({source:e,target:n.target[a]=new Array(4)}):n.target[a]=s(e));return r},l.add=function(t){var r=+this._x.call(null,t),n=+this._y.call(null,t);return e(this.cover(r,n),r,n,t)},l.addAll=function(t){var r,n,a,i,o=t.length,s=new Array(o),l=new Array(o),c=1/0,u=1/0,h=-1/0,f=-1/0;for(n=0;nh&&(h=a),if&&(f=i));for(ht||t>a||n>e||e>i))return this;var o,s,l=a-r,c=this._root;switch(s=(e<(n+i)/2)<<1|t<(r+a)/2){case 0:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),t>(a=r+l)||e>i);break;case 1:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),(r=a-l)>t||e>i);break;case 2:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),t>(a=r+l)||n>e);break;case 3:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),(r=a-l)>t||n>e)}this._root&&this._root.length&&(this._root=c)}return this._x0=r,this._y0=n,this._x1=a,this._y1=i,this},l.data=function(){var t=[];return this.visit(function(e){if(!e.length)do{t.push(e.data)}while(e=e.next)}),t},l.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},l.find=function(t,e,n){var a,i,o,s,l,c,u,h=this._x0,f=this._y0,p=this._x1,d=this._y1,g=[],v=this._root;for(v&&g.push(new r(v,h,f,p,d)),null==n?n=1/0:(h=t-n,f=e-n,p=t+n,d=e+n,n*=n);c=g.pop();)if(!(!(v=c.node)||(i=c.x0)>p||(o=c.y0)>d||(s=c.x1)=y)<<1|t>=m)&&(c=g[g.length-1],g[g.length-1]=g[g.length-1-u],g[g.length-1-u]=c)}else{var x=t-+this._x.call(null,v.data),b=e-+this._y.call(null,v.data),_=x*x+b*b;if(_=(s=(d+v)/2))?d=s:v=s,(u=o>=(l=(g+m)/2))?g=l:m=l,e=p,!(p=p[h=u<<1|c]))return this;if(!p.length)break;(e[h+1&3]||e[h+2&3]||e[h+3&3])&&(r=e,f=h)}for(;p.data!==t;)if(n=p,!(p=p.next))return this;return(a=p.next)&&delete p.next,n?(a?n.next=a:delete n.next,this):e?(a?e[h]=a:delete e[h],(p=e[0]||e[1]||e[2]||e[3])&&p===(e[3]||e[2]||e[1]||e[0])&&!p.length&&(r?r[f]=p:this._root=p),this):(this._root=a,this)},l.removeAll=function(t){for(var e=0,r=t.length;e=1?f:t<=-1?-f:Math.asin(t)}function g(t){return t.innerRadius}function v(t){return t.outerRadius}function m(t){return t.startAngle}function y(t){return t.endAngle}function x(t){return t&&t.padAngle}function b(t,e,r,n,a,i,s){var l=t-r,u=e-n,h=(s?i:-i)/c(l*l+u*u),f=h*u,p=-h*l,d=t+f,g=e+p,v=r+f,m=n+p,y=(d+v)/2,x=(g+m)/2,b=v-d,_=m-g,w=b*b+_*_,k=a-i,T=d*m-v*g,M=(_<0?-1:1)*c(o(0,k*k*w-T*T)),A=(T*_-b*M)/w,S=(-T*b-_*M)/w,E=(T*_+b*M)/w,L=(-T*b+_*M)/w,C=A-y,P=S-x,O=E-y,z=L-x;return C*C+P*P>O*O+z*z&&(A=E,S=L),{cx:A,cy:S,x01:-f,y01:-p,x11:A*(a/k-1),y11:S*(a/k-1)}}function _(t){this._context=t}function w(t){return new _(t)}function k(t){return t[0]}function T(t){return t[1]}function M(){var t=k,n=T,a=r(!0),i=null,o=w,s=null;function l(r){var l,c,u,h=r.length,f=!1;for(null==i&&(s=o(u=e.path())),l=0;l<=h;++l)!(l=h;--f)c.point(m[f],y[f]);c.lineEnd(),c.areaEnd()}v&&(m[u]=+t(p,u,r),y[u]=+a(p,u,r),c.point(n?+n(p,u,r):m[u],i?+i(p,u,r):y[u]))}if(d)return c=null,d+""||null}function h(){return M().defined(o).curve(l).context(s)}return u.x=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),n=null,u):t},u.x0=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),u):t},u.x1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:r(+t),u):n},u.y=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),i=null,u):a},u.y0=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),u):a},u.y1=function(t){return arguments.length?(i=null==t?null:"function"==typeof t?t:r(+t),u):i},u.lineX0=u.lineY0=function(){return h().x(t).y(a)},u.lineY1=function(){return h().x(t).y(i)},u.lineX1=function(){return h().x(n).y(a)},u.defined=function(t){return arguments.length?(o="function"==typeof t?t:r(!!t),u):o},u.curve=function(t){return arguments.length?(l=t,null!=s&&(c=l(s)),u):l},u.context=function(t){return arguments.length?(null==t?s=c=null:c=l(s=t),u):s},u}function S(t,e){return et?1:e>=t?0:NaN}function E(t){return t}_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e)}}};var L=P(w);function C(t){this._curve=t}function P(t){function e(e){return new C(t(e))}return e._curve=t,e}function O(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function z(){return O(M().curve(L))}function I(){var t=A().curve(L),e=t.curve,r=t.lineX0,n=t.lineX1,a=t.lineY0,i=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return O(r())},delete t.lineX0,t.lineEndAngle=function(){return O(n())},delete t.lineX1,t.lineInnerRadius=function(){return O(a())},delete t.lineY0,t.lineOuterRadius=function(){return O(i())},delete t.lineY1,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function D(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]}C.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}};var R=Array.prototype.slice;function F(t){return t.source}function B(t){return t.target}function N(t){var n=F,a=B,i=k,o=T,s=null;function l(){var r,l=R.call(arguments),c=n.apply(this,l),u=a.apply(this,l);if(s||(s=r=e.path()),t(s,+i.apply(this,(l[0]=c,l)),+o.apply(this,l),+i.apply(this,(l[0]=u,l)),+o.apply(this,l)),r)return s=null,r+""||null}return l.source=function(t){return arguments.length?(n=t,l):n},l.target=function(t){return arguments.length?(a=t,l):a},l.x=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),l):i},l.y=function(t){return arguments.length?(o="function"==typeof t?t:r(+t),l):o},l.context=function(t){return arguments.length?(s=null==t?null:t,l):s},l}function j(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e=(e+n)/2,r,e,a,n,a)}function V(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e,r=(r+a)/2,n,r,n,a)}function U(t,e,r,n,a){var i=D(e,r),o=D(e,r=(r+a)/2),s=D(n,r),l=D(n,a);t.moveTo(i[0],i[1]),t.bezierCurveTo(o[0],o[1],s[0],s[1],l[0],l[1])}var q={draw:function(t,e){var r=Math.sqrt(e/h);t.moveTo(r,0),t.arc(0,0,r,0,p)}},H={draw:function(t,e){var r=Math.sqrt(e/5)/2;t.moveTo(-3*r,-r),t.lineTo(-r,-r),t.lineTo(-r,-3*r),t.lineTo(r,-3*r),t.lineTo(r,-r),t.lineTo(3*r,-r),t.lineTo(3*r,r),t.lineTo(r,r),t.lineTo(r,3*r),t.lineTo(-r,3*r),t.lineTo(-r,r),t.lineTo(-3*r,r),t.closePath()}},G=Math.sqrt(1/3),Y=2*G,W={draw:function(t,e){var r=Math.sqrt(e/Y),n=r*G;t.moveTo(0,-r),t.lineTo(n,0),t.lineTo(0,r),t.lineTo(-n,0),t.closePath()}},X=Math.sin(h/10)/Math.sin(7*h/10),Z=Math.sin(p/10)*X,J=-Math.cos(p/10)*X,K={draw:function(t,e){var r=Math.sqrt(.8908130915292852*e),n=Z*r,a=J*r;t.moveTo(0,-r),t.lineTo(n,a);for(var i=1;i<5;++i){var o=p*i/5,s=Math.cos(o),l=Math.sin(o);t.lineTo(l*r,-s*r),t.lineTo(s*n-l*a,l*n+s*a)}t.closePath()}},Q={draw:function(t,e){var r=Math.sqrt(e),n=-r/2;t.rect(n,n,r,r)}},$=Math.sqrt(3),tt={draw:function(t,e){var r=-Math.sqrt(e/(3*$));t.moveTo(0,2*r),t.lineTo(-$*r,-r),t.lineTo($*r,-r),t.closePath()}},et=-.5,rt=Math.sqrt(3)/2,nt=1/Math.sqrt(12),at=3*(nt/2+1),it={draw:function(t,e){var r=Math.sqrt(e/at),n=r/2,a=r*nt,i=n,o=r*nt+r,s=-i,l=o;t.moveTo(n,a),t.lineTo(i,o),t.lineTo(s,l),t.lineTo(et*n-rt*a,rt*n+et*a),t.lineTo(et*i-rt*o,rt*i+et*o),t.lineTo(et*s-rt*l,rt*s+et*l),t.lineTo(et*n+rt*a,et*a-rt*n),t.lineTo(et*i+rt*o,et*o-rt*i),t.lineTo(et*s+rt*l,et*l-rt*s),t.closePath()}},ot=[q,H,W,Q,K,tt,it];function st(){}function lt(t,e,r){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+r)/6)}function ct(t){this._context=t}function ut(t){this._context=t}function ht(t){this._context=t}function ft(t,e){this._basis=new ct(t),this._beta=e}ct.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:lt(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ut.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ht.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var r=(this._x0+4*this._x1+t)/6,n=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(r,n):this._context.moveTo(r,n);break;case 3:this._point=4;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ft.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,r=t.length-1;if(r>0)for(var n,a=t[0],i=e[0],o=t[r]-a,s=e[r]-i,l=-1;++l<=r;)n=l/r,this._basis.point(this._beta*t[l]+(1-this._beta)*(a+n*o),this._beta*e[l]+(1-this._beta)*(i+n*s));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}};var pt=function t(e){function r(t){return 1===e?new ct(t):new ft(t,e)}return r.beta=function(e){return t(+e)},r}(.85);function dt(t,e,r){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-r),t._x2,t._y2)}function gt(t,e){this._context=t,this._k=(1-e)/6}gt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:dt(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var vt=function t(e){function r(t){return new gt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function mt(t,e){this._context=t,this._k=(1-e)/6}mt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var yt=function t(e){function r(t){return new mt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function xt(t,e){this._context=t,this._k=(1-e)/6}xt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var bt=function t(e){function r(t){return new xt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function _t(t,e,r){var n=t._x1,a=t._y1,i=t._x2,o=t._y2;if(t._l01_a>u){var s=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,l=3*t._l01_a*(t._l01_a+t._l12_a);n=(n*s-t._x0*t._l12_2a+t._x2*t._l01_2a)/l,a=(a*s-t._y0*t._l12_2a+t._y2*t._l01_2a)/l}if(t._l23_a>u){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,h=3*t._l23_a*(t._l23_a+t._l12_a);i=(i*c+t._x1*t._l23_2a-e*t._l12_2a)/h,o=(o*c+t._y1*t._l23_2a-r*t._l12_2a)/h}t._context.bezierCurveTo(n,a,i,o,t._x2,t._y2)}function wt(t,e){this._context=t,this._alpha=e}wt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var kt=function t(e){function r(t){return e?new wt(t,e):new gt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Tt(t,e){this._context=t,this._alpha=e}Tt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var Mt=function t(e){function r(t){return e?new Tt(t,e):new mt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function At(t,e){this._context=t,this._alpha=e}At.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var St=function t(e){function r(t){return e?new At(t,e):new xt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Et(t){this._context=t}function Lt(t){return t<0?-1:1}function Ct(t,e,r){var n=t._x1-t._x0,a=e-t._x1,i=(t._y1-t._y0)/(n||a<0&&-0),o=(r-t._y1)/(a||n<0&&-0),s=(i*a+o*n)/(n+a);return(Lt(i)+Lt(o))*Math.min(Math.abs(i),Math.abs(o),.5*Math.abs(s))||0}function Pt(t,e){var r=t._x1-t._x0;return r?(3*(t._y1-t._y0)/r-e)/2:e}function Ot(t,e,r){var n=t._x0,a=t._y0,i=t._x1,o=t._y1,s=(i-n)/3;t._context.bezierCurveTo(n+s,a+s*e,i-s,o-s*r,i,o)}function zt(t){this._context=t}function It(t){this._context=new Dt(t)}function Dt(t){this._context=t}function Rt(t){this._context=t}function Ft(t){var e,r,n=t.length-1,a=new Array(n),i=new Array(n),o=new Array(n);for(a[0]=0,i[0]=2,o[0]=t[0]+2*t[1],e=1;e=0;--e)a[e]=(o[e]-a[e+1])/i[e];for(i[n-1]=(t[n]+a[n-1])/2,e=0;e1)for(var r,n,a,i=1,o=t[e[0]],s=o.length;i=0;)r[e]=e;return r}function Vt(t,e){return t[e]}function Ut(t){var e=t.map(qt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function qt(t){for(var e,r=-1,n=0,a=t.length,i=-1/0;++ri&&(i=e,n=r);return n}function Ht(t){var e=t.map(Gt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function Gt(t){for(var e,r=0,n=-1,a=t.length;++n=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}}this._x=t,this._y=e}},t.arc=function(){var t=g,o=v,_=r(0),w=null,k=m,T=y,M=x,A=null;function S(){var r,g,v,m=+t.apply(this,arguments),y=+o.apply(this,arguments),x=k.apply(this,arguments)-f,S=T.apply(this,arguments)-f,E=n(S-x),L=S>x;if(A||(A=r=e.path()),yu)if(E>p-u)A.moveTo(y*i(x),y*l(x)),A.arc(0,0,y,x,S,!L),m>u&&(A.moveTo(m*i(S),m*l(S)),A.arc(0,0,m,S,x,L));else{var C,P,O=x,z=S,I=x,D=S,R=E,F=E,B=M.apply(this,arguments)/2,N=B>u&&(w?+w.apply(this,arguments):c(m*m+y*y)),j=s(n(y-m)/2,+_.apply(this,arguments)),V=j,U=j;if(N>u){var q=d(N/m*l(B)),H=d(N/y*l(B));(R-=2*q)>u?(I+=q*=L?1:-1,D-=q):(R=0,I=D=(x+S)/2),(F-=2*H)>u?(O+=H*=L?1:-1,z-=H):(F=0,O=z=(x+S)/2)}var G=y*i(O),Y=y*l(O),W=m*i(D),X=m*l(D);if(j>u){var Z,J=y*i(z),K=y*l(z),Q=m*i(I),$=m*l(I);if(E1?0:v<-1?h:Math.acos(v))/2),it=c(Z[0]*Z[0]+Z[1]*Z[1]);V=s(j,(m-it)/(at-1)),U=s(j,(y-it)/(at+1))}}F>u?U>u?(C=b(Q,$,G,Y,y,U,L),P=b(J,K,W,X,y,U,L),A.moveTo(C.cx+C.x01,C.cy+C.y01),Uu&&R>u?V>u?(C=b(W,X,J,K,m,-V,L),P=b(G,Y,Q,$,m,-V,L),A.lineTo(C.cx+C.x01,C.cy+C.y01),V0&&(d+=h);for(null!=e?g.sort(function(t,r){return e(v[t],v[r])}):null!=n&&g.sort(function(t,e){return n(r[t],r[e])}),s=0,c=d?(y-f*b)/d:0;s0?h*c:0)+b,v[l]={data:r[l],index:s,value:h,startAngle:m,endAngle:u,padAngle:x};return v}return s.value=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),s):t},s.sortValues=function(t){return arguments.length?(e=t,n=null,s):e},s.sort=function(t){return arguments.length?(n=t,e=null,s):n},s.startAngle=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),s):a},s.endAngle=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),s):i},s.padAngle=function(t){return arguments.length?(o="function"==typeof t?t:r(+t),s):o},s},t.areaRadial=I,t.radialArea=I,t.lineRadial=z,t.radialLine=z,t.pointRadial=D,t.linkHorizontal=function(){return N(j)},t.linkVertical=function(){return N(V)},t.linkRadial=function(){var t=N(U);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.symbol=function(){var t=r(q),n=r(64),a=null;function i(){var r;if(a||(a=r=e.path()),t.apply(this,arguments).draw(a,+n.apply(this,arguments)),r)return a=null,r+""||null}return i.type=function(e){return arguments.length?(t="function"==typeof e?e:r(e),i):t},i.size=function(t){return arguments.length?(n="function"==typeof t?t:r(+t),i):n},i.context=function(t){return arguments.length?(a=null==t?null:t,i):a},i},t.symbols=ot,t.symbolCircle=q,t.symbolCross=H,t.symbolDiamond=W,t.symbolSquare=Q,t.symbolStar=K,t.symbolTriangle=tt,t.symbolWye=it,t.curveBasisClosed=function(t){return new ut(t)},t.curveBasisOpen=function(t){return new ht(t)},t.curveBasis=function(t){return new ct(t)},t.curveBundle=pt,t.curveCardinalClosed=yt,t.curveCardinalOpen=bt,t.curveCardinal=vt,t.curveCatmullRomClosed=Mt,t.curveCatmullRomOpen=St,t.curveCatmullRom=kt,t.curveLinearClosed=function(t){return new Et(t)},t.curveLinear=w,t.curveMonotoneX=function(t){return new zt(t)},t.curveMonotoneY=function(t){return new It(t)},t.curveNatural=function(t){return new Rt(t)},t.curveStep=function(t){return new Bt(t,.5)},t.curveStepAfter=function(t){return new Bt(t,1)},t.curveStepBefore=function(t){return new Bt(t,0)},t.stack=function(){var t=r([]),e=jt,n=Nt,a=Vt;function i(r){var i,o,s=t.apply(this,arguments),l=r.length,c=s.length,u=new Array(c);for(i=0;i0){for(var r,n,a,i=0,o=t[0].length;i1)for(var r,n,a,i,o,s,l=0,c=t[e[0]].length;l=0?(n[0]=i,n[1]=i+=a):a<0?(n[1]=o,n[0]=o+=a):n[0]=i},t.stackOffsetNone=Nt,t.stackOffsetSilhouette=function(t,e){if((r=t.length)>0){for(var r,n=0,a=t[e[0]],i=a.length;n0&&(n=(r=t[e[0]]).length)>0){for(var r,n,a,i=0,o=1;o=0&&r._call.call(null,t),r=r._next;--n}function m(){l=(s=u.now())+c,n=a=0;try{v()}finally{n=0,function(){var t,n,a=e,i=1/0;for(;a;)a._call?(i>a._time&&(i=a._time),t=a,a=a._next):(n=a._next,a._next=null,a=t?t._next=n:e=n);r=t,x(i)}(),l=0}}function y(){var t=u.now(),e=t-s;e>o&&(c-=e,s=t)}function x(t){n||(a&&(a=clearTimeout(a)),t-l>24?(t<1/0&&(a=setTimeout(m,t-u.now()-c)),i&&(i=clearInterval(i))):(i||(s=u.now(),i=setInterval(y,o)),n=1,h(m)))}d.prototype=g.prototype={constructor:d,restart:function(t,n,a){if("function"!=typeof t)throw new TypeError("callback is not a function");a=(null==a?f():+a)+(null==n?0:+n),this._next||r===this||(r?r._next=this:e=this,r=this),this._call=t,this._time=a,x()},stop:function(){this._call&&(this._call=null,this._time=1/0,x())}},t.now=f,t.timer=g,t.timerFlush=v,t.timeout=function(t,e,r){var n=new d;return e=null==e?0:+e,n.restart(function(r){n.stop(),t(r+e)},e,r),n},t.interval=function(t,e,r){var n=new d,a=e;return null==e?(n.restart(t,e,r),n):(e=+e,r=null==r?f():+r,n.restart(function i(o){o+=a,n.restart(i,a+=e,r),t(o)},e,r),n)},Object.defineProperty(t,"__esModule",{value:!0})}("object"==typeof r&&"undefined"!=typeof e?r:n.d3=n.d3||{})},{}],165:[function(t,e,r){!function(){var t={version:"3.5.17"},r=[].slice,n=function(t){return r.call(t)},a=this.document;function i(t){return t&&(t.ownerDocument||t.document||t).documentElement}function o(t){return t&&(t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView)}if(a)try{n(a.documentElement.childNodes)[0].nodeType}catch(t){n=function(t){for(var e=t.length,r=new Array(e);e--;)r[e]=t[e];return r}}if(Date.now||(Date.now=function(){return+new Date}),a)try{a.createElement("DIV").style.setProperty("opacity",0,"")}catch(t){var s=this.Element.prototype,l=s.setAttribute,c=s.setAttributeNS,u=this.CSSStyleDeclaration.prototype,h=u.setProperty;s.setAttribute=function(t,e){l.call(this,t,e+"")},s.setAttributeNS=function(t,e,r){c.call(this,t,e,r+"")},u.setProperty=function(t,e,r){h.call(this,t,e+"",r)}}function f(t,e){return te?1:t>=e?0:NaN}function p(t){return null===t?NaN:+t}function d(t){return!isNaN(t)}function g(t){return{left:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n>>1;t(e[i],r)<0?n=i+1:a=i}return n},right:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n>>1;t(e[i],r)>0?a=i:n=i+1}return n}}}t.ascending=f,t.descending=function(t,e){return et?1:e>=t?0:NaN},t.min=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a=n){r=n;break}for(;++an&&(r=n)}else{for(;++a=n){r=n;break}for(;++an&&(r=n)}return r},t.max=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a=n){r=n;break}for(;++ar&&(r=n)}else{for(;++a=n){r=n;break}for(;++ar&&(r=n)}return r},t.extent=function(t,e){var r,n,a,i=-1,o=t.length;if(1===arguments.length){for(;++i=n){r=a=n;break}for(;++in&&(r=n),a=n){r=a=n;break}for(;++i