Full code to create HNFC is a powerful tool for schizophrenia research, leveraging EEG’s high temporal resolution to detect biomarkers with a hierarchical neural approach, potentially achieving accuracies comparable to state-of-the-art models (98–99%). Its web interface makes it accessible, and its real-time capabilities are cutting-edge. Identifies brain synapse anomalies in EEG files and analyzes them providing data points, in order to specifically address where they occur to correctly identify them in order to try to see why, in individuals with schizophrenia, Alzheimer's, etc... while also compressing original EEG data to 3% original size with 6 sigma retention of information. Use Grok to sort code, provide updates to code, file creation through command prompts, open files, edit files, install dependencies, etc..... from flask import Flask, request from flask_cors import CORS import os import numpy as np from mne.io import read_raw_edf from mne.time_frequency import psd_array_multitaper import json import logging from chaos_grid import ChaosGrid app = Flask(__name__) CORS(app, resources={r"/upload": {"origins": "http://localhost:3000"}}) # Configure logging logging.basicConfig(filename='app.log', level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s') logger = logging.getLogger(__name__) UPLOAD_FOLDER = r"C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001" os.makedirs(UPLOAD_FOLDER, exist_ok=True) app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER # Initialize ChaosGrid (placeholder for hyperchaotic integration) chaos_grid = ChaosGrid() @app.route('/upload', methods=['POST']) def upload_file(): logger.debug("Received upload request") if 'file' not in request.files: logger.error("No file part in request") return {'error': 'No file part'}, 400 file = request.files['file'] if file.filename == '': logger.error("No selected file") return {'error': 'No selected file'}, 400 if file and file.filename.endswith('.edf'): file_path = os.path.join(app.config['UPLOAD_FOLDER'], file.filename) logger.debug(f"Saving file to {file_path}") try: file.save(file_path) except Exception as e: logger.error(f"Failed to save file: {str(e)}") return {'error': f'Failed to save file: {str(e)}'}, 400 if not os.path.exists(file_path): logger.error(f"File not found: {file_path}") return {'error': f'File not found: {file_path}'}, 400 try: logger.debug(f"Loading EDF: {file_path}") raw = read_raw_edf(file_path, preload=True, verbose='error') data = raw.get_data() sfreq = raw.info['sfreq'] channel_names = raw.ch_names annotations = raw.annotations logger.debug(f"EDF loaded: shape={data.shape}, sfreq={sfreq}, channels={len(channel_names)}") # Compute EEG metrics metrics = [] for ch in range(data.shape[0]): mean_amp = float(np.mean(data[ch]) * 1e6) psd, freqs = psd_array_multitaper(data[ch], sfreq, fmin=8, fmax=13, adaptive=True, normalization='full', verbose=False) mu_psd = float(np.mean(psd) * 1e12) event_times = [a['onset'] for a in annotations if a['description'] in ['T1', 'T2']] erd_amp = 0.0 if event_times: t_start = int(event_times[0] * sfreq) t_end = min(t_start + int(1.5 * sfreq), data.shape[1]) baseline_psd, _ = psd_array_multitaper(data[ch, :t_start], sfreq, fmin=8, fmax=13, verbose=False) event_psd, _ = psd_array_multitaper(data[ch, t_start:t_end], sfreq, fmin=8, fmax=13, verbose=False) erd_amp = float((np.mean(baseline_psd) - np.mean(event_psd)) * 1e12) latency = float(event_times[0] if event_times else 0.0) metrics.append({ 'mean_amplitude': mean_amp, 'mu_psd': mu_psd, 'erd_amplitude': erd_amp, 'event_latency': latency }) # Placeholder: Chaos grid processing chaos_metrics = chaos_grid.process(data) logger.debug(f"Chaos metrics: {chaos_metrics}") response = { 'message': 'File uploaded successfully', 'filename': file.filename, 'shape': [int(data.shape[0]), int(data.shape[1])], 'sampling_rate': float(sfreq), 'channel_names': channel_names, 'metrics': metrics } logger.debug(f"Sending response: {json.dumps(response, indent=2)}") return response, 200 except Exception as e: logger.error(f"Error processing EDF: {str(e)}") return {'error': f'Invalid EDF file: {str(e)}'}, 400 logger.error("Only .edf files are allowed") return {'error': 'Only .edf files are allowed'}, 400 if __name__ == '__main__': app.run(host='0.0.0.0', port=5000) import numpy as np import torch import torch.nn as nn from scipy.integrate import solve_ivp class ChaosGrid: def __init__(self): self.sigma = 10.0 self.rho = 28.0 self.beta = 8/3 self.rnn = SimpleRNN() def lorentz_deriv(self, t, state): x, y, z = state return [self.sigma * (y - x), x * (self.rho - z) - y, x * y - self.beta * z] def process(self, eeg_data): # Placeholder: Simulate Lorentz attractor t_span = (0, 10) t_eval = np.linspace(0, 10, 1000) initial_state = [1.0, 1.0, 1.0] sol = solve_ivp(self.lorentz_deriv, t_span, initial_state, t_eval=t_eval) # Placeholder: RNN for hyperchaotic neural signals eeg_tensor = torch.tensor(eeg_data[0:1, :1000], dtype=torch.float32) rnn_output = self.rnn(eeg_tensor) # Placeholder: Decoherence via regularization regularized_output = rnn_output * 0.8 # Simulate 0.8 decay return { 'lorentz_trajectory': sol.y.tolist(), 'rnn_output': rnn_output.detach().numpy().tolist(), 'fractal_dimension': 4.25 # Placeholder } class SimpleRNN(nn.Module): def __init__(self, input_size=1, hidden_size=10): super(SimpleRNN, self).__init__() self.rnn = nn.RNN(input_size, hidden_size, batch_first=True) def forward(self, x): out, _ = self.rnn(x.unsqueeze(-1)) return out.squeeze(-1) 2025-07-27 17:08:14,084 - INFO - [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m * Running on all addresses (0.0.0.0) * Running on http://127.0.0.1:5000 * Running on http://192.168.3.155:5000 2025-07-27 17:08:14,085 - INFO - [33mPress CTRL+C to quit[0m 2025-07-27 17:10:13,629 - INFO - 127.0.0.1 - - [27/Jul/2025 17:10:13] "[33mGET / HTTP/1.1[0m" 404 - 2025-07-27 17:10:15,816 - INFO - 127.0.0.1 - - [27/Jul/2025 17:10:15] "[33mGET /favicon.ico HTTP/1.1[0m" 404 - 2025-07-27 17:11:42,136 - DEBUG - Received upload request 2025-07-27 17:11:42,163 - DEBUG - Saving file to C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001\S001R01.edf 2025-07-27 17:11:42,165 - DEBUG - Loading EDF: C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001\S001R01.edf 2025-07-27 17:11:42,194 - DEBUG - EDF loaded: shape=(64, 9760), sfreq=160.0, channels=64 2025-07-27 17:11:44,159 - DEBUG - Chaos metrics: {'lorentz_trajectory': [[1.0, 1.012526435333749, 1.0488427648448813, 1.1074268310054123, 1.1872456699842253, 1.2879299443535448, 1.4100743204422619, 1.5546044176661293, 1.7226797617541962, 1.9156937847488102, 2.135501404667851, 2.3848509372121334, 2.6668380107922536, 2.984813421248435, 3.342383141022818, 3.7434083191594643, 4.191980636293861, 4.690242034217356, 5.244446379255251, 5.862109805589737, 6.548741906638002, 7.30784573505223, 8.140917802719603, 9.047448080762301, 10.024919999537499, 11.068810448637375, 12.172454030074087, 13.319363905546792, 14.484208344247893, 15.63513294827697, 16.731680385697324, 17.72479039053596, 18.558078017232326, 19.181057568135333, 19.537958095934012, 19.590016084394605, 19.32129990077376, 18.738709795818533, 17.868310041649757, 16.737663372007585, 15.398614892117966, 13.908598791349505, 12.327156229548489, 10.712315173349486, 9.10947837720894, 7.555592979577969, 6.078057482050836, 4.694801809243179, 3.4162471900409197, 2.2452230013149133, 1.181297687437059, 0.22176199989058532, -0.6383710027299765, -1.4063843651789711, -2.090985274463022, -2.6997109542721507, -3.2398852910893883, -3.7188737648943477, -4.144083449163219, -4.522963010868772, -4.862968807665948, -5.170009255773388, -5.4479837854463495, -5.7006486432102905, -5.931734687064622, -6.144947386482708, -6.343966822411869, -6.532447687273377, -6.7136985588011795, -6.8888340066299065, -7.058731372860783, -7.224289979754371, -7.386339467345437, -7.5456397934429615, -7.7028812336301336, -7.858684381264349, -8.013593048435599, -8.167488545892828, -8.319479097017247, -8.46866633725987, -8.614142894434366, -8.754992388717069, -8.890289432646965, -9.019099631125703, -9.140479581417596, -9.253476873149609, -9.35713008831137, -9.450594422061542, -9.532791072591133, -9.602206389748064, -9.657597021076525, -9.698008423928131, -9.722774865461929, -9.731519422644384, -9.724153982249392, -9.700879240858276, -9.662184704859783, -9.608848690450083, -9.541938323632781, -9.462772849451799, -9.371685987178621, -9.269630020722667, -9.158148638239561, -9.038783951303282, -8.913076494906171, -8.782565227458925, -8.648787530790598, -8.513279210148607, -8.377574494198718, -8.243206035025063, -8.111704908130129, -7.984600612434762, -7.863404747441387, -7.7492423187050825, -7.642944184696112, -7.545282114131972, -7.456948549077124, -7.378556604942999, -7.310640070487999, -7.253653407817487, -7.207971752383799, -7.173890912986237, -7.15162737177107, -7.141318284231538, -7.143021479207844, -7.156715458887163, -7.181874959232638, -7.217409249226833, -7.263409657025492, -7.319893661722231, -7.386736338229492, -7.463670357278543, -7.550285985419476, -7.6460310850212085, -7.750211114271484, -7.861989127176871, -7.980385773562762, -8.10427929907338, -8.232405545171764, -8.363357949139786, -8.495914576487744, -8.629752863825058, -8.763459277088652, -8.895515835795143, -9.024427049858648, -9.14871991959078, -9.266943935700645, -9.377671079294855, -9.47949582187751, -9.571035125350217, -9.650928442012074, -9.717837714559675, -9.770447376087121, -9.807531613047413, -9.828752723335299, -9.83379993391946, -9.822445766314303, -9.794701473837263, -9.750817041608803, -9.691281186552414, -9.616821357394612, -9.528403734664938, -9.42723323069597, -9.314753489623305, -9.19264688738557, -9.062834531724416, -8.927461942101298, -8.787713390817125, -8.644830853165788, -8.500562729492893, -8.356569210284198, -8.214422276165605, -8.075605697903164, -7.941515036403072, -7.813457642711677, -7.692652658015469, -7.580231013641087, -7.47723543105532, -7.384620421865098, -7.302954716502444, -7.232317569344705, -7.173131836879367, -7.125744194242481, -7.090413688185375, -7.067311737074662, -7.056522130892233, -7.05804103123526, -7.071776971316195, -7.097550855962773, -7.1350959616180045, -7.184057936340187, -7.2438408624372475, -7.3133908061992265, -7.392661148749552, -7.481583732765693, -7.579917354594806, -7.687247764253738, -7.802987665429025, -7.926376715476891, -8.056481525423253, -8.192195659963717, -8.332239637463571, -8.4751609299578, -8.619333963151075, -8.762960116417757, -8.9040677228019, -9.041733651545048, -9.175411283227357, -9.303033623622047, -9.422692562313493, -9.53264852875856, -9.63133049228661, -9.717335962099487, -9.789430987271533, -9.846550156749583, -9.887796599352956, -9.91244198377347, -9.91992651857543, -9.909852492276912, -9.881840335197099, -9.83624943855869, -9.77383947072025, -9.695523211097457, -9.602366550163127, -9.49558848944719, -9.376561141536701, -9.246809730075842, -9.108012589765915, -8.962001166365349, -8.810760016689695, -8.656426808611627, -8.501215340287875, -8.34670564920694, -8.19447313415197, -8.046067250400013, -7.902926422881614, -7.766378046180814, -7.637638484535146, -7.517813071835638, -7.407896111626812, -7.308770877106684, -7.221209611126764, -7.145873526192057, -7.083219149135018, -7.032952714674168, -6.995232605770079, -6.970275303333803, -6.958205343333993, -6.959055316796903, -6.972765869806392, -6.9991857035039216, -7.038071574088554, -7.089088292816957, -7.151808726003399, -7.225713795019751, -7.31011357873849, -7.403957374717543, -7.507029474944586, -7.619107646305065, -7.739784593686578, -7.868467959978874, -8.004380326073855, -8.146559210865576, -8.293857071250242, -8.444941302126212, -8.598294236393995, -8.752213144956256, -8.904810236717807, -9.054012658585616, -9.197562495468803, -9.334624071478189, -9.464335474289687, -9.584388298062176, -9.692736107769305, -9.787594520645944, -9.86744120618821, -9.931015886153448, -9.97732033456024, -10.005618377688402, -10.015435894078982, -10.006560814534264, -9.979043122117771, -9.933063375833731, -9.868448237605362, -9.786257552142349, -9.687860380509992, -9.574725367862372, -9.448420743442336, -9.3106143205815, -9.163073496700262, -9.00766525330778, -8.846356156001994, -8.681212354469608, -8.514399582486101, -8.348183028946847, -8.184666843939338, -8.025445046639371, -7.871984306766961, -7.725636568489001, -7.587639050419258, -7.459114245618373, -7.341069921593863, -7.234399120300118, -7.139880158138405, -7.058176625956866, -6.989837389050518, -6.935296587161249, -6.894387842218629, -6.866686924439915, -6.8523863742908615, -6.8515848157115595, -6.864281849317243, -6.890378052398285, -6.929674978920194, -6.9818751595236215, -7.046582101524358, -7.12330028891333, -7.211435182356607, -7.310293219195396, -7.4187462322832065, -7.535703212393713, -7.661079587735009, -7.794606359599258, -7.935795192632162, -8.083938414832934, -8.23810901755431, -8.397160655502544, -8.559727646737409, -8.7242249726722, -8.888848278073729, -9.051573871062331, -9.210158723111856, -9.362140469049681, -9.504837407056696, -9.635386638281505, -9.753725229178356, -9.859024334812688, -9.949018731657922, -10.021835817013518, -10.075995609004963, -10.110410746583785, -10.124386489527545, -10.117620718439838, -10.0902039347503, -10.042619260714591, -9.97574243941442, -9.890841834757518, -9.789205553658606, -9.670831001584585, -9.537578170613347, -9.391603304905122, -9.235047511469363, -9.070036760164752, -8.898681883699199, -8.723078577629838, -8.545307400363033, -8.36743377315437, -8.19150798010867, -8.019565168179971, -7.8536288706212245, -7.695622850755487, -7.546800938397233, -7.40817111123786, -7.2806441676331755, -7.1650337266034025, -7.062056227833178, -6.97233093167155, -6.896379919131983, -6.83462809189235, -6.787403172294942, -6.754935703346462, -6.737359048718023, -6.73451248013291, -6.74518638294261, -6.769366675357218, -6.807161898345692, -6.858544770950088, -6.9233521902855575, -7.001285231540347, -7.091909147975802, -7.1946533709263605, -7.308811509799559, -7.4335413520760305, -7.567864863309502, -7.7106681871267995, -7.8607354828340545, -8.017212966693926, -8.179243679756066, -8.345772489958605, -8.5155896051879, -8.687330573278524, -8.859476282013276, -9.030352959123178, -9.198132172287472, -9.360830829133624, -9.516311177237323, -9.66228080412248, -9.796292637261226, -9.915744944073918, -10.017881331929136, -10.100764433156062, -10.164634780781967, -10.208156853214215, -10.230274453611187, -10.230338898474587, -10.20810901764944, -10.163751154324084, -10.097839165030187, -10.011354419642732, -9.905685801380024, -9.782629706803688, -9.64439004581867, -9.493578241673237, -9.333068906145296, -9.162981965277103, -8.98482878759277, -8.801160007163114, -8.614402586788056, -8.426859817996617, -8.240711321046913, -8.058013044926163, -7.880697267350682, -7.710572594765888, -7.549323962346295, -7.398512633995519, -7.2594784903540095, -7.132904663623455, -7.019415088932684, -6.919567309433686, -6.833826511422586, -6.762565524339654, -6.706064820769292, -6.664512516440045, -6.638004370224596, -6.626543784139766, -6.630041803346518, -6.648317116149947, -6.680228095852599, -6.725027301938794, -6.783159275420805, -6.854867279360083, -6.940191550021407, -7.0389692968728825, -7.1508347025859464, -7.275218923035359, -7.411350087299215, -7.55825329765893, -7.714750629599253, -7.879461131808261, -8.050800826177358, -8.226982707801273, -8.406017657705853, -8.587268944634591, -8.770039610765313, -8.952293440642876, -9.131972706673974, -9.306998169127132, -9.47526907613271, -9.6346631636829, -9.78303665563173, -9.918224263695059, -10.038039187450586, -10.140273114337834, -10.22269621965817, -10.283423763794456, -10.3218497007096, -10.337033842066914, -10.328383997380124, -10.295734067952337, -10.239344046876033, -10.159900019033067, -10.058514161094676, -9.936724741521465, -9.796496120563422, -9.640218750259907, -9.47070917443966, -9.291060150592779, -9.10236981618524, -8.906799278867322, -8.707076658711406, -8.505774646253728, -8.305310502494375, -8.107946058897298, -7.915787717390292, -7.730786450365016, -7.554737800676982, -7.389281881645554, -7.235903360998501, -7.095648944771609, -6.96909317908797, -6.8568150132149945, -6.759299456887157, -6.676937580305993, -6.6100265141401024, -6.558769449525145, -6.523275638063845, -6.503560391825989, -6.499545083348426, -6.511057145635067, -6.5372937525509816, -6.576950981572713, -6.6305074059456155, -6.698331105039451, -6.780576972210342, -6.87718671480078, -6.987888854139619, -7.112198725542077, -7.249418478309739, -7.398637075730553, -7.558730295078834, -7.728360727615259, -7.905977778586871, -8.089817667227079, -8.277903426755655, -8.468764577742625, -8.66246318804759, -8.857104546984818, -9.050584770576615, -9.240745084936115, -9.42537182626729, -9.602196440864931, -9.768895485114667, -9.92309062549295, -10.062348638567068, -10.184181410995134, -10.286045939526094, -10.365506505847325, -10.421659650759985, -10.453330840646105, -10.459546454825183, -10.439822357860882, -10.394163899561033, -10.32306591497764, -10.227512724406873, -10.108978133389076, -9.969425432708755, -9.811307398394593, -9.637566291719438, -9.451593963899635, -9.254733542434357, -9.04889371524319, -8.837115157064973, -8.622267102767625, -8.407047347348136, -8.19398224593258, -7.985426713776103, -7.78356422626293, -7.590406818906363, -7.407795087348783, -7.237398053982101, -7.080464817808489, -6.937711176584645, -6.809778415676883, -6.697208695053258, -6.600445049283575, -6.519831387539383, -6.455612493593976, -6.407934025822396, -6.376842517201431, -6.362285375309612, -6.36411088232722, -6.381287515149129, -6.413008531528666, -6.459742401128868, -6.521770632018398, -6.599180401355229, -6.691864555386654, -6.79952160944928, -6.921655747969031, -7.057576824461144, -7.206400361530175, -7.367047550869994, -7.538245253263787, -7.718525998584054, -7.906227985792615, -8.099753826467976, -8.29894800377932, -8.502516477912176, -8.708747135704986, -8.915772781495876, -9.12157113712266, -9.323964841922836, -9.520621452733591, -9.709053443891799, -9.886618207234019, -10.0505180520965, -10.197800205315172, -10.325356811225664, -10.429924931663273, -10.509242694274901, -10.563124617947837, -10.590243943545273, -10.589740727333378, -10.56128123162757, -10.505057924792517, -10.42178948124214, -10.312720781439607, -10.179622911897338, -10.024793165177003, -9.851055039889525, -9.661758240695073, -9.460647126667864, -9.248484210392412, -9.027377880178593, -8.800615601726816, -8.571285307507699, -8.342275396762046, -8.116274735500868, -7.895772656505365, -7.6830589593269405, -7.480223910287188, -7.289158242477907, -7.11152734778165, -6.9483904249257264, -6.80045151960636, -6.668326268035488, -6.552526918389259, -6.453462330808045, -6.371437977396435, -6.306655942223234, -6.259214921321466, -6.2291102226883766, -6.216233766285424, -6.220045735099047, -6.239236728324175, -6.274137938862359, -6.325085252704138, -6.392229563353213, -6.475536771826453, -6.574787786653891, -6.689578523878725, -6.819319907057318, -6.9632378672592, -7.120373343067063, -7.289582280576766, -7.469535633397332, -7.658719362650954, -7.855619290226343, -8.059963378901333, -8.270766971196366, -8.486606756326628, -8.705823907023454, -8.926524079534246, -9.146577413622595, -9.363618532568202, -9.575046543166891, -9.778025035730618, -9.969482084087467, -10.14611024558165, -10.3043665610735, -10.440472554939493, -10.552356346863064, -10.63906505743021, -10.69833474145512, -10.728540915647725, -10.728702008585254, -10.698479360712229, -10.638177224340467, -10.548742763649079, -10.431766054684475, -10.289480085360351, -10.124760755457707, -9.941126876624832, -9.74262704374555, -9.529299146131443, -9.302810678944223, -9.066844954678926, -8.824885570142529, -8.580216406453953, -8.335921629044055, -8.09488568765564, -7.859793316343454, -7.63312953347418, -7.417179641726447, -7.214018230909568, -7.025163097976971, -6.851545744292793, -6.693952201430297, -6.553050292730022, -6.429389633299802, -6.323401630014749, -6.235399481517266, -6.16557817821704, -6.1140145022910435, -6.0806670276835355, -6.065006490935123, -6.065987350328593, -6.083855888450332, -6.118801031573438, -6.170864571821662, -6.239941167169406, -6.325778341441723, -6.427976484314318, -6.545988851313546, -6.679121563816418, -6.826533609050591, -6.987236840094377, -7.16009597587674, -7.343914270556231, -7.538181974375951, -7.742465066178709, -7.955989176337656, -8.177654987369648, -8.40603823393523, -8.639389702838658, -8.875635233027872, -9.11237571559452, -9.346887093773946, -9.57612036294519, -9.796701570630992, -10.004931816497788, -10.196816989822064, -10.370828640690364, -10.524398286970609, -10.653691289698742, -10.755581716924958, -10.827652343713696, -10.868194652143652, -10.876208831307766, -10.851403777313232, -10.794197093281491, -10.705715089348239, -10.58779278266341, -10.441343065899435, -10.267497888805787, -10.069789389187859, -9.851753949508923, -9.616920773699706, -9.368811887158405, -9.110942136750674, -8.846819190809638, -8.579943539135877, -8.313808492997438, -8.051900447666117, -7.797754585466976, -7.553852312253302, -7.322005783592637, -7.103842314261366, -6.900804378244723, -6.714149608736789, -6.544950798140497, -6.394095898067622, -6.262288019338793, -6.15004543198348, -6.057701565240005, -5.984875493197264, -5.930640461362261, -5.895014964238059, -5.877960628182321, -5.879358024868149, -5.899006671284084, -5.936625029734106, -5.991850507837634, -6.064239458529525, -6.1532671800600784, -6.258327915995029, -6.378456196120566, -6.512769761829688, -6.661698356131369, -6.825438944131511, -7.003875176621308, -7.196577390077255, -7.402802606661146, -7.621494534220067, -7.851283566286405, -8.090486782077845, -8.337107946497365, -8.58883751013325, -8.843052609259068, -9.096817065833694, -9.347569994447012, -9.59412944296327, -9.83274892586172, -10.059610516710844, -10.271081476082484, -10.463714251551842, -10.634246477697486, -10.779600976101339, -10.896885755348693, -10.983394011028194, -11.036604125731854, -11.054376746189545, -11.035964280250669, -10.981481428092648, -10.891633084516688, -10.767718335565634, -10.611630458523976, -10.42585692191785, -10.213479385515033, -9.978173700324945, -9.724209908598652, -9.45645224382886, -9.17896518092362, -8.894633096706848, -8.607587271780016, -8.321634549912252, -8.040240932010176, -7.766531576117909, -7.50329079741706, -7.252962068226739, -7.0176480180035306, -6.799110182191392, -6.598588931593856, -6.416735423783791, -6.254060552391942, -6.110961268943225, -5.987720582856733, -5.884507561445735, -5.801377329917677, -5.738271071374176, -5.695016026811027, -5.67127437894807, -5.6655102725116535, -5.6775845494007395, -5.707948517525475, -5.756876214411522, -5.824464407200071, -5.910632592647825, -6.015122997127014, -6.137500576625385, -6.277153016746208, -6.433290732708274, -6.604946869345892, -6.790977301108893, -6.990060632062631, -7.200910734942229, -7.42371379485179, -7.658210899008282, -7.903596072099213, -8.158658812260963, -8.421784091078777, -8.690952353586773, -8.963739518267936, -9.237316977054117, -9.508451595326038, -9.773505711913291, -10.028437139094333, -10.268799162596492, -10.491400960811863, -10.693637330924663, -10.870423292222078, -11.017440698571619, -11.13118837122147, -11.20898209880049, -11.248954637318214, -11.250055710164856, -11.212052008111302, -11.135527189309116, -11.02172743836465, -10.870602508052292, -10.684879710285756, -10.468415406276245, -10.225188259471134, -9.959299235553976, -9.674971602444502, -9.376550930298624, -9.068505091508428, -8.755424260702176, -8.44202091474431, -8.133004873574595, -7.831871448514517, -7.541354957475765, -7.263910052704116, -7.001711959888221, -6.756656478159602, -6.5303599800926575, -6.324159411704661, -6.139112292455757, -5.975996715248969, -5.835304604083793, -5.716292932033446, -5.618266622153557, -5.541123268810432, -5.4846970173036524, -5.448758563866075, -5.43301515566383, -5.4371105907963235, -5.460625218296235, -5.503075938129518, -5.563916201195403, -5.642209880626704, -5.737553207744417, -5.850409462841139, -5.981033543624884, -6.129462862922454, -6.295517348679427, -6.478799443960166, -6.678694106947816, -6.8943688109443, -7.124773544370328, -7.368640810765387, -7.624485628787749, -7.890606252489617, -8.165667036782889, -8.448417166714737, -8.736931137785636, -9.028896019245243, -9.3216114540924, -9.611989659075137, -9.89655542469067, -10.171446115185397, -10.432411668554902, -10.674814596543957, -10.893629984646518, -11.083445492105726, -11.238561291235479, -11.356698628218233, -11.435698067506443, -11.473017788368411, -11.46714724858019, -11.417607184425583, -11.32494961069615, -11.1907578206912, -11.017646386217796, -10.80926115759075, -10.570279263632631, -10.306409111673759, -10.022959356072608, -9.719411807629815, -9.40060185698769, -9.071976456287343, -8.738589231017, -8.405100480012, -8.075777175454807, -7.754492962874992, -7.444728161149251, -7.149569790892485, -6.871673364793906, -6.612653403950992, -6.373609663912343, -6.1554519244162105, -5.958899989390499, -5.784483686952766, -5.632542869410221, -5.503227413259728, -5.396497219187801, -5.3119750101434, -5.2485317259284585, -5.205989294556362, -5.1842662824151, -5.183197665645914, -5.202534830143294, -5.241945571554977, -5.301014095281951, -5.379241016478454, -5.476043360051969, -5.590754560663235, -5.722624084685755, -5.8711576359978634, -6.036776221242916, -6.219829022346376, -6.420375336478269, -6.638184576053179, -6.872736268730252, -7.123220057413194, -7.388535700250272, -7.667293070634313, -7.957812157202707, -8.258123063837402, -8.565966009664908, -8.879230201532385, -9.195610178693487, -9.511529581946435, -9.823139927036284, -10.126340741415417, -10.416779564243566, -10.68985194638779, -10.940701450422498, -11.164219650629425, -11.355046132997652, -11.507976092598339, -11.620243917269454, -11.688180652420217, -11.708958266995737, -11.681046402318996, -11.60421237209083, -11.479521162389942, -11.309335431672897, -11.097315510774123, -10.84841940290591, -10.56884241458601, -10.261310820095364, -9.929917318524744, -9.581070675529574, -9.220776265837811, -8.854636073249953, -8.487848690639026, -8.125209319950601, -7.771109772202781, -7.42953846748621, -7.104115616864463, -6.7973797834087275, -6.510922775651294, -6.24606957502629, -6.003887644894541, -5.785186930543568, -5.590519859187591, -5.420181339967528, -5.274208763950994, -5.152299765221021], [1.0, 1.2602660236168577, 1.5246335723524451, 1.7991441836578583, 2.089728465710837, 2.402034337231003, 2.741062813428148, 3.112108094933138, 3.5209056034597817, 3.9736319818048305, 4.476508624259135, 5.0358407583463, 5.6584509900370925, 6.351383862848584, 7.121905813858448, 7.977505173704959, 8.925778443221201, 9.963354240539273, 11.1014214855464, 12.355152644794467, 13.72930570570825, 15.218224176585434, 16.805837086596576, 18.465658985785158, 20.160789945067535, 21.84391555623297, 23.45754370283531, 24.927788026075323, 26.130471116352034, 26.938428538030376, 27.23522106634597, 26.91513468740514, 25.879224671434386, 24.060423345716178, 21.57025996397508, 18.552428513235164, 15.152118776873753, 11.516016334621394, 7.810398882381861, 4.3020344437607125, 1.1578489839938353, -1.527493297304403, -3.7170042314612246, -5.428463401599892, -6.710890706310459, -7.623971241460531, -8.234967983687026, -8.617721943580147, -8.829542700730316, -8.914353821913945, -8.910905518039147, -8.850385250725857, -8.75641773230583, -8.645357756192142, -8.530342010868546, -8.419156527828727, -8.317372099743235, -8.229513447955323, -8.159059222480957, -8.108442002008802, -8.078837290813777, -8.069230532403084, -8.078846414866488, -8.106927167931449, -8.152570116259975, -8.214727679448623, -8.292207372028502, -8.38367180346526, -8.487560486117289, -8.602025828043356, -8.725544330125395, -8.856498079629198, -8.993125453940417, -9.133521120564568, -9.275636037127033, -9.417277451373055, -9.556125604289676, -9.690394953873497, -9.817943815603948, -9.936401239313605, -10.04354934905263, -10.137323343088783, -10.215811493907406, -10.277255148211436, -10.320048726921405, -10.34273972517543, -10.344028712329223, -10.322680317834667, -10.278289927274846, -10.211537685984485, -10.123326943851147, -10.014763721135683, -9.887156708472236, -9.742017266868242, -9.58105942770442, -9.406199892734783, -9.219558034086635, -9.023455894260566, -8.820418186130464, -8.6132106562799, -8.405927040773786, -8.201681620145132, -8.002745402265768, -7.811223147172688, -7.629053367068048, -7.45800832631916, -7.299694041458496, -7.155550281183689, -7.02685056635753, -6.914702170007971, -6.820046117328123, -6.743657185676255, -6.685937836956949, -6.644732023758531, -6.619692282099529, -6.61111038970383, -6.619082629546092, -6.643509789851739, -6.684097164096964, -6.740354551008731, -6.811596254564771, -6.896941083993584, -6.995312353774438, -7.105437883637372, -7.225849998563191, -7.3548855287834725, -7.491509520338424, -7.636624499743727, -7.789643601403191, -7.949756754880583, -8.116032680399787, -8.287418888844805, -8.462741681759757, -8.640706151348883, -8.819896180476544, -8.998774442667212, -9.175682402105481, -9.348840313636066, -9.516347222763795, -9.676180965653618, -9.826554038916548, -9.966258371830582, -10.09254942083166, -10.202850520156446, -10.294919311231842, -10.366847742674974, -10.417062070293197, -10.444322857084096, -10.447724973235482, -10.426697596125404, -10.381004210322127, -10.310742607584155, -10.216344886860217, -10.098425065093105, -9.957214359092408, -9.795729209724989, -9.617434121942843, -9.425627050255322, -9.223439398729127, -9.01383602098832, -8.799615220214317, -8.583408749145882, -8.367681810079148, -8.154733054867592, -7.946694584922046, -7.745531951210701, -7.553062448511212, -7.372350275021708, -7.205951003678668, -7.055342134229806, -6.921720456087645, -6.8060020483295105, -6.708822279697546, -6.630535808598694, -6.571216583104713, -6.5306578409521645, -6.508372109542423, -6.503591205941669, -6.515266236880893, -6.54236935793654, -6.584662041739082, -6.641834188471432, -6.713477573309693, -6.799092105287347, -6.898085827295245, -7.009774916081612, -7.133383682252044, -7.268044570269512, -7.4127981584543585, -7.566593158984299, -7.728286417894421, -7.896809001087917, -8.07184479382068, -8.25239957483902, -8.437248831803542, -8.625057029452362, -8.814377609601102, -9.003652991142893, -9.19121457004837, -9.375282719365675, -9.553966789220462, -9.725265106815879, -9.887064976432594, -10.037142679428774, -10.173163474240098, -10.292681596379747, -10.393717216933542, -10.474517429523797, -10.532908639749504, -10.567153794173173, -10.575957016070056, -10.558463605428146, -10.514260038948176, -10.443373970043618, -10.346274228840688, -10.223870822178338, -10.077514933608263, -9.9089989233949, -9.72055541490668, -9.515052647015864, -9.29626299993238, -9.06794955806303, -8.833682932642184, -8.596841261731788, -8.360610210221353, -8.12798296982796, -7.901760259096263, -7.684550323398485, -7.478768934934419, -7.286639392731429, -7.110192522644447, -6.951117403278269, -6.809815006407505, -6.6871417510202, -6.583890496458093, -6.500572878873887, -6.4374193112312525, -6.394378983304827, -6.371119861680209, -6.367028689753966, -6.38121098773363, -6.4124910526377, -6.459411958295636, -6.520442835165364, -6.595773970637356, -6.68521603668008, -6.788256273723043, -6.904308120981534, -7.032711216456628, -7.172731396935186, -7.32356069798985, -7.4843173539790495, -7.654045798046997, -7.831716662123689, -8.016226776924908, -8.206489615020677, -8.40188983596458, -8.601032770647816, -8.802271293580354, -9.00387051321159, -9.204007771930334, -9.40077264606482, -9.592166945882699, -9.776104715591044, -9.950412233336351, -10.11282801120453, -10.261002795220914, -10.392499565350258, -10.504793535496736, -10.595272153503942, -10.661656556610017, -10.7023287550876, -10.71592436965587, -10.701525286207318, -10.658659670044681, -10.587301965880943, -10.48787289783934, -10.36123946945335, -10.208714963666708, -10.032058942833391, -9.833477248717626, -9.61562200249389, -9.381760042433546, -9.136730589106863, -8.884701654725426, -8.629424742690311, -8.374436252987152, -8.123057482186137, -7.8783946234420235, -7.643338766494116, -7.420565897666283, -7.212536899866954, -7.021497552589114, -6.849478531910307, -6.698293466777031, -6.5677500260037025, -6.457323244134125, -6.3676369078951565, -6.2990410891210535, -6.251612144753469, -6.225152716841455, -6.219191732541458, -6.232984404117324, -6.265512228940295, -6.315482989489012, -6.381330753349513, -6.46121587321523, -6.554336972331245, -6.661382332747329, -6.781849389615288, -6.915149003489203, -7.06061622390393, -7.21751028937509, -7.385014627399081, -7.5622368544530705, -7.748208775994998, -7.9418863864635725, -8.142149869278278, -8.347803596839364, -8.557980380467752, -8.77180291844666, -8.987123441878142, -9.201725457844521, -9.41336194016083, -9.61975532937476, -9.818597532766685, -10.007549924349647, -10.184243344869369, -10.346278101804243, -10.491223969365343, -10.61662018849641, -10.71997546687387, -10.798767978906813, -10.850445365737016, -10.872415921555946, -10.86210051369038, -10.81948893533838, -10.74564738686183, -10.641874284474355, -10.50970026024133, -10.35088816207987, -10.167433053758835, -9.961562214898827, -9.735735140972196, -9.492643543303032, -9.23521134906717, -8.96659470129219, -8.690856814291855, -8.415235446305326, -8.143734357145652, -7.879551058515536, -7.625627433122485, -7.384649734678811, -7.159048587901633, -6.9509989885128745, -6.762420303239267, -6.594976269812345, -6.45007499696845, -6.328868964448729, -6.2321665349566615, -6.157526038713206, -6.103798228987777, -6.071128723577401, -6.059443944848854, -6.06845111973866, -6.097638279753093, -6.146274260968172, -6.213408704029669, -6.297872054153102, -6.39827556112374, -6.513011279296599, -6.640252067596444, -6.778354611239248, -6.9284279723473325, -7.0903909821508995, -7.2636388759413, -7.44744373552113, -7.640954489204228, -7.843196911815676, -8.053073624691802, -8.26936409568017, -8.490724639139597, -8.715688415940136, -8.942665433463088, -9.169942545600993, -9.395884592822021, -9.619835591874702, -9.83847389384135, -10.04808456902251, -10.245191467619236, -10.426557219733079, -10.5891832353661, -10.730309704420868, -10.847415596700452, -10.93821866190843, -11.000675429648885, -11.032981209426403, -11.03357009064608, -11.00111494261351, -10.9345274145348, -10.831400288699085, -10.690255494193734, -10.516649717766903, -10.315996399405586, -10.093247839368521, -9.852895198186172, -9.598968496660746, -9.335036615866178, -9.06420729714815, -8.78912714212407, -8.511981612683083, -8.234495030986075, -7.957930579465664, -7.683463094810176, -7.420063878312348, -7.173362379680764, -6.9456684645484, -6.738883840036248, -6.554502054753318, -6.393608498796637, -6.256880403751252, -6.144586842690225, -6.056588730174638, -5.992338822253589, -5.950881716464195, -5.930854310369259, -5.9311418712442325, -5.9512314668624295, -5.990563399909557, -6.0484966217145235, -6.124308732249446, -6.217195980129641, -6.32627326261363, -6.450574125603138, -6.589050763643094, -6.740574019921631, -6.903933386270086, -7.078459295575534, -7.264134734746131, -7.460418754846489, -7.6665909944080255, -7.881752468100064, -8.104825566729835, -8.334554057242476, -8.569503082721031, -8.808059162386451, -9.048430191597596, -9.288645441851227, -9.526555560782018, -9.759832572162548, -9.985969875903303, -10.202282970655363, -10.406749182970033, -10.595972282718538, -10.765607285317683, -10.911798558862214, -11.031179824124822, -11.120874154556127, -11.1784939762847, -11.202141068117047, -11.19040656153761, -11.142370940708778, -11.057604042470873, -10.936165056342162, -10.777692242489884, -10.582569593871934, -10.356504283511086, -10.105154784297792, -9.833798314820402, -9.547330839365184, -9.250267067916301, -8.946740456155826, -8.64050320546374, -8.334926262917925, -8.032999321294175, -7.7373308190661865, -7.450453707025828, -7.179245738589397, -6.927865561967064, -6.698522820648053, -6.492961086315876, -6.312457858848336, -6.157824566317523, -6.029406564989818, -5.927083139325892, -5.850267501980702, -5.797906793803497, -5.768482105676627, -5.760568271186873, -5.773560441437439, -5.806793236164028, -5.859545743910568, -5.9310415220292185, -6.02044859668037, -6.126879462832641, -6.24939108426288, -6.386984893556166, -6.5386067921058055, -6.703147150113336, -6.87969969613766, -7.068213675330882, -7.268288618858554, -7.479311277695299, -7.70048389880777, -7.930824225154646, -8.169165495686638, -8.414156445346489, -8.664261305068962, -8.917759801780859, -9.172747158401009, -9.427134093840266, -9.678646823001516, -9.924827056779678, -10.163032002061696, -10.390811590888177, -10.605325247384346, -10.801767671003725, -10.975703831997713, -11.123196013051032, -11.24080380928174, -11.325584128241218, -11.37509118991418, -11.387376526718667, -11.360988983506047, -11.294974717561017, -11.188877198601604, -11.042262232220867, -10.853583381015124, -10.628315564187176, -10.372833016851656, -10.093055681059026, -9.794449205795576, -9.482024946983433, -9.160339967480557, -8.833497037080729, -8.505144632513577, -8.17847693744455, -7.85623384247493, -7.5407903010030894, -7.239655168925597, -6.958826634744016, -6.700901214449172, -6.467952732624536, -6.261532322446217, -6.08266842568297, -5.931866792696189, -5.809110482439911, -5.713859862460816, -5.645052608898224, -5.601103882022646, -5.580407741761831, -5.582162607431239, -5.605593233580322, -5.6498736179106155, -5.714127001275738, -5.7974258676813895, -5.898791944285355, -6.0171962013975016, -6.151558852479781, -6.300749354146224, -6.46358640616295, -6.639406741704176, -6.828312811079023, -7.029888971805326, -7.243554498414342, -7.4685669335273985, -7.704022087855896, -7.948854040201311, -8.20183513745519, -8.461575994599151, -8.726525494704894, -8.994970788934182, -9.26503729653886, -9.534688704860836, -9.801726969332101, -10.064099037521494, -10.320065062194947, -10.564546842435643, -10.792408054358987, -10.998954454279172, -11.1799338787092, -11.331536244360855, -11.450393548144728, -11.5335798671702, -11.578611358745452, -11.583446260377457, -11.546484889771984, -11.466569644833601, -11.342985003665673, -11.17316494367021, -10.957237021758457, -10.703400931796075, -10.419312230621246, -10.11188554613122, -9.787294577282294, -9.450972094089831, -9.107609937628244, -8.761159020031009, -8.414829324490654, -8.07108990525877, -7.731668887645998, -7.39791824239769, -7.080274685960744, -6.785641599731247, -6.516639369418936, -6.275297930586426, -6.063056768649204, -5.88076491887563, -5.728680966386937, -5.606473046157235, -5.513218843013503, -5.447405591635597, -5.407013808592985, -5.390790291661755, -5.397886530448421, -5.427355115682728, -5.478217076152157, -5.549461878701931, -5.640047428235003, -5.748900067712068, -5.874914578151554, -6.016954178629629, -6.173850526280194, -6.344622508150169, -6.529388742166002, -6.727884120971334, -6.939624874707443, -7.163986482710667, -7.400203673512407, -7.647370424839124, -7.9044399636123375, -8.170224765948632, -8.443396557159645, -8.722486311752084, -9.00588425342771, -9.29183985508335, -9.578461838810886, -9.863919016332197, -10.14629252834597, -10.420695242656265, -10.682089979068808, -10.925723019366371, -11.147124107308706, -11.342106448632657, -11.506766711052082, -11.63748502425787, -11.73092497991795, -11.784033631677277, -11.794041495157844, -11.758462547958676, -11.675094229655835, -11.537916295668772, -11.347582271857162, -11.11304341148178, -10.842398597024781, -10.54288284088559, -10.220867285380901, -9.881859202744685, -9.530501995128184, -9.170575194599909, -8.80499446314565, -8.435811592668465, -8.064214504988682, -7.690849286474466, -7.329154575590641, -6.989181938595335, -6.674338740212094, -6.387375771709541, -6.130387250901381, -5.904810822146395, -5.711427556348447, -5.550361950956474, -5.4210819299645, -5.322398843911623, -5.252460027376549, -5.209329906626082, -5.191895562559699, -5.199094359006064, -5.229812353930988, -5.282884299437433, -5.357093641765511, -5.451172521292482, -5.563801772532755, -5.693610924137893, -5.839178198896603, -5.999485546176893, -6.1749533446918905, -6.365250576713241, -6.569889636058173, -6.788301707723719, -7.019836767886719, -7.263763583903817, -7.519269714311461, -7.785461508825907, -8.061364108343215, -8.345921444939247, -8.637996241869677, -8.936370013569977, -9.239784069824628, -9.54617325660569, -9.851925873766296, -10.153233381531896, -10.44619829696377, -10.726834193959023, -10.991065703250598, -11.234728512407266, -11.453569365833626, -11.643246064770114, -11.79932746729299, -11.91729348831435, -11.99253509958212, -12.020341526338406, -11.995856076418105, -11.918524015819608, -11.78984726226535, -11.611874295816039, -11.387200158870659, -11.118966456166469, -10.810861354779007, -10.467119584122084, -10.09252243594779, -9.692397764346488, -9.272619985746818, -8.842791447580229, -8.414007867448321, -7.9927786160055945, -7.58496958296014, -7.195824243506355, -6.8299636583249335, -6.491386473582882, -6.183468920933503, -5.908964817516406, -5.670005565957505, -5.468097611837334, -5.301067954476938, -5.1662913287132355, -5.06339368590343, -4.991680225352757, -4.95013539431448, -4.937422887989895, -4.951885649528325, -4.991545870027125, -5.054104988531678, -5.136943692035398, -5.237121915479728, -5.353267571627883, -5.487004990816794, -5.637699540115593, -5.804690479244338, -5.98736067666767, -6.185136609594812, -6.397488363979571, -6.623929634520341, -6.8640177246600915, -7.117353546586385, -7.38358162123136, -7.662128138315135, -7.951813375463027, -8.251819809086625, -8.560979218074547, -8.87772177366964, -9.20007603946898, -9.525668971423869, -9.851725917839833, -10.175070619376626, -10.49212520904823, -10.798910212222856, -11.091044546622935, -11.363745522325134, -11.611828841760337, -11.830272920331069, -12.014522365697761, -12.157840545665747, -12.254452254099245, -12.299795006117034, -12.290519038092453, -12.224487307653401, -12.100775493682335, -11.919671996316271, -11.682677936946787, -11.392507158220019, -11.052116709992072, -10.667467794307786, -10.249416980918834, -9.808098527087479, -9.352763175551246, -8.89177815452293, -8.4326271776906, -7.981910444217588, -7.545344638742498, -7.127762931379201, -6.733114977716838, -6.366669484673502, -6.034391415374654, -5.738534846927349, -5.480516531853708, -5.260944254532192, -5.079616831197608, -4.935524109941106, -4.826846970710178, -4.750957325308656, -4.70442294805911, -4.6851938683944825, -4.6924833176833, -4.724691004332686, -4.780299897896631, -4.857876229075999, -4.956069489718522, -5.073612432818802, -5.209321072518314, -5.3620946841054025, -5.530941138008486, -5.715771871371197, -5.916507442100515, -6.132760594246079, -6.364092400593757, -6.610012262665641, -6.8699779107200545, -7.143395403751551, -7.429619129490908, -7.727951804405137, -8.037644473697473, -8.357896511307382, -8.68785561991056, -9.026617830918926, -9.373050286036905, -9.724041756314113, -10.075593606717838, -10.423523625032173, -10.763400350186938, -11.090543072257676, -11.400021832465658, -11.686657423177877, -11.945021387907056, -12.169436021311645, -12.353974369195814, -12.492460228509463, -12.57846814734822, -12.605528639462083, -12.570306152390364, -12.47215661894242, -12.311523250135087, -12.089925135943796, -11.809957245302575, -11.47529042610405, -11.090671405199439, -10.661922788398563, -10.195943060469833, -9.700976672739598, -9.190700926987523, -8.676552134807087, -8.167630373609004, -7.672129662307604, -7.197337961320841, -6.749637172570283, -6.334503139481125, -5.956505646982177, -5.61930842150587, -5.325669130988256, -5.074479502114936, -4.862975121237278, -4.6910054810912, -4.557880517063618, -4.462366356560629, -4.402685319007517, -4.376515915848748, -4.3809928505479725, -4.412707018588023, -4.467705507470919, -4.54152034583346, -4.634002730964389, -4.746293164474873, -4.877321809125977, -5.026169415787947, -5.192067323440208, -5.374397459171372, -5.57269233817923, -5.786635063770756, -6.016059327362106, -6.260949408478616, -6.521111352137295, -6.796257083635316, -7.086393689709154, -7.391226411141468, -7.710152447523238, -8.042260957253763, -8.386333057540664, -8.740841824399881, -9.103952292655672, -9.473521455940618, -9.84709826669562, -10.221923636169894, -10.594934259892757, -10.964229490908384, -11.32380761796862, -11.665173530328484, -11.980383225548307, -12.262043809493726, -12.503313496335684, -12.697901608550435, -12.84006857691954, -12.92462594052987, -12.946936346773601, -12.902913551348218, -12.789022418256518, -12.601901476398178, -12.331646960013135, -11.987984637992938, -11.587080896526668, -11.14310954765855, -10.668251829287964, -10.172696405169427, -9.664639364912617, -9.150284223982348, -8.633841923698592, -8.117530831236465, -7.601576739626229, -7.089092421935404, -6.605795021703842, -6.16022490431683, -5.756443490740766, -5.397277069620126, -5.084316797277461, -4.817918697713395, -4.597203662606633, -4.42005745131395, -4.2831308309077745, -4.183084522948512, -4.117815993041674, -4.084995885539322, -4.0823382647927655, -4.1076006151525615, -4.158583840968515, -4.233132266589678, -4.3291336363643484, -4.444519114640073, -4.577534007513342, -4.72830182530277, -4.896307991750897, -5.080928074125314, -5.281671956963393, -5.498183842072281, -5.730242248528901, -5.977760012679955, -6.240784288141921, -6.5194965458010525, -6.814212573813382, -7.12535453381525, -7.451947437332835, -7.793358552646696, -8.149256509940123, -8.51874371628088, -8.900356355621208, -9.292064388797817, -9.691271553531896, -10.094815364429103, -10.498967112979567, -10.899431867557901, -11.29134847342318, -11.669289552718963, -12.028263535113997, -12.361190880625577, -12.65784545317771, -12.908972413312696, -13.106352250267278, -13.242800781972637, -13.312169155054395, -13.309343844832616, -13.230246655321805, -13.071834719230907, -12.830853983037333, -12.50391272228022, -12.103382631585484, -11.642752073139667, -11.134418125884503, -10.589686585516922, -10.01877196448906, -9.430797492008248, -8.833795114037006, -8.234705493293069, -7.639533159485056, -7.065524554901114, -6.527108657850594, -6.030569848529395, -5.580684154178877, -5.180719249085869, -4.832434454582659, -4.536080739047, -4.290400717902106, -4.092628653616661, -3.9388290219065185, -3.8257903502211756, -3.7506944313429216, -3.710724223691946, -3.7030656168560054, -3.7249074315904194, -3.7734414198180737, -3.8458622646294187, -3.939367580282471, -4.051570877802729], [1.0, 0.9848771469249452, 0.9730975826471474, 0.9651532309165722, 0.9617570252901997, 0.963904606417799, 0.9727601655196005, 0.9899192304647947, 1.0174647047259775, 1.057966867379151, 1.1149430227324708, 1.192078097761772, 1.2939084534994867, 1.426829887582959, 1.5990977215072504, 1.8208268006251416, 2.1040149031683373, 2.465412055835648, 2.922781261820937, 3.49573286187271, 4.208308411941916, 5.088980683181951, 6.170653661948647, 7.490662549800286, 9.09077376349759, 11.017184935003726, 13.319676765062745, 16.013277922693206, 19.09891690146636, 22.550897700579338, 26.2987607072238, 30.22728269658591, 34.17901791860924, 37.96377819776274, 41.34061632404104, 44.11812871543175, 46.17182900435874, 47.444148037682076, 47.94000011753252, 47.713774612350996, 46.889140761025594, 45.613943439583586, 44.05463346215421, 42.37201395635693, 40.660443799954486, 38.9965470513804, 37.4331847014341, 35.9991779015414, 34.70351752958226, 33.54253091085396, 32.508733317624525, 31.592170937477576, 30.780420873312334, 30.058848526828932, 29.415834904267893, 28.841831398114252, 28.327962708366236, 27.86656712596843, 27.45119653281176, 27.076616401733492, 26.738618905143927, 26.433630643943474, 26.16005009540578, 25.9165303736676, 25.701749830721077, 25.514412056413693, 25.353245878448316, 25.21700536238317, 25.104701810355778, 25.0169179595198, 24.954221182698806, 24.916877282929516, 24.904914058529055, 24.91812130309493, 24.956050805505043, 25.018016349917684, 25.103097771179424, 25.21056131213016, 25.340034671251278, 25.4908023921227, 25.661758497642236, 25.851406490025568, 26.057859350806265, 26.278839540835765, 26.511679000283397, 26.753319148636365, 27.00031088469975, 27.249519007573898, 27.498387658084113, 27.742954277839182, 27.979502196412305, 28.204623473716573, 28.41521890000498, 28.60849799587041, 28.78197901224565, 28.933488930403378, 29.06116346195617, 29.1634470488565, 29.23909286339674, 29.28719706759695, 29.308294314876285, 29.30267143749045, 29.2704165965432, 29.211988779234215, 29.1282177988591, 29.020304294809367, 28.889819732572445, 28.738706403731687, 28.56927742596635, 28.384216743051624, 28.186579124858607, 27.97979016735431, 27.767421643164862, 27.549988846231564, 27.328623964844226, 27.105146003666924, 26.88134098514783, 26.658961949519192, 26.439728954797353, 26.225329076782735, 26.01741640905985, 25.817612062997295, 25.627504167747745, 25.448647870247967, 25.28256533521882, 25.130745745165235, 24.99412039865892, 24.872806946985882, 24.768237352414825, 24.681757965831324, 24.614549030546524, 24.56762468229713, 24.541832949245425, 24.53785575197926, 24.55620890351206, 24.597242109282814, 24.661138967156077, 24.747916967421983, 24.857427492796226, 24.989355818420083, 25.14318370401779, 25.317902475301963, 25.512145595029583, 25.72428742080819, 25.952439495364818, 26.194450546546, 26.44790648731778, 26.710130415765683, 26.978182615094745, 27.24886055362951, 27.518698884814, 27.783969447211756, 28.04068126450581, 28.28464462943248, 28.512415509089394, 28.720885302650096, 28.907253469400995, 29.069153078788577, 29.204650810419388, 29.31224695406003, 29.39087540963718, 29.439903687237575, 29.45913290710802, 29.448797799655384, 29.409566705446597, 29.342541575208664, 29.249271132548284, 29.132487143298317, 28.994216410291685, 28.83595844433886, 28.659409107360958, 28.46646061238972, 28.259201523567526, 28.039916756147385, 27.81108757649294, 27.57539160207847, 27.33570280148888, 27.095091494419716, 26.856824351677158, 26.62273073121497, 26.392328058983196, 26.16728069324852, 25.949242982331707, 25.739798436189886, 25.540459726416568, 25.352668686241643, 25.177796310531367, 25.017142755788374, 24.871937340151675, 24.743338543396654, 24.632434006935068, 24.54005524278408, 24.466504595347423, 24.41326528597613, 24.381739953037894, 24.373067812158077, 24.388124656219745, 24.427522855363627, 24.49161135698815, 24.580475685749427, 24.693937943561245, 24.831556809595078, 24.99262754028009, 25.176181969303123, 25.380988507608706, 25.60555214339906, 25.84844205379741, 26.10728060852878, 26.378647011639956, 26.659090747432575, 26.94513575647864, 27.233280435620514, 27.51999763797092, 27.801734672912943, 28.07491330610003, 28.335929759455993, 28.581154711175, 28.80693329572158, 29.009586364959773, 29.185815703674564, 29.33347062995168, 29.45097200580437, 29.53719340656525, 29.591461120886304, 29.613554150738864, 29.60370421141364, 29.562595731520695, 29.491365852989464, 29.391604431068743, 29.265354034326684, 29.11510994465081, 28.943839659100696, 28.754527139725514, 28.549322507283595, 28.330332272009365, 28.099722973098473, 27.859721178707762, 27.612613485955286, 27.360746520920316, 27.106526938643313, 26.852421423125957, 26.600956687331134, 26.354719473182932, 26.116063160155694, 25.88506098444689, 25.662929637018614, 25.451243176913174, 25.251509246399937, 25.06516907097537, 24.893597459362987, 24.738102803513403, 24.599927078604292, 24.480245843040404, 24.380168238453575, 24.300736989702703, 24.242778974905214, 24.206380352441712, 24.19297602568387, 24.203972358624757, 24.24043197591605, 24.303073762868028, 24.39227286544956, 24.508060690288115, 24.65012490466977, 24.81780943653919, 25.01011447449964, 25.225696467812995, 25.462868126399712, 25.719598420838853, 25.993512582368087, 26.2826143036312, 26.5835531766993, 26.891738206174853, 27.202733293923867, 27.51225729043882, 27.816183994838678, 28.11054215486887, 28.391515466901318, 28.65544257593441, 28.898817075593016, 29.118287508128486, 29.310657364418645, 29.47289632791922, 29.602664086287245, 29.698663993805575, 29.760130939580947, 29.786791192805048, 29.77886240275454, 29.737053598791064, 29.662565190361203, 29.557088966996528, 29.422808098313563, 29.262397134013803, 29.07902200388371, 28.876339363087883, 28.657525441317016, 28.424671311484847, 28.180067679402732, 27.926010131825823, 27.66479913645308, 27.398740041927255, 27.130143077834905, 26.861323354706386, 26.594600864015852, 26.332300478181267, 26.076751950564386, 25.830289915470765, 25.5941637670051, 25.36872969694535, 25.1555465854691, 24.956122670479818, 24.771905356674527, 24.60428121554379, 24.454575985371704, 24.324054571235916, 24.21392104500761, 24.125318645351502, 24.059329777725864, 24.0169760143825, 23.99846514904419, 24.003737275719182, 24.03462321313836, 24.092570126924354, 24.178570436394015, 24.2931618145584, 24.436427188122796, 24.607994737486695, 24.807037896743815, 25.032275353682074, 25.28197104978363, 25.55393418022483, 25.845519193876253, 26.153625793302698, 26.474698934763165, 26.804753152945423, 27.14084441298729, 27.478088805009104, 27.81063191891968, 28.133110026501907, 28.440650081412755, 28.72886971918327, 28.99387725721857, 29.232271694797856, 29.4411427130744, 29.61807067507555, 29.761126625702737, 29.86887229173146, 29.940402746282626, 29.975413186962673, 29.97379114454032, 29.93590532296603, 29.86264907495816, 29.755440402003014, 29.616221954354796, 29.44746103103565, 29.252149579835635, 29.033804197312726, 28.796466128792833, 28.54470126836977, 28.283502767093108, 28.014256682750073, 27.73802543918289, 27.45712770878458, 27.17381834909216, 26.890288402786634, 26.60866509769301, 26.331011846780285, 26.05932824816145, 25.795550085093495, 25.5415493259774, 25.299134124358144, 25.07004881892469, 24.855800310972494, 24.656883605078715, 24.474700716129774, 24.31078582283852, 24.166591480316846, 24.043488620075724, 23.942766550025176, 23.865632954474282, 23.81321389413118, 23.786553806103075, 23.786615503896222, 23.814280177415945, 23.87034739296662, 23.95536020382343, 24.068472446424327, 24.21021882251659, 24.381057676848535, 24.580883653348412, 24.8090276951244, 25.064257044464604, 25.34477524283707, 25.64822213088976, 25.971673848450575, 26.31164283452734, 26.664077827307814, 27.02436386415968, 27.387322281630567, 27.74721071544801, 28.09847907246273, 28.4366746624753, 28.75605326370608, 29.05148393331419, 29.31855782425368, 29.55358818527352, 29.753610360917598, 29.91638179152473, 30.04038201322866, 30.12481265795804, 30.169597453436452, 30.175382223182414, 30.14353488650934, 30.076128075831708, 29.975086907146668, 29.84185287978836, 29.678214356073116, 29.486324916429663, 29.268703359399115, 29.02823370163497, 28.768165177903118, 28.492112241081834, 28.204054562161783, 27.90833703024602, 27.60966975254998, 27.311854257489767, 27.013784473613573, 26.71718262172595, 26.424125418146254, 26.1365947573654, 25.856477712045894, 25.585566533021808, 25.32555864929879, 25.078056668054067, 24.84456837463643, 24.626506732566252, 24.425189883535484, 24.24151878542113, 24.07675552495111, 23.93269731711047, 23.811004267169196, 23.71319860851648, 23.640664702660697, 23.59464903922943, 23.576260235969457, 23.58646903874675, 23.62610832154648, 23.695873086473018, 23.79632046374992, 23.92786971171996, 24.09080221684509, 24.285261094700495, 24.51043752470784, 24.76471366475499, 25.046443671074254, 25.35347599573384, 25.68315338663787, 26.032312887526352, 26.397285837975215, 26.77389787339628, 27.157468925037275, 27.542813219981838, 27.9242392811495, 28.29554992729571, 28.65030027462379, 28.982934650402594, 29.28825763613634, 29.561762830398344, 29.79967703965643, 29.99896027827295, 30.157305768504774, 30.27313994050329, 30.345622432314414, 30.374646089878567, 30.360836967030703, 30.30555432550029, 30.210985169157013, 30.080997613516338, 29.918151058657504, 29.72473975000572, 29.50338134906225, 29.25701693340439, 28.9889109966855, 28.702651448634985, 28.40214961505829, 28.091640237836913, 27.775681474928405, 27.459154648158272, 27.14366800663992, 26.829015735705184, 26.51736054987479, 26.210763678668652, 25.911184866605847, 25.620482373204638, 25.34041297298246, 25.072631955455925, 24.818693125140825, 24.580048801552117, 24.35804981920394, 24.153799207736032, 23.96843072887067, 23.80374788888367, 23.66147455252546, 23.543220245260443, 23.450480153267012, 23.384635123437533, 23.346951663378363, 23.33858194140983, 23.36056378656626, 23.41382068859595, 23.499161797961182, 23.61728192583822, 23.768761544117318, 23.9540667854027, 24.17310095605422, 24.424225558819497, 24.70617191059948, 25.017158173114165, 25.35480230397669, 25.71612205669337, 26.097534980663653, 26.49485842118017, 26.90330951942869, 27.317505212488143, 27.731462233330625, 28.13859711082138, 28.531838204065405, 28.90485790544642, 29.25154716749415, 29.566444400903166, 29.844922353721426, 30.083188111350275, 30.278283096544442, 30.428083069412036, 30.53129812741457, 30.58747270536692, 30.596985575437362, 30.561049847147554, 30.481733045497126, 30.362765868578162, 30.207019025282975, 30.016884035284882, 29.795131148119044, 29.54490934318249, 29.26974632973408, 28.973548546894538, 28.66060116364644, 28.335568078834203, 28.00349192116411, 27.66979070662866, 27.336080520452942, 27.002180933189393, 26.67039364251919, 26.342902179430492, 26.021771908218433, 25.708950026485137, 25.406265565139698, 25.115429388398198, 24.83803419378369, 24.575554512126224, 24.329346707562816, 24.10058204639227, 23.890698655707716, 23.701405132680364, 23.534349968337303, 23.391120301209234, 23.273241917330456, 23.182179250238864, 23.119335380975947, 23.086052038086798, 23.08360959762011, 23.11322708312817, 23.17606216566686, 23.27321116379567, 23.40570904357768, 23.574193430416805, 23.777403167053585, 24.0153774728469, 24.287803514845614, 24.59362644767597, 24.931049413541594, 25.297533542223498, 25.689797951080084, 26.103819745047133, 26.53483401663781, 26.977333845942667, 27.42507030062964, 27.87105243594405, 28.307547294708606, 28.726827061092205, 29.122399314757228, 29.487651960955578, 29.816877484865884, 30.105308964114723, 30.349120068776624, 30.54542506137407, 30.69227879687749, 30.788676722705272, 30.834554878723747, 30.830789897247207, 30.779199003037895, 30.682559041699996, 30.544550250933227, 30.367996771184455, 30.15571740630238, 29.91090449665278, 29.637123919118498, 29.338315087099453, 29.018790950512628, 28.68323799579208, 28.336716245888937, 27.984659260271393, 27.6322685706604, 27.279092354453773, 26.92654634515763, 26.576961637977476, 26.23253648214554, 25.895336280920745, 25.567293591588736, 25.250208125461857, 24.94574674787917, 24.655443478206443, 24.38069948983615, 24.122791381881623, 23.883134162215562, 23.663360374992685, 23.465091230868055, 23.289925826598438, 23.13944114504232, 23.015192055159886, 22.918711312013034, 22.851509556765375, 22.81507531668223, 22.810875005130622, 22.84035292157929, 22.90493125159868, 23.006010066860956, 23.1445802038922, 23.319525189342706, 23.531838122781988, 23.782217065457683, 24.070495414107434, 24.395641900958793, 24.755760593729377, 25.14809089562675, 25.569007545348477, 26.014020617082092, 26.477775520505123, 26.954053000785073, 27.435769138579445, 27.914975350035707, 28.38462520047641, 28.83721846062994, 29.263879557816747, 29.65694204431343, 30.00995231011526, 30.31766958293618, 30.576065928208784, 30.782326249084342, 30.934848286432796, 31.03324261884274, 31.078332662621442, 31.072154671794838, 31.017904804860898, 30.91718696904898, 30.771396049459895, 30.58321011355317, 30.3558393971852, 30.0930263046092, 29.799045408475244, 29.478703449830256, 29.137339338117997, 28.780824151179072, 28.415561135250947, 28.047710241290076, 27.676575568899732, 27.30371005237484, 26.931713063318405, 26.563017833443894, 26.199891454575173, 25.844434878646563, 25.4985829177028, 25.16410424389906, 24.842601389500942, 24.535510746884476, 24.2441721219059, 23.97011491853589, 23.714849814688353, 23.479902225564384, 23.266820986400752, 23.07717835246993, 22.912569999080066, 22.774615021575013, 22.664955935334298, 22.585258675773147, 22.53721259834247, 22.52253047852887, 22.54294851185464, 22.599676129721136, 22.692315306591546, 22.82332806720635, 22.994800527593217, 23.20798035701155, 23.46327677795251, 23.760260566139006, 24.09766405052568, 24.473381113298927, 24.88446718987689, 25.32713926890946, 25.796775892278262, 26.287917155096682, 26.794293709007253, 27.31077243900264, 27.828569830396265, 28.337394060583506, 28.827899205232274, 29.291685238283016, 29.721298031948713, 30.110229356714893, 30.452916881339604, 30.744744172853444, 30.98204069655954, 31.16208181603356, 31.282811478800227, 31.34338757437885, 31.344480781368514, 31.287675096767252, 31.175465388938015, 31.011257397608677, 30.79936773387203, 30.545023880185795, 30.254364190372605, 29.93443788962002, 29.593202303068885, 29.23526652052569, 28.86235425836991, 28.47809915276637, 28.085951739004212, 27.689179451496894, 27.290866623782193, 26.893914488522203, 26.50104117750332, 26.114781721636273, 25.7374880509561, 25.37132899462215, 25.017816385793523, 24.677693430641774, 24.352399768154594, 24.043417308314744, 23.75225125237574, 23.480430092861873, 23.229505613568193, 23.00105288956052, 22.796670287175434, 22.61797946402029, 22.4666253689732, 22.343817220395945, 22.25056776036687, 22.18969734970125, 22.163800593181797, 22.17513002706929, 22.225596119102615, 22.316767268498737, 22.44986980595271, 22.62578799363768, 22.845064025204877, 23.10789802578363, 23.414148051981343, 23.763330091883518, 24.154618065053736, 24.586680641032537, 25.055718546164737, 25.556007783815623, 26.081289294439184, 26.62479762514694, 27.179260929707937, 27.73690096854875, 28.28943310875348, 28.82806632406377, 29.343503194878767, 29.825939908255172, 30.264895381707532, 30.651822991644373, 30.98155727826351, 31.25015159731543, 31.454820516561664, 31.593939815774768, 31.667046486738336, 31.674838733246997, 31.619175971106408, 31.50307882813327, 31.330729144155313, 31.10877259335725, 30.844289251211606, 30.542001447782148, 30.206757607460094, 29.843553089407273, 29.457530187556127, 29.053978130609707, 28.638333082041687, 28.216178140096304, 27.79323387584796, 27.371589797903482, 26.951763466102868, 26.536161363382007, 26.127020113673055, 25.726406481904444, 25.33621737400086, 24.958179836883268, 24.593851058468896, 24.244618367671237, 23.911717696910962, 23.596785711772025, 23.301311650611915, 23.02666073121178, 22.774290254676714, 22.54574960543576, 22.34268025124192, 22.166815743172126, 22.019981715627274, 21.90409588633221, 21.821168056335722, 21.773300110010542, 21.762686015053365, 21.79161182248483, 21.861891770248757, 21.973254144808422, 22.128767366432534, 22.331158626424155, 22.582156190320582, 22.88248939789334, 23.23188866314818, 23.629085474325088, 24.071812393898277, 24.556803058576197, 25.079792179301517, 25.635515541251152, 26.21771000383623, 26.820426183808795, 27.434829760616918, 28.04816748523886, 28.648601948407507, 29.225269014054035, 29.76827781930791, 30.268710774496903, 30.71862356314705, 31.1110451419827, 31.43997774092649, 31.70031276481095, 31.887364961226723, 32.00011777910755, 32.039429722907435, 32.00733071264011, 31.907022083879006, 31.742876587757284, 31.520438390967815, 31.2464230757632, 30.928717639955742, 30.57638049691747, 30.196964659255137, 29.79430348478013, 29.372991456253143, 28.937419220277047, 28.491771052962314, 28.04002485992698, 27.585952176296686, 27.133118166704644, 26.68488162529166, 26.244394975706108, 25.814592003333956, 25.39624837651218, 24.989747719844928, 24.596533102306708, 24.218048553272112, 23.85573906251583, 23.51105058021266, 23.185430016937477, 22.88032524366526, 22.59718509177108, 22.337459353030113, 22.102584142070327, 21.89432323475395, 21.714712392580047, 21.56581501135082, 21.449720566543427, 21.36854461330996, 21.324428786477473, 21.31954080054796, 21.356074449698355, 21.436249607780553, 21.56231222832139, 21.736534344522642, 21.96120944439715, 22.23588896658226, 22.56090936071474, 22.937972895042304, 23.367269783597518, 23.84747818619779, 24.375764208445386, 24.9477819017274, 25.557673263215793, 26.19806823586736, 26.860084708423752, 27.533328515411455, 28.20589343714182, 28.86444271191068, 29.49704222322918, 30.09109391216475, 30.634652374359845, 31.117789758848904, 31.532595768058368, 31.873177657806675, 32.13566023730426, 32.31818586915357, 32.420914469349015, 32.44602350727704, 32.397708005716076, 32.281599511237935, 32.1011249530666, 31.86095608051867, 31.566663903004887, 31.224425865100713, 30.841025846546305, 30.42385416224651, 29.98090756227088, 29.52078923185366, 29.052707807956068, 28.58037532369468, 28.10373985352943, 27.626165932594176, 27.150693827738117, 26.680039537525786, 26.216594792237068, 25.762427053867178, 25.319279516126677, 24.888571104441475, 24.471504079953945, 24.069673600129512, 23.68426029625022, 23.31643625675018, 22.967471838073806, 22.63873566467583, 22.331694629021282, 22.047913891585498, 21.78905688085413, 21.556885293323127, 21.353259093498753, 21.180120312032372, 21.03888682592846, 20.932044603537314, 20.862563324953697, 20.833259311469234, 20.84679552557242, 20.905681570948616, 21.012273692480036, 21.16877477624577, 21.37723434952177, 21.639548580780854, 21.957460279692697, 22.332558897123853, 22.76515861231407, 23.253423642143453, 23.795561862588688, 24.388155680283127, 25.02612188359292, 25.702711642617025, 26.409510509187182, 27.13643841686794, 27.871749680956647, 28.602032998483445, 29.31253739614011, 29.989179132974947, 30.61736344516678, 31.184364294011235, 31.679728085075176, 32.09527366819675, 32.42509233748532, 32.66554783132155, 32.81527633235732, 32.87518646751581, 32.848476243685404, 32.741366759478105, 32.55980040986689, 32.309611195911515, 31.997520166403408, 31.631135417865597, 31.218952094552776, 30.770352388451272, 30.295605539279045, 29.80586783448571, 29.308600329731018, 28.802985199825876, 28.29297680841526, 27.782278580577426, 27.274160367641112, 26.771458447185548, 26.276575523040435, 25.79148072528597, 25.31770961025283, 24.85644516129849]], 'rnn_output': [[[0.29411906003952026, -0.40944865345954895, 0.045228179544210434, 0.1813124716281891, 0.38740968704223633, 0.24021793901920319, 0.22251838445663452, -0.022851064801216125, -0.1513720601797104, -0.29524946212768555], [0.40404966473579407, -0.19112826883792877, 0.14284496009349823, 0.03964334726333618, 0.4542684257030487, 0.081929050385952, 0.11672013252973557, -0.09197048842906952, -0.2879287600517273, -0.2614561915397644], [0.44282254576683044, -0.21873591840267181, 0.02436980791389942, 0.04816889017820358, 0.4995807111263275, 0.02870136685669422, 0.15283864736557007, -0.017139924690127373, -0.2548467516899109, -0.22665928304195404], [0.4310573637485504, -0.23617395758628845, 0.06991604715585709, 0.10133080929517746, 0.51610267162323, -0.06578569859266281, 0.1172279417514801, -0.0004961937083862722, -0.22686490416526794, -0.2827723026275635], [0.4254034161567688, -0.26463598012924194, 0.07486438751220703, 0.12379702180624008, 0.542272686958313, -0.06020404398441315, 0.10597269982099533, 0.017763571813702583, -0.2570112347602844, -0.2758103609085083], [0.4253436028957367, -0.278266966342926, 0.1093435063958168, 0.11069537699222565, 0.5603005290031433, -0.07144829630851746, 0.11391523480415344, 0.023360569030046463, -0.2573340833187103, -0.26868802309036255], [0.4144258499145508, -0.2851599454879761, 0.10837356746196747, 0.10902124643325806, 0.5726714134216309, -0.07841479778289795, 0.1285490095615387, 0.020896857604384422, -0.2591758668422699, -0.2779597043991089], [0.4170612096786499, -0.2843910753726959, 0.11141930520534515, 0.10303245484828949, 0.571719765663147, -0.08480066806077957, 0.1282520890235901, 0.01778149977326393, -0.2545676529407501, -0.28054046630859375], [0.41525906324386597, -0.2836840748786926, 0.1055152490735054, 0.10609657317399979, 0.5708879232406616, -0.08489787578582764, 0.1274559199810028, 0.01855573058128357, -0.25575965642929077, -0.2829310894012451], [0.41713663935661316, -0.28377240896224976, 0.10757330805063248, 0.10580258816480637, 0.569725751876831, -0.08520416915416718, 0.12515927851200104, 0.019126199185848236, -0.2549392879009247, -0.2816765308380127], [0.4159510135650635, -0.2843323349952698, 0.1068788692355156, 0.1070564016699791, 0.5705407857894897, -0.08447820693254471, 0.12566044926643372, 0.019710147753357887, -0.2561226785182953, -0.28186166286468506], [0.41647759079933167, -0.28456518054008484, 0.10832454264163971, 0.10612079501152039, 0.570704460144043, -0.08475843816995621, 0.12575480341911316, 0.01951223984360695, -0.25570276379585266, -0.28140196204185486], [0.41592657566070557, -0.28457558155059814, 0.1077057346701622, 0.10634376853704453, 0.5709818005561829, -0.08474130183458328, 0.12623931467533112, 0.019438082352280617, -0.2559463381767273, -0.28182485699653625], [0.416256308555603, -0.2844822108745575, 0.1079828068614006, 0.10602863878011703, 0.5707818865776062, -0.0849137231707573, 0.12605315446853638, 0.019320497289299965, -0.2556631565093994, -0.2817310690879822], [0.4160836338996887, -0.28445541858673096, 0.10763054341077805, 0.10626839101314545, 0.5707867741584778, -0.08482810854911804, 0.12607470154762268, 0.019384585320949554, -0.25580278038978577, -0.2818448543548584], [0.41622671484947205, -0.28445878624916077, 0.10782159864902496, 0.10617803782224655, 0.5707273483276367, -0.08485299348831177, 0.1259714514017105, 0.019387036561965942, -0.25572291016578674, -0.28174281120300293], [0.4161338806152344, -0.28448233008384705, 0.10771732032299042, 0.1062583476305008, 0.5707797408103943, -0.08481249213218689, 0.12603527307510376, 0.019420156255364418, -0.2557973861694336, -0.28177526593208313], [0.41618603467941284, -0.28448954224586487, 0.10780617594718933, 0.10619468241930008, 0.5707719922065735, -0.08484652638435364, 0.12602493166923523, 0.019408805295825005, -0.2557511329650879, -0.28174692392349243], [0.4161439836025238, -0.28449001908302307, 0.10775406658649445, 0.10622964799404144, 0.5707883238792419, -0.08484213799238205, 0.12604579329490662, 0.01940975897014141, -0.25577500462532043, -0.28178033232688904], [0.4161720871925354, -0.28448882699012756, 0.10778159648180008, 0.10620515793561935, 0.5707764029502869, -0.08485028892755508, 0.1260315328836441, 0.019407903775572777, -0.2557578682899475, -0.28176283836364746], [0.4161541163921356, -0.28448739647865295, 0.10776523500680923, 0.10622440278530121, 0.5707815289497375, -0.08484671264886856, 0.12603402137756348, 0.01940762996673584, -0.25576817989349365, -0.2817775011062622], [0.41616544127464294, -0.2844852805137634, 0.10778197646141052, 0.10621477663516998, 0.5707765817642212, -0.08484505116939545, 0.12602487206459045, 0.019402796402573586, -0.2557637095451355, -0.281769335269928], [0.416159987449646, -0.2844870686531067, 0.10776784271001816, 0.10621750354766846, 0.5707796216011047, -0.08483941853046417, 0.12603415548801422, 0.019408470019698143, -0.2557696998119354, -0.2817671298980713], [0.41616329550743103, -0.28448766469955444, 0.10777446627616882, 0.10621368885040283, 0.5707787871360779, -0.08484595268964767, 0.12603390216827393, 0.019407756626605988, -0.25576329231262207, -0.28176793456077576], [0.4161589741706848, -0.2844844460487366, 0.10777635127305984, 0.10621986538171768, 0.570778489112854, -0.08484553545713425, 0.12602798640727997, 0.019401663914322853, -0.25576531887054443, -0.28177565336227417], [0.4161631762981415, -0.28448355197906494, 0.10777601599693298, 0.1062159314751625, 0.5707764029502869, -0.08483920991420746, 0.12602683901786804, 0.01940249837934971, -0.2557675838470459, -0.2817681133747101], [0.4161613881587982, -0.28448203206062317, 0.1077779158949852, 0.10621678084135056, 0.5707764625549316, -0.0848395898938179, 0.12602700293064117, 0.01940050907433033, -0.2557665705680847, -0.2817704379558563], [0.4161628782749176, -0.2844834625720978, 0.10777270048856735, 0.10621464997529984, 0.5707764029502869, -0.08483770489692688, 0.12603065371513367, 0.019403614103794098, -0.2557673752307892, -0.281766414642334], [0.41616305708885193, -0.28448671102523804, 0.10776785761117935, 0.10621377825737, 0.5707777738571167, -0.08484166115522385, 0.1260361671447754, 0.019409311935305595, -0.25576549768447876, -0.28176525235176086], [0.4161617159843445, -0.2844890356063843, 0.10776790231466293, 0.10621610283851624, 0.5707793831825256, -0.08484743535518646, 0.12603667378425598, 0.01941087655723095, -0.25576353073120117, -0.28176915645599365], [0.4161613881587982, -0.28449001908302307, 0.10776926577091217, 0.10621759295463562, 0.5707801580429077, -0.08484871685504913, 0.12603473663330078, 0.019410988315939903, -0.25576427578926086, -0.28177040815353394], [0.41616159677505493, -0.28449133038520813, 0.10776900500059128, 0.10621703416109085, 0.5707810521125793, -0.0848483294248581, 0.12603574991226196, 0.019412657245993614, -0.25576522946357727, -0.2817687690258026], [0.4161589741706848, -0.2844853699207306, 0.10778308659791946, 0.1062208041548729, 0.57077956199646, -0.08484961837530136, 0.12602479755878448, 0.0194005835801363, -0.2557637095451355, -0.28177836537361145], [0.4161609709262848, -0.2844805419445038, 0.107782743871212, 0.10621878504753113, 0.5707763433456421, -0.08483706414699554, 0.12602047622203827, 0.01939573511481285, -0.25576967000961304, -0.2817724049091339], [0.4161651134490967, -0.2844853103160858, 0.10776766389608383, 0.10621031373739243, 0.5707768797874451, -0.08483287692070007, 0.12603576481342316, 0.01940876804292202, -0.2557699680328369, -0.2817581295967102], [0.4161606729030609, -0.2844851016998291, 0.10777446627616882, 0.10621549934148788, 0.5707780718803406, -0.08484694361686707, 0.12603411078453064, 0.01940467208623886, -0.25576159358024597, -0.2817723751068115], [0.41616091132164, -0.2844831645488739, 0.10777473449707031, 0.10621894896030426, 0.5707765221595764, -0.08484293520450592, 0.1260267049074173, 0.01940103806555271, -0.25576579570770264, -0.28177356719970703], [0.4161636531352997, -0.28448420763015747, 0.10777270048856735, 0.1062154695391655, 0.5707762837409973, -0.08483868837356567, 0.1260291039943695, 0.019405290484428406, -0.2557676434516907, -0.28176602721214294], [0.4161624014377594, -0.2844873070716858, 0.10776948928833008, 0.10621486604213715, 0.5707785487174988, -0.08484212309122086, 0.12603534758090973, 0.01940927468240261, -0.2557658851146698, -0.28176602721214294], [0.41616034507751465, -0.28448471426963806, 0.10777787119150162, 0.10621834546327591, 0.5707781314849854, -0.08484670519828796, 0.12602856755256653, 0.01940223015844822, -0.2557635009288788, -0.281774640083313], [0.41616183519363403, -0.284483402967453, 0.10777529329061508, 0.10621745884418488, 0.5707768201828003, -0.08483961969614029, 0.12602674961090088, 0.01940191723406315, -0.2557678818702698, -0.2817699611186981], [0.4161631166934967, -0.28448450565338135, 0.10777333378791809, 0.10621459037065506, 0.5707769393920898, -0.08483920991420746, 0.12603095173835754, 0.019405238330364227, -0.25576695799827576, -0.2817661166191101], [0.4161608815193176, -0.2844828963279724, 0.1077774316072464, 0.10621725767850876, 0.5707769393920898, -0.0848425105214119, 0.12602819502353668, 0.019400985911488533, -0.25576499104499817, -0.28177234530448914], [0.4161626696586609, -0.2844834327697754, 0.10777305066585541, 0.10621575266122818, 0.5707763433456421, -0.08483855426311493, 0.12602925300598145, 0.019403204321861267, -0.25576746463775635, -0.28176772594451904], [0.4161633849143982, -0.28448688983917236, 0.10776792466640472, 0.10621371865272522, 0.5707778334617615, -0.08484101295471191, 0.12603576481342316, 0.019409744068980217, -0.2557660937309265, -0.281764417886734], [0.4161607027053833, -0.28448641300201416, 0.10777398198843002, 0.1062176376581192, 0.5707786083221436, -0.08484745770692825, 0.12603192031383514, 0.019405722618103027, -0.25576314330101013, -0.28177282214164734], [0.4161617159843445, -0.2844863533973694, 0.10777232050895691, 0.10621753334999084, 0.5707781910896301, -0.08484324812889099, 0.12603026628494263, 0.019405968487262726, -0.2557665705680847, -0.28176987171173096], [0.41616156697273254, -0.28448450565338135, 0.10777744650840759, 0.10621730238199234, 0.5707777142524719, -0.08484318852424622, 0.12602783739566803, 0.01940310001373291, -0.2557656764984131, -0.28177112340927124], [0.4161602556705475, -0.284479558467865, 0.10778402537107468, 0.10621917247772217, 0.5707758069038391, -0.08483981341123581, 0.12602093815803528, 0.019394677132368088, -0.25576674938201904, -0.28177502751350403], [0.41616329550743103, -0.2844785749912262, 0.10777844488620758, 0.1062149703502655, 0.5707739591598511, -0.0848316177725792, 0.12602367997169495, 0.01939677819609642, -0.25576990842819214, -0.28176653385162354], [0.4161636233329773, -0.2844805419445038, 0.10777371376752853, 0.10621287673711777, 0.5707745552062988, -0.08483429253101349, 0.12603020668029785, 0.019401440396904945, -0.25576719641685486, -0.2817647457122803], [0.4161616861820221, -0.28447967767715454, 0.10777710378170013, 0.10621646046638489, 0.570774495601654, -0.08483939617872238, 0.12602683901786804, 0.019398139789700508, -0.2557646632194519, -0.28177177906036377], [0.4161619246006012, -0.2844763994216919, 0.10778176039457321, 0.10621843487024307, 0.570772647857666, -0.08483582735061646, 0.12601947784423828, 0.019392920657992363, -0.25576698780059814, -0.281773179769516], [0.4161631166934967, -0.28447383642196655, 0.1077834963798523, 0.10621684044599533, 0.5707711577415466, -0.08482971042394638, 0.12601745128631592, 0.01939074508845806, -0.2557693123817444, -0.28176960349082947], [0.41616448760032654, -0.28447604179382324, 0.1077762320637703, 0.10621307045221329, 0.5707716345787048, -0.08482732623815536, 0.12602514028549194, 0.019396241754293442, -0.2557696998119354, -0.28176334500312805], [0.4161640405654907, -0.2844797968864441, 0.10777124017477036, 0.10621251165866852, 0.5707734227180481, -0.08483390510082245, 0.12603171169757843, 0.019401783123612404, -0.2557661235332489, -0.2817642390727997], [0.4161628782749176, -0.2844826281070709, 0.1077696830034256, 0.1062152087688446, 0.570775032043457, -0.08484011143445969, 0.12603230774402618, 0.019404329359531403, -0.25576451420783997, -0.2817680537700653], [0.4161614179611206, -0.2844802141189575, 0.10777901858091354, 0.10621927678585052, 0.5707746148109436, -0.08484216779470444, 0.12602344155311584, 0.01939801312983036, -0.2557644546031952, -0.28177449107170105], [0.41616305708885193, -0.28448060154914856, 0.10777567327022552, 0.1062169149518013, 0.5707746148109436, -0.08483463525772095, 0.12602466344833374, 0.019400017336010933, -0.25576916337013245, -0.2817673981189728], [0.41616272926330566, -0.28448012471199036, 0.1077788844704628, 0.10621540248394012, 0.5707748532295227, -0.08483663201332092, 0.12602604925632477, 0.019398996606469154, -0.2557666599750519, -0.28176847100257874], [0.41616225242614746, -0.2844805121421814, 0.10777529329061508, 0.10621557384729385, 0.570775032043457, -0.08483604341745377, 0.12602776288986206, 0.01939958520233631, -0.25576725602149963, -0.2817683517932892], [0.41616344451904297, -0.2844822108745575, 0.10777232050895691, 0.10621421784162521, 0.5707752108573914, -0.08483752608299255, 0.12603050470352173, 0.01940319687128067, -0.2557663917541504, -0.28176626563072205], [0.41616228222846985, -0.28448358178138733, 0.10777218639850616, 0.1062159612774849, 0.5707762241363525, -0.0848410427570343, 0.1260310560464859, 0.019404254853725433, -0.25576522946357727, -0.28176888823509216], [0.41616159677505493, -0.2844821512699127, 0.10777711868286133, 0.10621795058250427, 0.5707759261131287, -0.0848417654633522, 0.1260262280702591, 0.01940053142607212, -0.25576531887054443, -0.2817722260951996], [0.41616111993789673, -0.2844773232936859, 0.10778480768203735, 0.1062193438410759, 0.5707740187644958, -0.08483736962080002, 0.12601833045482635, 0.019392697140574455, -0.25576716661453247, -0.2817745804786682], [0.41616201400756836, -0.2844715416431427, 0.10778968036174774, 0.10621806234121323, 0.5707708597183228, -0.08482898771762848, 0.12601278722286224, 0.0193854421377182, -0.255769819021225, -0.28177276253700256], [0.4161633849143982, -0.2844671308994293, 0.10778988897800446, 0.10621542483568192, 0.5707679390907288, -0.08482182025909424, 0.12601186335086823, 0.019381726160645485, -0.25577104091644287, -0.28176936507225037], [0.4161635637283325, -0.2844623029232025, 0.10779233276844025, 0.10621513426303864, 0.57076495885849, -0.08481864631175995, 0.1260087788105011, 0.01937621459364891, -0.2557702362537384, -0.28177061676979065], [0.4161660075187683, -0.28446295857429504, 0.10778302699327469, 0.10621213912963867, 0.5707636475563049, -0.08481357991695404, 0.12601390480995178, 0.019381070509552956, -0.2557719349861145, -0.28176331520080566], [0.41616737842559814, -0.28446969389915466, 0.10777156800031662, 0.10620938986539841, 0.5707659721374512, -0.08481908589601517, 0.12602604925632477, 0.01939341053366661, -0.2557689845561981, -0.28175821900367737], [0.4161648154258728, -0.2844756245613098, 0.10776941478252411, 0.10621315985918045, 0.570769727230072, -0.08483172208070755, 0.12603001296520233, 0.019399011507630348, -0.2557644248008728, -0.2817649245262146], [0.4161638617515564, -0.28447961807250977, 0.1077696681022644, 0.10621634125709534, 0.5707722902297974, -0.08483704924583435, 0.12602879106998444, 0.019401969388127327, -0.2557649314403534, -0.28176775574684143], [0.4161633253097534, -0.284481942653656, 0.10777250677347183, 0.10621721297502518, 0.570774495601654, -0.0848391205072403, 0.12602795660495758, 0.019403353333473206, -0.25576579570770264, -0.2817682921886444], [0.4161633551120758, -0.28448617458343506, 0.1077684760093689, 0.10621538758277893, 0.5707772374153137, -0.08483985811471939, 0.12603367865085602, 0.019408775493502617, -0.2557668089866638, -0.2817648649215698], [0.41616129875183105, -0.28448596596717834, 0.1077747642993927, 0.1062171533703804, 0.5707783699035645, -0.08484581857919693, 0.12603136897087097, 0.01940552145242691, -0.25576382875442505, -0.2817714512348175], [0.41616150736808777, -0.284485787153244, 0.10777302086353302, 0.1062173843383789, 0.5707781910896301, -0.0848427563905716, 0.12603026628494263, 0.01940513402223587, -0.25576651096343994, -0.2817700505256653], [0.4161618649959564, -0.284484326839447, 0.10777672380208969, 0.10621681064367294, 0.570777416229248, -0.08484256267547607, 0.12602828443050385, 0.0194031223654747, -0.255765825510025, -0.2817704975605011], [0.4161623418331146, -0.2844860255718231, 0.10777077078819275, 0.10621534287929535, 0.5707780718803406, -0.08484027534723282, 0.12603271007537842, 0.019406825304031372, -0.255767285823822, -0.2817665934562683], [0.4161618947982788, -0.28448620438575745, 0.10777334868907928, 0.10621575266122818, 0.5707782506942749, -0.08484455943107605, 0.1260325014591217, 0.019406244158744812, -0.2557644546031952, -0.28176960349082947], [0.4161619246006012, -0.2844882309436798, 0.10776820778846741, 0.10621597617864609, 0.5707790851593018, -0.08484397083520889, 0.12603507936000824, 0.01940968446433544, -0.25576597452163696, -0.2817676365375519], [0.4161621332168579, -0.284490168094635, 0.10776866227388382, 0.10621567815542221, 0.5707800984382629, -0.08484755456447601, 0.12603658437728882, 0.019412001594901085, -0.2557642459869385, -0.2817680537700653], [0.4161607325077057, -0.28449082374572754, 0.10776969790458679, 0.10621759295463562, 0.5707810521125793, -0.08484958857297897, 0.126035675406456, 0.01941140554845333, -0.2557642459869385, -0.28177082538604736], [0.4161613881587982, -0.28449147939682007, 0.10776962339878082, 0.10621694475412369, 0.5707813501358032, -0.08484894037246704, 0.1260356605052948, 0.01941223256289959, -0.25576502084732056, -0.28176939487457275], [0.4161604046821594, -0.28449001908302307, 0.10777368396520615, 0.10621802508831024, 0.5707812309265137, -0.08484961837530136, 0.1260330229997635, 0.01940910331904888, -0.25576454401016235, -0.2817722260951996], [0.4161607027053833, -0.28448811173439026, 0.1077749952673912, 0.10621783137321472, 0.5707801580429077, -0.08484632521867752, 0.12603068351745605, 0.019406430423259735, -0.25576597452163696, -0.28177163004875183], [0.41616174578666687, -0.28448787331581116, 0.1077728196978569, 0.10621591657400131, 0.5707796216011047, -0.08484379947185516, 0.12603257596492767, 0.019407637417316437, -0.2557666003704071, -0.28176844120025635], [0.41616037487983704, -0.2844843864440918, 0.10777931660413742, 0.10621792078018188, 0.5707783102989197, -0.0848451480269432, 0.12602746486663818, 0.019401418045163155, -0.25576481223106384, -0.2817739248275757], [0.4161613881587982, -0.2844814658164978, 0.10777907818555832, 0.10621759295463562, 0.5707762241363525, -0.08483872562646866, 0.1260242909193039, 0.019398408010601997, -0.2557677924633026, -0.2817714810371399], [0.41616278886795044, -0.2844802737236023, 0.10777813196182251, 0.10621526837348938, 0.570775032043457, -0.08483577519655228, 0.12602561712265015, 0.019398892298340797, -0.2557678520679474, -0.2817680239677429], [0.41616249084472656, -0.284480482339859, 0.10777588188648224, 0.10621505975723267, 0.5707749724388123, -0.08483627438545227, 0.12602782249450684, 0.019399764016270638, -0.25576698780059814, -0.2817680537700653], [0.4161625802516937, -0.28448042273521423, 0.10777577757835388, 0.10621558874845505, 0.5707746148109436, -0.08483751863241196, 0.1260274052619934, 0.019399674609303474, -0.25576621294021606, -0.2817690968513489], [0.41616204380989075, -0.28447872400283813, 0.10777889937162399, 0.10621718317270279, 0.5707738995552063, -0.08483728021383286, 0.12602367997169495, 0.01939668133854866, -0.2557663917541504, -0.28177136182785034], [0.41616225242614746, -0.284475713968277, 0.10778283327817917, 0.10621759295463562, 0.5707724690437317, -0.08483373373746872, 0.1260192096233368, 0.019392339512705803, -0.25576773285865784, -0.2817716896533966], [0.41616368293762207, -0.28447556495666504, 0.10777921229600906, 0.10621494054794312, 0.5707718133926392, -0.08482912182807922, 0.12602199614048004, 0.0193941630423069, -0.2557694613933563, -0.28176650404930115], [0.4161645770072937, -0.28447967767715454, 0.10777103900909424, 0.10621210187673569, 0.5707733035087585, -0.08483146876096725, 0.12603101134300232, 0.01940190978348255, -0.2557678520679474, -0.2817623019218445], [0.416162371635437, -0.28448083996772766, 0.10777389258146286, 0.10621549934148788, 0.5707745552062988, -0.08483996242284775, 0.12602992355823517, 0.019401120021939278, -0.2557639181613922, -0.28176987171173096], [0.41616177558898926, -0.2844790518283844, 0.10777808725833893, 0.10621856898069382, 0.5707738995552063, -0.08483889698982239, 0.1260230839252472, 0.019396912306547165, -0.2557659149169922, -0.2817729413509369], [0.4161623418331146, -0.2844754457473755, 0.10778424888849258, 0.1062183603644371, 0.5707722902297974, -0.08483374863862991, 0.12601733207702637, 0.01939178816974163, -0.2557680606842041, -0.2817721664905548], [0.41616395115852356, -0.2844763398170471, 0.10777802020311356, 0.10621439665555954, 0.5707722306251526, -0.08482801914215088, 0.12602320313453674, 0.019395533949136734, -0.2557702958583832, -0.2817647457122803], [0.41616278886795044, -0.2844749987125397, 0.1077817752957344, 0.10621488094329834, 0.5707718729972839, -0.08483266830444336, 0.12602269649505615, 0.019392726942896843, -0.2557663917541504, -0.28176963329315186], [0.4161619544029236, -0.28447094559669495, 0.10778551548719406, 0.10621780157089233, 0.5707697868347168, -0.08483017981052399, 0.1260155737400055, 0.019386127591133118, -0.25576773285865784, -0.28177353739738464], [0.41616424918174744, -0.2844683527946472, 0.10778551548719406, 0.10621576756238937, 0.5707675814628601, -0.08482334017753601, 0.12601348757743835, 0.01938486099243164, -0.2557702660560608, -0.2817685306072235], [0.41616424918174744, -0.28446701169013977, 0.10778556019067764, 0.10621469467878342, 0.570766806602478, -0.08482161909341812, 0.1260146051645279, 0.019384123384952545, -0.255769819021225, -0.28176748752593994], [0.41616398096084595, -0.28446489572525024, 0.10778731107711792, 0.1062152087688446, 0.5707656145095825, -0.08482097834348679, 0.1260126233100891, 0.01938091404736042, -0.2557692229747772, -0.28176936507225037], [0.41616687178611755, -0.2844702899456024, 0.10777277499437332, 0.10621076077222824, 0.570766806602478, -0.0848182886838913, 0.12602370977401733, 0.01939261518418789, -0.25577113032341003, -0.2817588448524475], [0.41616445779800415, -0.2844730019569397, 0.1077764704823494, 0.10621349513530731, 0.5707690119743347, -0.084830641746521, 0.12602514028549194, 0.019394058734178543, -0.2557646334171295, -0.28176698088645935], [0.4161628782749176, -0.28447332978248596, 0.10777796059846878, 0.10621766746044159, 0.570769727230072, -0.08483153581619263, 0.1260203868150711, 0.019391847774386406, -0.25576671957969666, -0.2817710340023041], [0.41616421937942505, -0.28447264432907104, 0.10778140276670456, 0.10621656477451324, 0.5707694292068481, -0.08482886850833893, 0.12601777911186218, 0.019391072914004326, -0.2557683289051056, -0.2817685604095459], [0.41616398096084595, -0.28447386622428894, 0.10777880996465683, 0.10621507465839386, 0.5707704424858093, -0.08482736349105835, 0.1260215938091278, 0.01939321681857109, -0.25576919317245483, -0.28176599740982056], [0.41616350412368774, -0.2844736576080322, 0.10778076946735382, 0.10621502995491028, 0.5707706212997437, -0.08483010530471802, 0.12602153420448303, 0.019391914829611778, -0.25576722621917725, -0.2817685008049011], [0.4161635935306549, -0.2844740152359009, 0.10777811706066132, 0.10621523857116699, 0.5707705616950989, -0.08482929319143295, 0.1260220855474472, 0.01939292810857296, -0.25576815009117126, -0.28176769614219666], [0.4161645174026489, -0.2844763994216919, 0.10777470469474792, 0.10621389746665955, 0.570771336555481, -0.08483047038316727, 0.1260257214307785, 0.019397292286157608, -0.2557676434516907, -0.28176507353782654], [0.4161624014377594, -0.284475177526474, 0.10778066515922546, 0.10621704906225204, 0.5707716345787048, -0.08483465760946274, 0.1260216236114502, 0.019393164664506912, -0.2557657063007355, -0.2817716598510742], [0.41616305708885193, -0.2844736874103546, 0.10778144747018814, 0.10621713846921921, 0.5707706809043884, -0.0848301351070404, 0.1260184496641159, 0.01939096860587597, -0.2557685971260071, -0.2817700505256653], [0.41616350412368774, -0.2844714820384979, 0.10778455436229706, 0.10621605813503265, 0.5707696676254272, -0.08482778817415237, 0.1260167807340622, 0.019388457760214806, -0.255768746137619, -0.2817693054676056], [0.41616353392601013, -0.2844701111316681, 0.10778377950191498, 0.10621538758277893, 0.5707688331604004, -0.08482509851455688, 0.1260169893503189, 0.019387103617191315, -0.25576940178871155, -0.28176844120025635], [0.41616567969322205, -0.2844741940498352, 0.10777333378791809, 0.10621156543493271, 0.570769727230072, -0.08482444286346436, 0.12602607905864716, 0.01939588412642479, -0.25576961040496826, -0.281761109828949], [0.4161640703678131, -0.2844778597354889, 0.10777203738689423, 0.10621327906847, 0.5707719922065735, -0.08483394235372543, 0.12602995336055756, 0.019399890676140785, -0.25576502084732056, -0.28176575899124146], [0.41616180539131165, -0.28447628021240234, 0.10777945816516876, 0.10621865093708038, 0.5707720518112183, -0.08483772724866867, 0.12602166831493378, 0.019393961876630783, -0.2557646930217743, -0.28177401423454285], [0.41616392135620117, -0.2844766676425934, 0.10777713358402252, 0.10621665418148041, 0.5707717537879944, -0.08483096957206726, 0.12602150440216064, 0.01939598098397255, -0.2557692527770996, -0.28176721930503845], [0.41616421937942505, -0.2844794988632202, 0.10777419060468674, 0.10621377825737, 0.5707734823226929, -0.08483259379863739, 0.12602822482585907, 0.019400903955101967, -0.2557677924633026, -0.28176406025886536], [0.41616302728652954, -0.28448307514190674, 0.10777009278535843, 0.10621412843465805, 0.5707756876945496, -0.08483809977769852, 0.12603333592414856, 0.019404850900173187, -0.25576573610305786, -0.2817658483982086], [0.4161626100540161, -0.28448542952537537, 0.1077694296836853, 0.10621554404497147, 0.5707769393920898, -0.0848429948091507, 0.1260336935520172, 0.019407041370868683, -0.2557643949985504, -0.28176820278167725], [0.4161618649959564, -0.2844863533973694, 0.10777122527360916, 0.1062173843383789, 0.5707778334617615, -0.08484487235546112, 0.1260318011045456, 0.01940707117319107, -0.25576475262641907, -0.28177013993263245], [0.41616198420524597, -0.2844873368740082, 0.10777164250612259, 0.10621701925992966, 0.5707786679267883, -0.08484425395727158, 0.1260319948196411, 0.019407911226153374, -0.255765825510025, -0.28176894783973694], [0.41616183519363403, -0.2844885587692261, 0.10777093470096588, 0.1062161773443222, 0.5707796216011047, -0.08484502136707306, 0.12603411078453064, 0.019409408792853355, -0.2557656466960907, -0.28176823258399963], [0.4161604940891266, -0.2844863533973694, 0.10777663439512253, 0.10621807724237442, 0.5707792043685913, -0.08484673500061035, 0.12602971494197845, 0.01940438151359558, -0.25576451420783997, -0.2817732095718384], [0.4161621034145355, -0.2844870090484619, 0.10777124017477036, 0.10621600598096848, 0.5707787275314331, -0.0848417803645134, 0.12603208422660828, 0.019407249987125397, -0.25576749444007874, -0.28176745772361755], [0.41616344451904297, -0.28449252247810364, 0.10776259750127792, 0.10621258616447449, 0.570780873298645, -0.08484505116939545, 0.1260424703359604, 0.019417177885770798, -0.25576555728912354, -0.28176212310791016], [0.4161602258682251, -0.2844942808151245, 0.10776644200086594, 0.1062169298529625, 0.5707830190658569, -0.08485537022352219, 0.12604133784770966, 0.019416090101003647, -0.25576120615005493, -0.28177163004875183], [0.41615939140319824, -0.2844913899898529, 0.10777345299720764, 0.10622061789035797, 0.570781946182251, -0.08485407382249832, 0.12603186070919037, 0.01940946839749813, -0.255763441324234, -0.2817761301994324], [0.416160523891449, -0.28448745608329773, 0.10777854919433594, 0.10621953755617142, 0.5707800388336182, -0.08484645187854767, 0.1260264664888382, 0.019404597580432892, -0.2557668089866638, -0.28177326917648315], [0.4161626696586609, -0.28448984026908875, 0.10776926577091217, 0.10621403157711029, 0.5707805156707764, -0.08484107255935669, 0.12603595852851868, 0.019411375746130943, -0.2557685971260071, -0.28176361322402954], [0.4161601662635803, -0.28448763489723206, 0.10777644068002701, 0.10621647536754608, 0.5707802772521973, -0.08484902232885361, 0.12603314220905304, 0.019405901432037354, -0.25576284527778625, -0.2817731201648712], [0.416159987449646, -0.2844833731651306, 0.10777876526117325, 0.1062193363904953, 0.5707777142524719, -0.08484383672475815, 0.12602511048316956, 0.019399428740143776, -0.2557661235332489, -0.28177517652511597], [0.4161638021469116, -0.28448486328125, 0.10777141898870468, 0.10621415823698044, 0.5707768797874451, -0.08483710885047913, 0.12603074312210083, 0.019406095147132874, -0.2557688057422638, -0.28176403045654297], [0.41616177558898926, -0.2844860255718231, 0.10777273029088974, 0.10621513426303864, 0.5707782506942749, -0.08484349399805069, 0.1260337382555008, 0.019406668841838837, -0.25576457381248474, -0.2817685306072235], [0.4161609709262848, -0.2844851016998291, 0.1077742725610733, 0.10621753334999084, 0.5707778930664062, -0.08484434336423874, 0.1260301023721695, 0.019403740763664246, -0.25576499104499817, -0.28177207708358765], [0.4161624610424042, -0.2844853103160858, 0.10777262598276138, 0.10621623694896698, 0.570777416229248, -0.08484151214361191, 0.12603026628494263, 0.019405528903007507, -0.2557666599750519, -0.2817682921886444], [0.4161621034145355, -0.28448641300201416, 0.1077721118927002, 0.10621588677167892, 0.5707782506942749, -0.08484284579753876, 0.1260325014591217, 0.01940702646970749, -0.25576579570770264, -0.28176817297935486], [0.4161610007286072, -0.28448495268821716, 0.10777601599693298, 0.10621750354766846, 0.5707780122756958, -0.08484438806772232, 0.12602931261062622, 0.019403457641601562, -0.25576502084732056, -0.28177204728126526], [0.4161619544029236, -0.2844844162464142, 0.10777449607849121, 0.10621671378612518, 0.5707773566246033, -0.08484086394309998, 0.1260288953781128, 0.019403547048568726, -0.25576695799827576, -0.281769335269928], [0.4161624014377594, -0.28448486328125, 0.10777357220649719, 0.10621549934148788, 0.570777416229248, -0.08484098315238953, 0.12603087723255157, 0.019404999911785126, -0.255766361951828, -0.28176793456077576], [0.4161622226238251, -0.2844867408275604, 0.10777013748884201, 0.10621525347232819, 0.5707783102989197, -0.08484251797199249, 0.12603415548801422, 0.019407888874411583, -0.25576579570770264, -0.281767338514328], [0.4161624610424042, -0.2844898998737335, 0.10776650160551071, 0.10621488094329834, 0.5707796812057495, -0.08484582602977753, 0.12603794038295746, 0.019412456080317497, -0.25576478242874146, -0.28176650404930115], [0.41616109013557434, -0.28449124097824097, 0.10776841640472412, 0.10621703416109085, 0.5707809925079346, -0.08485041558742523, 0.12603700160980225, 0.019412590190768242, -0.25576338171958923, -0.28177037835121155], [0.41616058349609375, -0.28449052572250366, 0.10777179896831512, 0.10621852427721024, 0.5707810521125793, -0.08485012501478195, 0.12603336572647095, 0.01941014640033245, -0.2557644248008728, -0.2817721664905548], [0.4161624610424042, -0.2844943404197693, 0.10776381939649582, 0.1062149703502655, 0.570782482624054, -0.08484744280576706, 0.12604062259197235, 0.019417667761445045, -0.25576648116111755, -0.2817643880844116], [0.4161607325077057, -0.2844965159893036, 0.1077658087015152, 0.10621590167284012, 0.5707844495773315, -0.08485537767410278, 0.12604303658008575, 0.019418926909565926, -0.2557622194290161, -0.2817692160606384], [0.41615912318229675, -0.2844952344894409, 0.10776951909065247, 0.1062193214893341, 0.570784330368042, -0.084856778383255, 0.12603773176670074, 0.019414681941270828, -0.25576284527778625, -0.2817744016647339], [0.41616091132164, -0.28449511528015137, 0.10776835680007935, 0.10621753334999084, 0.570783793926239, -0.08485240489244461, 0.12603740394115448, 0.019415881484746933, -0.2557653784751892, -0.28176966309547424], [0.41615983843803406, -0.2844933867454529, 0.10777292400598526, 0.10621806234121323, 0.5707836151123047, -0.0848531723022461, 0.12603561580181122, 0.019412605091929436, -0.25576409697532654, -0.2817723751068115], [0.41616106033325195, -0.28449496626853943, 0.10776641219854355, 0.10621588677167892, 0.5707837343215942, -0.08484996110200882, 0.12603995203971863, 0.019416306167840958, -0.25576600432395935, -0.2817673981189728], [0.41615939140319824, -0.2844913899898529, 0.10777588188648224, 0.10621841996908188, 0.5707826018333435, -0.08485428243875504, 0.12603358924388885, 0.019409304484725, -0.2557624876499176, -0.28177523612976074], [0.4161607325077057, -0.2844909131526947, 0.10777033120393753, 0.10621753334999084, 0.5707815289497375, -0.08484683185815811, 0.12603390216827393, 0.01941034011542797, -0.2557671070098877, -0.2817697525024414], [0.4161621034145355, -0.28449204564094543, 0.1077691912651062, 0.10621476173400879, 0.5707817077636719, -0.08484811335802078, 0.12603777647018433, 0.019413720816373825, -0.25576505064964294, -0.28176695108413696], [0.41615980863571167, -0.28449147939682007, 0.10777109861373901, 0.1062176525592804, 0.5707821249961853, -0.08485132455825806, 0.12603619694709778, 0.01941109262406826, -0.2557637095451355, -0.28177234530448914], [0.41616103053092957, -0.2844907343387604, 0.10777129977941513, 0.10621735453605652, 0.5707812309265137, -0.08484894037246704, 0.12603405117988586, 0.01941036246716976, -0.2557651400566101, -0.2817707359790802], [0.41616126894950867, -0.28449106216430664, 0.10777022689580917, 0.10621654987335205, 0.570781409740448, -0.08484794944524765, 0.12603551149368286, 0.01941174827516079, -0.25576549768447876, -0.2817689776420593], [0.41616031527519226, -0.2844892740249634, 0.10777463018894196, 0.10621780157089233, 0.570780873298645, -0.08484913408756256, 0.1260325014591217, 0.019407911226153374, -0.255764365196228, -0.28177255392074585], [0.41616153717041016, -0.2844898998737335, 0.1077699139714241, 0.10621620714664459, 0.5707805752754211, -0.08484536409378052, 0.1260347217321396, 0.019410310313105583, -0.2557666301727295, -0.28176814317703247], [0.4161613881587982, -0.2844898998737335, 0.10777159780263901, 0.10621604323387146, 0.5707807540893555, -0.08484805375337601, 0.1260351687669754, 0.0194102730602026, -0.2557643949985504, -0.28176963329315186], [0.4161606729030609, -0.28448954224586487, 0.10777146369218826, 0.10621736943721771, 0.5707806348800659, -0.08484791964292526, 0.1260339915752411, 0.019409185275435448, -0.25576502084732056, -0.2817710340023041], [0.41616129875183105, -0.28448864817619324, 0.10777302086353302, 0.10621706396341324, 0.5707800388336182, -0.0848468542098999, 0.12603238224983215, 0.019408194348216057, -0.25576528906822205, -0.2817705273628235], [0.41616150736808777, -0.28448930382728577, 0.10777069628238678, 0.10621629655361176, 0.5707802772521973, -0.08484560996294022, 0.12603436410427094, 0.019409796223044395, -0.25576597452163696, -0.2817685604095459], [0.416160523891449, -0.28448688983917236, 0.10777664929628372, 0.10621784627437592, 0.5707794427871704, -0.08484728634357452, 0.12603013217449188, 0.019404970109462738, -0.2557643949985504, -0.28177306056022644], [0.4161624014377594, -0.2844892144203186, 0.10776767879724503, 0.10621516406536102, 0.5707796812057495, -0.08484240621328354, 0.12603552639484406, 0.019410764798521996, -0.2557676434516907, -0.28176555037498474], [0.4161624014377594, -0.2844926416873932, 0.10776551067829132, 0.10621397197246552, 0.5707814693450928, -0.08484875410795212, 0.12604115903377533, 0.01941598579287529, -0.25576382875442505, -0.28176575899124146], [0.41616013646125793, -0.2844940721988678, 0.10776647180318832, 0.10621756315231323, 0.5707829594612122, -0.08485401421785355, 0.12603993713855743, 0.019415434449911118, -0.25576260685920715, -0.2817714512348175], [0.4161604642868042, -0.28449323773384094, 0.10777024179697037, 0.10621865093708038, 0.5707826018333435, -0.08485337346792221, 0.12603545188903809, 0.01941319927573204, -0.25576382875442505, -0.2817724049091339], [0.41616079211235046, -0.28449326753616333, 0.10776989907026291, 0.10621766746044159, 0.5707828402519226, -0.08485046774148941, 0.12603595852851868, 0.019413728266954422, -0.25576555728912354, -0.2817698121070862], [0.41616013646125793, -0.28449150919914246, 0.10777399688959122, 0.10621772706508636, 0.5707824230194092, -0.08485082536935806, 0.12603411078453064, 0.01941034011542797, -0.25576454401016235, -0.28177204728126526], [0.41616079211235046, -0.28449106216430664, 0.10777115076780319, 0.10621671378612518, 0.5707817673683167, -0.08484769612550735, 0.12603504955768585, 0.019410645589232445, -0.25576600432395935, -0.28176966309547424], [0.4161612093448639, -0.2844908833503723, 0.10777099430561066, 0.10621599107980728, 0.570781409740448, -0.08484850823879242, 0.12603583931922913, 0.01941114477813244, -0.25576484203338623, -0.28176945447921753], [0.41616079211235046, -0.2844909727573395, 0.10777009278535843, 0.10621679574251175, 0.570781409740448, -0.08484895527362823, 0.1260358989238739, 0.019411271438002586, -0.25576478242874146, -0.2817701995372772], [0.4161612391471863, -0.2844914197921753, 0.10776962339878082, 0.10621656477451324, 0.570781409740448, -0.08484908938407898, 0.1260361224412918, 0.01941211335361004, -0.25576478242874146, -0.2817695438861847], [0.41615983843803406, -0.2844882607460022, 0.10777664929628372, 0.10621899366378784, 0.5707805156707764, -0.08484965562820435, 0.1260301023721695, 0.01940596103668213, -0.2557641863822937, -0.2817745804786682], [0.41616153717041016, -0.2844875454902649, 0.10777337849140167, 0.1062169149518013, 0.5707794427871704, -0.08484309911727905, 0.12603074312210083, 0.01940663903951645, -0.2557675242424011, -0.2817690372467041], [0.4161624014377594, -0.28448933362960815, 0.10776957869529724, 0.1062142476439476, 0.5707800388336182, -0.08484410494565964, 0.1260363906621933, 0.019410980865359306, -0.25576600432395935, -0.281765878200531], [0.4161608815193176, -0.28449028730392456, 0.10776962339878082, 0.10621616244316101, 0.5707808136940002, -0.08484882116317749, 0.12603695690631866, 0.01941094361245632, -0.25576379895210266, -0.28177011013031006], [0.41616159677505493, -0.28449198603630066, 0.10776664316654205, 0.10621631145477295, 0.5707812905311584, -0.08484907448291779, 0.1260378360748291, 0.019413720816373825, -0.2557646930217743, -0.2817685306072235], [0.4161607027053833, -0.284491628408432, 0.10777100920677185, 0.1062178760766983, 0.5707816481590271, -0.08485157787799835, 0.12603525817394257, 0.01941191963851452, -0.25576359033584595, -0.2817716896533966], [0.41616091132164, -0.28449222445487976, 0.10776932537555695, 0.10621742904186249, 0.5707820057868958, -0.08484912663698196, 0.1260359287261963, 0.019412774592638016, -0.2557656168937683, -0.2817695736885071], [0.416161447763443, -0.28449374437332153, 0.10776776820421219, 0.10621576756238937, 0.5707827806472778, -0.0848502442240715, 0.1260390430688858, 0.019415389746427536, -0.25576478242874146, -0.2817678451538086], [0.4161602556705475, -0.2844941020011902, 0.10776860266923904, 0.10621712356805801, 0.5707833766937256, -0.08485311269760132, 0.12603889405727386, 0.01941480115056038, -0.25576359033584595, -0.28177088499069214], [0.416159063577652, -0.2844892740249634, 0.10777820646762848, 0.10622024536132812, 0.5707814693450928, -0.08485249429941177, 0.12602919340133667, 0.01940573751926422, -0.2557636499404907, -0.2817770540714264], [0.41616079211235046, -0.2844856381416321, 0.10777831077575684, 0.10621852427721024, 0.570779025554657, -0.084842748939991, 0.12602603435516357, 0.019402610138058662, -0.2557681202888489, -0.28177183866500854], [0.41616296768188477, -0.2844870388507843, 0.10777178406715393, 0.10621364414691925, 0.5707789063453674, -0.08483962714672089, 0.12603363394737244, 0.019407933577895164, -0.2557680010795593, -0.2817644476890564], [0.41616055369377136, -0.284485399723053, 0.10777613520622253, 0.1062164157629013, 0.5707786679267883, -0.08484569936990738, 0.12603150308132172, 0.019403785467147827, -0.25576382875442505, -0.28177234530448914], [0.4161613881587982, -0.28448382019996643, 0.10777503997087479, 0.1062174141407013, 0.5707771182060242, -0.08484181761741638, 0.1260279268026352, 0.01940205879509449, -0.2557664215564728, -0.28177136182785034], [0.4161635637283325, -0.2844867408275604, 0.10776855051517487, 0.10621403157711029, 0.5707777142524719, -0.08483986556529999, 0.12603417038917542, 0.01940917782485485, -0.25576722621917725, -0.28176406025886536], [0.4161619246006012, -0.28448987007141113, 0.10776755958795547, 0.10621502995491028, 0.5707799196243286, -0.08484679460525513, 0.1260383129119873, 0.01941225491464138, -0.2557638883590698, -0.2817673683166504], [0.4161601662635803, -0.2844884991645813, 0.10777334868907928, 0.10621872544288635, 0.5707799792289734, -0.0848500207066536, 0.1260322630405426, 0.019407376646995544, -0.25576329231262207, -0.28177404403686523], [0.41616109013557434, -0.28448614478111267, 0.10777610540390015, 0.10621872544288635, 0.5707786679267883, -0.08484476804733276, 0.12602756917476654, 0.019404232501983643, -0.2557664215564728, -0.281772255897522], [0.41616255044937134, -0.284487247467041, 0.1077718585729599, 0.10621526837348938, 0.5707789063453674, -0.08484116941690445, 0.1260325312614441, 0.019408008083701134, -0.2557676434516907, -0.2817660868167877], [0.41616109013557434, -0.2844865620136261, 0.10777483880519867, 0.10621622204780579, 0.5707791447639465, -0.08484531939029694, 0.12603230774402618, 0.019405744969844818, -0.25576457381248474, -0.2817707359790802], [0.4161614179611206, -0.2844862639904022, 0.1077725812792778, 0.1062166690826416, 0.570778489112854, -0.0848434790968895, 0.12603148818016052, 0.01940564066171646, -0.25576603412628174, -0.2817699611186981], [0.4161621034145355, -0.2844862937927246, 0.10777289420366287, 0.10621603578329086, 0.5707781910896301, -0.08484348654747009, 0.12603157758712769, 0.019406437873840332, -0.2557656764984131, -0.28176894783973694], [0.41616207361221313, -0.2844884395599365, 0.10776891559362411, 0.10621554404497147, 0.5707792639732361, -0.0848439410328865, 0.12603525817394257, 0.019409937784075737, -0.2557659447193146, -0.2817671597003937], [0.4161616265773773, -0.28448957204818726, 0.10776994377374649, 0.10621611773967743, 0.5707800984382629, -0.08484768122434616, 0.12603577971458435, 0.01941065303981304, -0.2557641565799713, -0.2817692458629608], [0.4161609411239624, -0.2844897210597992, 0.10777072608470917, 0.10621750354766846, 0.5707805156707764, -0.08484835177659988, 0.12603424489498138, 0.019409893080592155, -0.2557646632194519, -0.28177088499069214], [0.4161611795425415, -0.28448909521102905, 0.10777268558740616, 0.1062174141407013, 0.5707802176475525, -0.08484743535518646, 0.12603257596492767, 0.01940876804292202, -0.2557651996612549, -0.28177064657211304], [0.4161606729030609, -0.2844870984554291, 0.10777594149112701, 0.10621796548366547, 0.57077956199646, -0.08484595268964767, 0.1260298490524292, 0.01940540224313736, -0.2557656168937683, -0.28177201747894287], [0.4161619246006012, -0.28448739647865295, 0.10777229070663452, 0.10621581226587296, 0.5707792043685913, -0.08484260737895966, 0.12603241205215454, 0.01940733939409256, -0.25576701760292053, -0.2817678451538086], [0.41616296768188477, -0.28449198603630066, 0.10776372998952866, 0.1062130555510521, 0.570780873298645, -0.08484514057636261, 0.1260414868593216, 0.019415806978940964, -0.2557656764984131, -0.28176334500312805], [0.4161602854728699, -0.2844926416873932, 0.10776863247156143, 0.10621712356805801, 0.5707821846008301, -0.0848541334271431, 0.12603892385959625, 0.019413653761148453, -0.2557615637779236, -0.28177228569984436], [0.4161594808101654, -0.2844891846179962, 0.10777545720338821, 0.10622065514326096, 0.5707808136940002, -0.08485148102045059, 0.12602940201759338, 0.01940658688545227, -0.2557641863822937, -0.28177618980407715], [0.41616290807724, -0.28449171781539917, 0.10776704549789429, 0.1062152236700058, 0.5707810521125793, -0.08484368771314621, 0.12603622674942017, 0.0194140262901783, -0.2557683289051056, -0.28176403045654297], [0.4161607623100281, -0.28449249267578125, 0.10777075588703156, 0.10621575266122818, 0.570782482624054, -0.08485127985477448, 0.12603862583637238, 0.01941339299082756, -0.25576311349868774, -0.28176969289779663], [0.4161589741706848, -0.28448885679244995, 0.10777612030506134, 0.10621973127126694, 0.5707811713218689, -0.08485099673271179, 0.12603066861629486, 0.01940567046403885, -0.2557639479637146, -0.28177621960639954], [0.41616275906562805, -0.2844903767108917, 0.1077679991722107, 0.10621513426303864, 0.570780336856842, -0.0848434790968895, 0.1260351687669754, 0.01941194199025631, -0.25576791167259216, -0.28176525235176086], [0.41616126894950867, -0.284491628408432, 0.1077696830034256, 0.10621543973684311, 0.5707816481590271, -0.08484958112239838, 0.12603822350502014, 0.01941312476992607, -0.2557637095451355, -0.28176867961883545], [0.4161600172519684, -0.28449103236198425, 0.10777093470096588, 0.10621801018714905, 0.5707816481590271, -0.08485078811645508, 0.12603524327278137, 0.01941041462123394, -0.2557640075683594, -0.28177252411842346], [0.4161617159843445, -0.28449174761772156, 0.1077687218785286, 0.1062164455652237, 0.570781409740448, -0.08484833687543869, 0.12603604793548584, 0.019412819296121597, -0.25576555728912354, -0.28176844120025635], [0.4161621630191803, -0.2844964861869812, 0.10776147991418839, 0.10621435195207596, 0.5707836151123047, -0.08485052734613419, 0.1260444074869156, 0.01942085660994053, -0.255764901638031, -0.28176432847976685], [0.41616007685661316, -0.28449851274490356, 0.10776428878307343, 0.1062169149518013, 0.5707855820655823, -0.08485884219408035, 0.12604449689388275, 0.019420916214585304, -0.2557612657546997, -0.28177085518836975], [0.41615957021713257, -0.28449884057044983, 0.10776519030332565, 0.10621887445449829, 0.5707860589027405, -0.08485893905162811, 0.1260414719581604, 0.019419999793171883, -0.2557629942893982, -0.28177234530448914], [0.4161611497402191, -0.28450214862823486, 0.10776050388813019, 0.1062161922454834, 0.5707873106002808, -0.08485778421163559, 0.12604646384716034, 0.01942606270313263, -0.2557642459869385, -0.28176650404930115], [0.416157990694046, -0.28449973464012146, 0.10777078568935394, 0.10621985048055649, 0.5707877278327942, -0.0848635882139206, 0.12604062259197235, 0.019418904557824135, -0.2557608485221863, -0.28177621960639954], [0.41615983843803406, -0.2845001816749573, 0.10776463150978088, 0.10621790587902069, 0.5707871913909912, -0.08485627919435501, 0.12604206800460815, 0.01942111738026142, -0.25576576590538025, -0.2817695140838623], [0.41616010665893555, -0.2844999134540558, 0.10776744037866592, 0.10621653497219086, 0.5707871913909912, -0.08485903590917587, 0.12604309618473053, 0.019421184435486794, -0.25576287508010864, -0.281770259141922], [0.4161584675312042, -0.28449827432632446, 0.10776890069246292, 0.10621893405914307, 0.5707867741584778, -0.08485888689756393, 0.1260402649641037, 0.01941758021712303, -0.25576329231262207, -0.2817739248275757], [0.41615933179855347, -0.2844943404197693, 0.10777431726455688, 0.1062190979719162, 0.5707844495773315, -0.08485546708106995, 0.12603409588336945, 0.019412076100707054, -0.2557641863822937, -0.2817745804786682], [0.4161611795425415, -0.28449565172195435, 0.107766292989254, 0.1062157079577446, 0.5707842111587524, -0.08484957367181778, 0.12603986263275146, 0.019417207688093185, -0.255766898393631, -0.28176650404930115], [0.41615915298461914, -0.28449198603630066, 0.1077764555811882, 0.10621821135282516, 0.5707831382751465, -0.08485493063926697, 0.126034215092659, 0.019409677013754845, -0.2557622492313385, -0.2817753255367279], [0.4161592721939087, -0.2844872772693634, 0.10777799040079117, 0.1062198057770729, 0.5707804560661316, -0.084847092628479, 0.12602737545967102, 0.019403234124183655, -0.2557665705680847, -0.28177517652511597], [0.4161619544029236, -0.28448420763015747, 0.1077788844704628, 0.10621632635593414, 0.5707778334617615, -0.08484064042568207, 0.1260264366865158, 0.019401872530579567, -0.25576770305633545, -0.28176969289779663], [0.41616135835647583, -0.284482479095459, 0.10777787119150162, 0.10621599107980728, 0.5707769393920898, -0.08483897149562836, 0.1260276436805725, 0.019400449469685555, -0.25576719641685486, -0.28176984190940857], [0.4161631166934967, -0.28448447585105896, 0.10777075588703156, 0.10621361434459686, 0.5707768201828003, -0.08483821898698807, 0.12603293359279633, 0.019405461847782135, -0.2557671070098877, -0.28176525235176086], [0.41616326570510864, -0.2844897508621216, 0.10776309669017792, 0.10621295124292374, 0.570779025554657, -0.08484388142824173, 0.12604080140590668, 0.01941409334540367, -0.25576478242874146, -0.28176364302635193], [0.41616135835647583, -0.28449296951293945, 0.10776445269584656, 0.10621638596057892, 0.570781409740448, -0.08485256135463715, 0.12604080140590668, 0.019415970891714096, -0.25576192140579224, -0.2817695438861847], [0.4161606431007385, -0.2844940721988678, 0.10776694118976593, 0.10621875524520874, 0.5707826018333435, -0.0848538875579834, 0.12603759765625, 0.01941545680165291, -0.25576335191726685, -0.28177157044410706], [0.41616180539131165, -0.2844977378845215, 0.1077626571059227, 0.10621626675128937, 0.5707844495773315, -0.08485276997089386, 0.12604261934757233, 0.019421378150582314, -0.25576508045196533, -0.28176605701446533], [0.41615960001945496, -0.28449809551239014, 0.10776788741350174, 0.1062178760766983, 0.5707859396934509, -0.08485868573188782, 0.12604178488254547, 0.01941918022930622, -0.2557620704174042, -0.2817719876766205], [0.416159451007843, -0.2844976782798767, 0.1077675148844719, 0.10621853917837143, 0.5707858204841614, -0.08485668152570724, 0.12603992223739624, 0.019417772069573402, -0.25576409697532654, -0.2817719876766205], [0.4161604344844818, -0.28449761867523193, 0.10776758939027786, 0.10621701925992966, 0.5707855224609375, -0.0848555862903595, 0.12604045867919922, 0.019418613985180855, -0.2557642459869385, -0.28176987171173096], [0.4161582291126251, -0.2844926416873932, 0.10777738690376282, 0.1062202900648117, 0.5707839727401733, -0.0848560705780983, 0.12603223323822021, 0.019409185275435448, -0.25576311349868774, -0.28177741169929504], [0.4161597788333893, -0.2844875454902649, 0.1077793687582016, 0.10621930658817291, 0.5707806944847107, -0.08484625071287155, 0.12602657079696655, 0.01940334588289261, -0.2557673752307892, -0.28177404403686523], [0.41616153717041016, -0.28448450565338135, 0.10777903348207474, 0.10621599107980728, 0.5707784295082092, -0.08484043180942535, 0.12602728605270386, 0.01940196193754673, -0.25576794147491455, -0.2817695736885071], [0.41616225242614746, -0.28448542952537537, 0.10777217149734497, 0.10621386766433716, 0.5707780718803406, -0.08483941853046417, 0.1260332316160202, 0.019405663013458252, -0.255767285823822, -0.2817661166191101], [0.41616174578666687, -0.2844855487346649, 0.10777262598276138, 0.10621526837348938, 0.570777952671051, -0.0848439633846283, 0.1260329931974411, 0.0194055438041687, -0.25576433539390564, -0.2817697525024414], [0.416161447763443, -0.28448501229286194, 0.10777316987514496, 0.10621733218431473, 0.5707774758338928, -0.0848437026143074, 0.1260300576686859, 0.019404463469982147, -0.2557653486728668, -0.28177109360694885], [0.4161626100540161, -0.28448623418807983, 0.1077713742852211, 0.10621603578329086, 0.5707778334617615, -0.0848420187830925, 0.12603165209293365, 0.019407115876674652, -0.2557664215564728, -0.2817675471305847], [0.41616153717041016, -0.2844865024089813, 0.10777337849140167, 0.10621660947799683, 0.5707785487174988, -0.08484432101249695, 0.12603189051151276, 0.019406452775001526, -0.2557651698589325, -0.2817697823047638], [0.4161618649959564, -0.2844877243041992, 0.10777054727077484, 0.10621602088212967, 0.570779025554657, -0.08484382182359695, 0.1260336935520172, 0.0194083359092474, -0.25576597452163696, -0.28176820278167725], [0.4161621332168579, -0.2844897508621216, 0.10776844620704651, 0.10621532797813416, 0.5707799792289734, -0.08484607189893723, 0.1260366290807724, 0.019411547109484673, -0.25576499104499817, -0.2817673981189728], [0.4161612391471863, -0.28449130058288574, 0.10776813328266144, 0.10621653497219086, 0.5707811117172241, -0.08484935015439987, 0.1260373890399933, 0.019412709400057793, -0.25576409697532654, -0.28176939487457275], [0.41615983843803406, -0.2844879925251007, 0.10777692496776581, 0.10621961206197739, 0.5707802176475525, -0.08485033363103867, 0.126029372215271, 0.019405528903007507, -0.2557637095451355, -0.28177547454833984], [0.4161619544029236, -0.284488320350647, 0.10777144879102707, 0.10621665418148041, 0.5707796216011047, -0.08484256267547607, 0.12603183090686798, 0.019408350810408592, -0.2557681202888489, -0.2817675471305847], [0.4161616861820221, -0.284488320350647, 0.10777336359024048, 0.10621542483568192, 0.5707799196243286, -0.08484562486410141, 0.12603391706943512, 0.019408484920859337, -0.25576502084732056, -0.2817687690258026], [0.41616201400756836, -0.2844924330711365, 0.10776346921920776, 0.10621438175439835, 0.5707814693450928, -0.08484617620706558, 0.12604115903377533, 0.019415412098169327, -0.2557658553123474, -0.28176507353782654], [0.4161608815193176, -0.2844928801059723, 0.10776888579130173, 0.10621665418148041, 0.5707821249961853, -0.08485393971204758, 0.12603861093521118, 0.019414115697145462, -0.2557617425918579, -0.2817714214324951], [0.41615957021713257, -0.28449100255966187, 0.10777232050895691, 0.10621996223926544, 0.5707817077636719, -0.08485179394483566, 0.12603257596492767, 0.019409721717238426, -0.2557644248008728, -0.2817744016647339], [0.416161447763443, -0.2844897210597992, 0.10777386277914047, 0.10621748864650726, 0.5707807540893555, -0.08484682440757751, 0.12603147327899933, 0.019408999010920525, -0.2557663917541504, -0.2817699611186981], [0.41616153717041016, -0.2844913601875305, 0.10776906460523605, 0.10621526837348938, 0.5707816481590271, -0.08484595268964767, 0.1260373294353485, 0.019412649795413017, -0.255766361951828, -0.2817666530609131], [0.41616183519363403, -0.28449511528015137, 0.1077633947134018, 0.10621397197246552, 0.5707831382751465, -0.08485051989555359, 0.12604373693466187, 0.01941836066544056, -0.25576406717300415, -0.28176572918891907], [0.41615793108940125, -0.2844889461994171, 0.10777977108955383, 0.10622142255306244, 0.5707815289497375, -0.08485669642686844, 0.1260291337966919, 0.01940470188856125, -0.2557607889175415, -0.28178107738494873], [0.4161614775657654, -0.2844873070716858, 0.10777352750301361, 0.10621847957372665, 0.5707793235778809, -0.08484185487031937, 0.12602780759334564, 0.01940569281578064, -0.2557695209980011, -0.2817695438861847], [0.4161611795425415, -0.2844826281070709, 0.10778392106294632, 0.10621713846921921, 0.5707775950431824, -0.08484257012605667, 0.12602432072162628, 0.019399182870984077, -0.2557657063007355, -0.2817726731300354], [0.41616010665893555, -0.28447744250297546, 0.10778495669364929, 0.10621852427721024, 0.5707749724388123, -0.08483564108610153, 0.12601956725120544, 0.019391624256968498, -0.2557685673236847, -0.2817741930484772], [0.41616401076316833, -0.2844759523868561, 0.10778031498193741, 0.10621362924575806, 0.5707722902297974, -0.08482911437749863, 0.1260221302509308, 0.019393865019083023, -0.2557697296142578, -0.28176599740982056], [0.4161616861820221, -0.2844713628292084, 0.1077871024608612, 0.10621675103902817, 0.5707705616950989, -0.08483142405748367, 0.12601689994335175, 0.01938663423061371, -0.25576668977737427, -0.28177347779273987], [0.41616374254226685, -0.2844694256782532, 0.10778340697288513, 0.10621561855077744, 0.5707682371139526, -0.08482389152050018, 0.12601545453071594, 0.019385941326618195, -0.25577032566070557, -0.2817685306072235], [0.41616490483283997, -0.2844693064689636, 0.10778212547302246, 0.10621361434459686, 0.5707675814628601, -0.08482331782579422, 0.1260180026292801, 0.019387952983379364, -0.25576919317245483, -0.28176578879356384], [0.41616255044937134, -0.28446510434150696, 0.10779012739658356, 0.1062173992395401, 0.570766270160675, -0.08482491225004196, 0.12601085007190704, 0.019379617646336555, -0.2557676136493683, -0.28177371621131897], [0.4161645770072937, -0.2844618558883667, 0.1077895313501358, 0.10621604323387146, 0.5707637071609497, -0.08481636643409729, 0.12600736320018768, 0.019376862794160843, -0.2557716965675354, -0.2817690670490265], [0.4161660373210907, -0.28446149826049805, 0.1077868714928627, 0.10621296614408493, 0.5707628726959229, -0.08481359481811523, 0.12601099908351898, 0.01937909610569477, -0.2557714879512787, -0.2817644476890564], [0.41616466641426086, -0.28446003794670105, 0.10778900235891342, 0.10621447116136551, 0.5707623958587646, -0.08481589704751968, 0.1260097771883011, 0.019376132637262344, -0.25576937198638916, -0.28176864981651306], [0.4161659777164459, -0.2844604253768921, 0.10778489708900452, 0.10621365904808044, 0.5707617998123169, -0.08481330424547195, 0.12601083517074585, 0.019378097727894783, -0.2557709813117981, -0.2817654609680176], [0.4161665737628937, -0.2844628691673279, 0.1077815517783165, 0.1062125712633133, 0.5707626938819885, -0.08481539785861969, 0.12601493299007416, 0.01938267983496189, -0.2557697892189026, -0.2817634344100952], [0.4161655306816101, -0.2844655513763428, 0.107779860496521, 0.10621374845504761, 0.570764422416687, -0.08481982350349426, 0.12601739168167114, 0.01938547194004059, -0.25576841831207275, -0.281765341758728], [0.41616523265838623, -0.28446757793426514, 0.10777968168258667, 0.10621467977762222, 0.5707656741142273, -0.08482269942760468, 0.12601765990257263, 0.019387148320674896, -0.2557681202888489, -0.28176647424697876], [0.41616523265838623, -0.28447026014328003, 0.10777755826711655, 0.10621451586484909, 0.5707672238349915, -0.08482420444488525, 0.12602011859416962, 0.01939067803323269, -0.2557685077190399, -0.28176525235176086], [0.4161641299724579, -0.28447097539901733, 0.10778050869703293, 0.10621563345193863, 0.5707683563232422, -0.08482756465673447, 0.12601929903030396, 0.019389985129237175, -0.255767285823822, -0.281768262386322], [0.4161640703678131, -0.28447166085243225, 0.10777969658374786, 0.10621566325426102, 0.5707689523696899, -0.08482679724693298, 0.1260194182395935, 0.019390476867556572, -0.2557685375213623, -0.2817675471305847], [0.41616490483283997, -0.28447431325912476, 0.10777586698532104, 0.10621374845504761, 0.5707700252532959, -0.08482756465673447, 0.12602393329143524, 0.019395072013139725, -0.25576841831207275, -0.2817643880844116], [0.4161628484725952, -0.28447362780570984, 0.10778097808361053, 0.10621635615825653, 0.5707706212997437, -0.08483229577541351, 0.12602099776268005, 0.019391736015677452, -0.2557660639286041, -0.2817706763744354], [0.41616466641426086, -0.28447696566581726, 0.10777250677347183, 0.10621414333581924, 0.5707715153694153, -0.0848289430141449, 0.12602610886096954, 0.019398177042603493, -0.25576916337013245, -0.28176382184028625], [0.41616326570510864, -0.2844772934913635, 0.10777805745601654, 0.1062154546380043, 0.5707724690437317, -0.08483570069074631, 0.12602512538433075, 0.019397001713514328, -0.2557651698589325, -0.28176915645599365], [0.41616225242614746, -0.28447669744491577, 0.107778400182724, 0.10621750354766846, 0.5707725286483765, -0.08483400195837021, 0.1260223388671875, 0.01939472183585167, -0.2557673752307892, -0.2817706763744354], [0.416164755821228, -0.2844795882701874, 0.10777270048856735, 0.10621364414691925, 0.570773184299469, -0.08483198285102844, 0.12602798640727997, 0.01940116472542286, -0.25576844811439514, -0.2817634642124176], [0.41616302728652954, -0.28448259830474854, 0.10777126997709274, 0.10621445626020432, 0.5707754492759705, -0.08483855426311493, 0.126032292842865, 0.01940435916185379, -0.2557653486728668, -0.28176647424697876], [0.41616201400756836, -0.2844834625720978, 0.10777295380830765, 0.10621675103902817, 0.5707762241363525, -0.08484206348657608, 0.12603013217449188, 0.019403427839279175, -0.25576475262641907, -0.2817703187465668], [0.41616278886795044, -0.2844851315021515, 0.10777083039283752, 0.1062161773443222, 0.5707769393920898, -0.08484106510877609, 0.12603119015693665, 0.019406259059906006, -0.2557663917541504, -0.2817676067352295], [0.41616198420524597, -0.2844858467578888, 0.10777314007282257, 0.10621659457683563, 0.5707778930664062, -0.08484353870153427, 0.12603135406970978, 0.01940617710351944, -0.2557651996612549, -0.2817693054676056], [0.4161612391471863, -0.2844848930835724, 0.10777541249990463, 0.10621759295463562, 0.5707778334617615, -0.08484326303005219, 0.1260291188955307, 0.01940363645553589, -0.25576573610305786, -0.2817712724208832], [0.4161626994609833, -0.28448641300201416, 0.1077708750963211, 0.10621523857116699, 0.5707780718803406, -0.08484096080064774, 0.12603260576725006, 0.019407309591770172, -0.2557670474052429, -0.28176650404930115], [0.4161612391471863, -0.28448548913002014, 0.1077752485871315, 0.10621675103902817, 0.5707782506942749, -0.08484488725662231, 0.12603075802326202, 0.01940470188856125, -0.2557644546031952, -0.2817712724208832], [0.4161607325077057, -0.2844824492931366, 0.10777895897626877, 0.1062186136841774, 0.5707768201828003, -0.08484203368425369, 0.12602505087852478, 0.01939934678375721, -0.2557661533355713, -0.28177350759506226], [0.4161638021469116, -0.2844850718975067, 0.10776988416910172, 0.10621385276317596, 0.5707768797874451, -0.0848366841673851, 0.12603221833705902, 0.019406825304031372, -0.2557687759399414, -0.28176337480545044], [0.4161621332168579, -0.2844870984554291, 0.10777066648006439, 0.10621459037065506, 0.5707785487174988, -0.08484448492527008, 0.12603570520877838, 0.01940864883363247, -0.25576403737068176, -0.2817677855491638], [0.4161614775657654, -0.28448912501335144, 0.10776766389608383, 0.1062164306640625, 0.5707796216011047, -0.08484655618667603, 0.126036137342453, 0.019410422071814537, -0.2557646632194519, -0.28176915645599365], [0.4161621928215027, -0.28449130058288574, 0.10776706039905548, 0.10621605813503265, 0.5707805752754211, -0.08484853059053421, 0.12603725492954254, 0.019413594156503677, -0.2557643949985504, -0.28176790475845337], [0.4161604642868042, -0.2844913601875305, 0.10777077078819275, 0.10621819645166397, 0.5707815289497375, -0.08485107123851776, 0.1260351985692978, 0.01941167376935482, -0.25576382875442505, -0.2817717492580414], [0.4161611497402191, -0.28449195623397827, 0.10776971280574799, 0.10621719807386398, 0.5707817673683167, -0.08484888076782227, 0.1260356456041336, 0.01941247098147869, -0.25576552748680115, -0.28176936507225037], [0.41616132855415344, -0.2844933569431305, 0.1077679842710495, 0.1062159463763237, 0.5707826018333435, -0.08484990149736404, 0.12603868544101715, 0.01941487565636635, -0.255764901638031, -0.2817680835723877], [0.4161604940891266, -0.28449392318725586, 0.10776840150356293, 0.10621685534715652, 0.5707831978797913, -0.08485261350870132, 0.12603889405727386, 0.01941477134823799, -0.2557637095451355, -0.28177040815353394], [0.416159987449646, -0.284492164850235, 0.10777224600315094, 0.10621850937604904, 0.570782482624054, -0.08485259860754013, 0.12603455781936646, 0.019411204382777214, -0.2557639181613922, -0.281773179769516], [0.41616109013557434, -0.2844921350479126, 0.10776995867490768, 0.10621704906225204, 0.5707821249961853, -0.08484870195388794, 0.12603545188903809, 0.01941247098147869, -0.25576603412628174, -0.2817692160606384], [0.41616010665893555, -0.28448936343193054, 0.10777630656957626, 0.10621803253889084, 0.5707812309265137, -0.08484982699155807, 0.12603168189525604, 0.019407443702220917, -0.25576427578926086, -0.28177326917648315], [0.4161602854728699, -0.28448614478111267, 0.10777746140956879, 0.10621833056211472, 0.5707793831825256, -0.08484460413455963, 0.12602801620960236, 0.019403189420700073, -0.2557666599750519, -0.28177276253700256], [0.4161619544029236, -0.28448426723480225, 0.1077769547700882, 0.10621597617864609, 0.5707777738571167, -0.0848405659198761, 0.12602822482585907, 0.019402677193284035, -0.255767285823822, -0.2817692458629608], [0.41616111993789673, -0.2844814658164978, 0.10777969658374786, 0.10621688514947891, 0.5707764029502869, -0.08484003692865372, 0.1260257512331009, 0.019398638978600502, -0.255766361951828, -0.2817718982696533], [0.41616085171699524, -0.2844752073287964, 0.10778731107711792, 0.10621874034404755, 0.5707731246948242, -0.08483599871397018, 0.12601669132709503, 0.01938926987349987, -0.2557671070098877, -0.281775563955307], [0.41616493463516235, -0.28447768092155457, 0.10777339339256287, 0.10621272027492523, 0.5707724094390869, -0.08482635766267776, 0.12602601945400238, 0.019398437812924385, -0.25577157735824585, -0.2817613482475281], [0.4161633849143982, -0.28447914123535156, 0.1077757328748703, 0.10621321946382523, 0.5707736015319824, -0.08483617007732391, 0.12602953612804413, 0.019399816170334816, -0.25576475262641907, -0.28176695108413696], [0.41616174578666687, -0.2844790816307068, 0.10777527838945389, 0.10621722787618637, 0.5707738399505615, -0.08483762294054031, 0.12602616846561432, 0.019397784024477005, -0.255765825510025, -0.28177136182785034], [0.41616326570510864, -0.2844780683517456, 0.10777835547924042, 0.10621669888496399, 0.5707728862762451, -0.08483556658029556, 0.12602271139621735, 0.019396815448999405, -0.25576695799827576, -0.28176963329315186], [0.4161630868911743, -0.2844788730144501, 0.10777632147073746, 0.10621590167284012, 0.5707736015319824, -0.08483361452817917, 0.1260252594947815, 0.019398527219891548, -0.25576815009117126, -0.2817673087120056], [0.4161626696586609, -0.2844780683517456, 0.10777938365936279, 0.10621591657400131, 0.5707735419273376, -0.08483544737100601, 0.1260242909193039, 0.019396405667066574, -0.25576651096343994, -0.28176963329315186], [0.4161621928215027, -0.28447580337524414, 0.10778123140335083, 0.10621704906225204, 0.5707725286483765, -0.08483357727527618, 0.12602092325687408, 0.01939287595450878, -0.25576749444007874, -0.2817712426185608], [0.41616469621658325, -0.2844787538051605, 0.10777261108160019, 0.10621320456266403, 0.5707727670669556, -0.08483023941516876, 0.12602774798870087, 0.019400106742978096, -0.25576916337013245, -0.281762957572937], [0.4161628484725952, -0.2844800055027008, 0.10777503997087479, 0.10621486604213715, 0.5707741379737854, -0.08483774960041046, 0.12602895498275757, 0.019400404766201973, -0.255764901638031, -0.28176844120025635], [0.41616368293762207, -0.2844851016998291, 0.10776543617248535, 0.10621421784162521, 0.5707761645317078, -0.0848381295800209, 0.12603507936000824, 0.01940823160111904, -0.2557668089866638, -0.2817640006542206], [0.4161617159843445, -0.2844846844673157, 0.10777483880519867, 0.10621735453605652, 0.5707770586013794, -0.08484625071287155, 0.12603023648262024, 0.019404664635658264, -0.2557627260684967, -0.2817722260951996], [0.41616085171699524, -0.28448286652565, 0.10777698457241058, 0.10621949285268784, 0.5707767009735107, -0.0848415419459343, 0.12602511048316956, 0.0194005835801363, -0.2557668089866638, -0.2817729115486145], [0.41616347432136536, -0.28448373079299927, 0.10777431726455688, 0.1062149852514267, 0.5707764625549316, -0.0848373994231224, 0.1260288953781128, 0.019404038786888123, -0.2557681202888489, -0.2817656993865967], [0.41616153717041016, -0.28448349237442017, 0.1077757328748703, 0.1062159463763237, 0.5707771182060242, -0.0848410576581955, 0.1260301023721695, 0.019402706995606422, -0.2557655870914459, -0.2817697525024414], [0.41616103053092957, -0.2844799757003784, 0.10778085887432098, 0.10621804744005203, 0.5707753300666809, -0.08484021574258804, 0.12602341175079346, 0.019396360963582993, -0.255765825510025, -0.2817738652229309], [0.4161635935306549, -0.28448107838630676, 0.10777345299720764, 0.10621477663516998, 0.5707747340202332, -0.08483383804559708, 0.12602747976779938, 0.01940132863819599, -0.25576913356781006, -0.28176531195640564], [0.41616326570510864, -0.2844834625720978, 0.10777205228805542, 0.10621385276317596, 0.570776104927063, -0.0848388820886612, 0.12603244185447693, 0.01940499246120453, -0.2557656764984131, -0.281765878200531], [0.41616183519363403, -0.2844851016998291, 0.10777086019515991, 0.10621610283851624, 0.5707772374153137, -0.0848427265882492, 0.12603279948234558, 0.01940573751926422, -0.25576484203338623, -0.2817692458629608], [0.4161626696586609, -0.2844872772693634, 0.10776890069246292, 0.10621579736471176, 0.5707780718803406, -0.08484365791082382, 0.1260339766740799, 0.019409021362662315, -0.2557654082775116, -0.28176748752593994], [0.4161616861820221, -0.2844886779785156, 0.1077701523900032, 0.10621675103902817, 0.5707793831825256, -0.08484657108783722, 0.12603439390659332, 0.01940987817943096, -0.25576460361480713, -0.2817692458629608], [0.41616129875183105, -0.28448936343193054, 0.1077708899974823, 0.10621719807386398, 0.5707801580429077, -0.08484715968370438, 0.12603402137756348, 0.019409773871302605, -0.25576502084732056, -0.28176993131637573], [0.41616183519363403, -0.2844911217689514, 0.10776831209659576, 0.10621597617864609, 0.5707809925079346, -0.08484721183776855, 0.12603676319122314, 0.019412672147154808, -0.255765438079834, -0.28176766633987427], [0.41616055369377136, -0.2844904959201813, 0.10777221620082855, 0.10621745884418488, 0.5707812905311584, -0.0848502442240715, 0.1260347068309784, 0.01941024325788021, -0.25576382875442505, -0.2817717492580414], [0.41616085171699524, -0.2844899594783783, 0.10777167230844498, 0.10621754825115204, 0.570780873298645, -0.08484771102666855, 0.12603344023227692, 0.019409483298659325, -0.2557656168937683, -0.28177064657211304], [0.4161611795425415, -0.2844889163970947, 0.10777352750301361, 0.1062169149518013, 0.570780336856842, -0.08484700322151184, 0.12603262066841125, 0.019408388063311577, -0.2557653784751892, -0.28177040815353394], [0.4161612391471863, -0.2844890356063843, 0.1077716276049614, 0.10621647536754608, 0.5707802772521973, -0.08484574407339096, 0.12603390216827393, 0.01940898410975933, -0.2557659447193146, -0.2817692458629608], [0.4161609709262848, -0.2844875752925873, 0.10777463018894196, 0.10621701925992966, 0.5707796812057495, -0.0848466232419014, 0.12603165209293365, 0.01940646767616272, -0.25576484203338623, -0.2817714512348175], [0.41616299748420715, -0.28449246287345886, 0.10776232928037643, 0.10621367394924164, 0.5707810521125793, -0.0848442018032074, 0.12604103982448578, 0.019416358321905136, -0.2557670474052429, -0.2817627191543579], [0.41615986824035645, -0.2844906747341156, 0.10777417570352554, 0.10621801018714905, 0.5707815289497375, -0.08485451340675354, 0.1260349303483963, 0.019409960135817528, -0.25576087832450867, -0.2817748188972473], [0.4161599576473236, -0.2844884991645813, 0.10777372866868973, 0.10621986538171768, 0.570780336856842, -0.08484727144241333, 0.1260296255350113, 0.019406326115131378, -0.25576645135879517, -0.28177347779273987], [0.41616207361221313, -0.2844865620136261, 0.10777675360441208, 0.10621659457683563, 0.5707789659500122, -0.08484356850385666, 0.12602892518043518, 0.019405439496040344, -0.25576668977737427, -0.28176942467689514], [0.4161611497402191, -0.2844863533973694, 0.10777398198843002, 0.10621614754199982, 0.5707791447639465, -0.08484228700399399, 0.1260318011045456, 0.01940559595823288, -0.2557668089866638, -0.2817689776420593], [0.4161621034145355, -0.28448688983917236, 0.10777202248573303, 0.10621492564678192, 0.5707787275314331, -0.08484338968992233, 0.12603355944156647, 0.019407056272029877, -0.25576555728912354, -0.2817681133747101], [0.4161619544029236, -0.2844890058040619, 0.10776772350072861, 0.10621528327465057, 0.57077956199646, -0.08484522998332977, 0.12603658437728882, 0.019410794600844383, -0.2557651698589325, -0.28176748752593994], [0.41616079211235046, -0.2844877243041992, 0.10777411609888077, 0.10621799528598785, 0.5707793831825256, -0.08484876900911331, 0.12603163719177246, 0.019406862556934357, -0.2557634711265564, -0.28177300095558167], [0.41616174578666687, -0.28448858857154846, 0.10777018219232559, 0.10621701925992966, 0.57077956199646, -0.0848441794514656, 0.12603291869163513, 0.01940913312137127, -0.255766898393631, -0.2817683815956116], [0.4161624312400818, -0.2844911515712738, 0.1077679693698883, 0.10621476173400879, 0.5707808136940002, -0.08484651148319244, 0.12603795528411865, 0.019413482397794724, -0.2557651698589325, -0.2817660868167877], [0.4161592721939087, -0.2844879925251007, 0.10777691006660461, 0.1062193214893341, 0.5707805156707764, -0.08485092967748642, 0.12603074312210083, 0.01940542459487915, -0.2557629942893982, -0.2817760109901428], [0.41616231203079224, -0.2844892144203186, 0.10776897519826889, 0.10621607303619385, 0.5707798004150391, -0.08484289050102234, 0.12603366374969482, 0.019409945234656334, -0.2557680308818817, -0.2817665934562683], [0.4161626696586609, -0.2844928205013275, 0.10776549577713013, 0.10621361434459686, 0.5707816481590271, -0.08484774827957153, 0.12604118883609772, 0.019416432827711105, -0.2557646334171295, -0.2817646563053131], [0.4161595106124878, -0.284492552280426, 0.10777013748884201, 0.10621824115514755, 0.5707826018333435, -0.08485426008701324, 0.12603749334812164, 0.019412396475672722, -0.25576215982437134, -0.28177371621131897], [0.4161604642868042, -0.28449052572250366, 0.1077728196978569, 0.10621900856494904, 0.5707812309265137, -0.0848502516746521, 0.12603192031383514, 0.019409267231822014, -0.25576502084732056, -0.2817729711532593], [0.41616156697273254, -0.28449058532714844, 0.10777132958173752, 0.10621669888496399, 0.5707811117172241, -0.08484648168087006, 0.1260339468717575, 0.019411010667681694, -0.25576654076576233, -0.2817683517932892], [0.4161621034145355, -0.28449466824531555, 0.1077638640999794, 0.10621395707130432, 0.5707829594612122, -0.08484824746847153, 0.12604272365570068, 0.019418032839894295, -0.25576549768447876, -0.28176435828208923], [0.41616010665893555, -0.2844955623149872, 0.1077670007944107, 0.1062166839838028, 0.5707840919494629, -0.08485623449087143, 0.12604168057441711, 0.019416887313127518, -0.25576165318489075, -0.2817715108394623], [0.41616007685661316, -0.2844957709312439, 0.10776656121015549, 0.10621843487024307, 0.5707840323448181, -0.0848550945520401, 0.12603893876075745, 0.01941658928990364, -0.25576382875442505, -0.281771719455719], [0.4161604046821594, -0.2844947278499603, 0.10777060687541962, 0.10621827095746994, 0.570783793926239, -0.08485425263643265, 0.12603643536567688, 0.019414883106946945, -0.25576406717300415, -0.281771719455719], [0.4161596894264221, -0.2844927906990051, 0.10777324438095093, 0.10621865093708038, 0.5707833170890808, -0.08485187590122223, 0.12603425979614258, 0.019411420449614525, -0.25576508045196533, -0.28177258372306824], [0.41616111993789673, -0.28449276089668274, 0.10777021199464798, 0.10621611773967743, 0.5707827806472778, -0.08484873920679092, 0.12603668868541718, 0.019412923604249954, -0.25576603412628174, -0.2817685306072235], [0.4161599278450012, -0.2844902575016022, 0.1077747493982315, 0.10621753334999084, 0.5707817673683167, -0.08485068380832672, 0.12603354454040527, 0.019408663734793663, -0.255763977766037, -0.28177306056022644], [0.4161612391471863, -0.2844904363155365, 0.1077699139714241, 0.1062164455652237, 0.5707810521125793, -0.08484639972448349, 0.12603488564491272, 0.0194105114787817, -0.2557664215564728, -0.2817688286304474], [0.41616082191467285, -0.28448861837387085, 0.1077747642993927, 0.10621704906225204, 0.570780336856842, -0.08484836667776108, 0.12603232264518738, 0.01940765231847763, -0.2557642459869385, -0.28177177906036377], [0.41616010665893555, -0.2844852805137634, 0.10777800530195236, 0.10621882975101471, 0.5707787871360779, -0.08484494686126709, 0.12602722644805908, 0.01940223015844822, -0.25576597452163696, -0.28177380561828613], [0.4161619544029236, -0.28448307514190674, 0.10777805745601654, 0.10621659457683563, 0.5707769393920898, -0.08483944088220596, 0.1260262280702591, 0.01940097101032734, -0.2557676434516907, -0.2817697525024414], [0.4161606431007385, -0.28447747230529785, 0.10778607428073883, 0.10621828585863113, 0.5707746148109436, -0.08483802527189255, 0.12601958215236664, 0.019392317160964012, -0.2557666003704071, -0.2817748188972473], [0.4161626994609833, -0.2844747006893158, 0.10778255015611649, 0.10621602088212967, 0.5707720518112183, -0.08482924103736877, 0.12601904571056366, 0.019391020759940147, -0.25577011704444885, -0.2817690968513489], [0.41616377234458923, -0.2844734489917755, 0.10778168588876724, 0.10621395707130432, 0.570770800113678, -0.08482840657234192, 0.12602096796035767, 0.019391482695937157, -0.2557685375213623, -0.2817671597003937], [0.41616371273994446, -0.28447479009628296, 0.10777654498815536, 0.10621397197246552, 0.5707709789276123, -0.08482902497053146, 0.12602445483207703, 0.019394319504499435, -0.2557680904865265, -0.28176626563072205], [0.4161648154258728, -0.28447917103767395, 0.10776980221271515, 0.10621269047260284, 0.5707724690437317, -0.08483239263296127, 0.12603065371513367, 0.019401872530579567, -0.255766898393631, -0.2817632257938385], [0.4161634147167206, -0.28448355197906494, 0.10776782780885696, 0.10621462017297745, 0.5707752108573914, -0.08483990281820297, 0.1260339915752411, 0.019406631588935852, -0.25576454401016235, -0.2817661166191101], [0.4161634147167206, -0.2844896912574768, 0.10776225477457047, 0.10621485114097595, 0.570778489112854, -0.08484447002410889, 0.12603938579559326, 0.019414346665143967, -0.2557646632194519, -0.28176450729370117], [0.41616091132164, -0.2844904959201813, 0.10777037590742111, 0.10621839016675949, 0.5707804560661316, -0.08485198765993118, 0.1260351836681366, 0.01941153220832348, -0.25576215982437134, -0.2817723751068115], [0.4161611497402191, -0.28449180722236633, 0.10776841640472412, 0.10621815174818039, 0.5707814693450928, -0.08484850823879242, 0.1260351985692978, 0.01941271498799324, -0.2557659149169922, -0.28176945447921753], [0.4161614775657654, -0.284492552280426, 0.10777021199464798, 0.1062164157629013, 0.5707821846008301, -0.08484987914562225, 0.12603677809238434, 0.019413601607084274, -0.2557646930217743, -0.2817687392234802], [0.416159063577652, -0.2844887971878052, 0.10777752846479416, 0.10621953755617142, 0.5707813501358032, -0.08485071361064911, 0.1260303109884262, 0.019405722618103027, -0.25576406717300415, -0.28177574276924133], [0.4161618649959564, -0.28448837995529175, 0.10777220129966736, 0.10621623694896698, 0.5707798600196838, -0.08484309166669846, 0.12603196501731873, 0.019407844170928, -0.2557678520679474, -0.28176793456077576], [0.41616183519363403, -0.2844889163970947, 0.10777158290147781, 0.1062149703502655, 0.5707800984382629, -0.08484555035829544, 0.12603522837162018, 0.019409706816077232, -0.25576522946357727, -0.28176790475845337], [0.41616109013557434, -0.28449010848999023, 0.10776901990175247, 0.10621613264083862, 0.5707806348800659, -0.08484748005867004, 0.12603659927845, 0.019410839304327965, -0.2557647228240967, -0.2817693054676056], [0.4161609411239624, -0.2844890356063843, 0.10777271538972855, 0.10621753334999084, 0.5707801580429077, -0.08484891057014465, 0.12603294849395752, 0.01940852217376232, -0.25576409697532654, -0.2817719280719757], [0.4161611497402191, -0.2844885587692261, 0.10777238011360168, 0.10621757805347443, 0.5707799196243286, -0.08484599739313126, 0.1260320097208023, 0.01940813474357128, -0.25576603412628174, -0.2817703187465668], [0.4161609411239624, -0.28448623418807983, 0.10777716338634491, 0.1062176525592804, 0.570779025554657, -0.08484534174203873, 0.12602904438972473, 0.019404388964176178, -0.255765438079834, -0.2817719876766205], [0.4161616563796997, -0.28448596596717834, 0.10777361690998077, 0.10621623694896698, 0.5707785487174988, -0.08484148234128952, 0.1260307878255844, 0.019405268132686615, -0.255767285823822, -0.2817685902118683], [0.4161611497402191, -0.28448307514190674, 0.10777925699949265, 0.10621701925992966, 0.570777177810669, -0.08484282344579697, 0.1260269731283188, 0.019400576129555702, -0.2557651996612549, -0.2817723751068115], [0.41616159677505493, -0.2844812273979187, 0.10777757316827774, 0.10621707886457443, 0.5707758665084839, -0.084837906062603, 0.12602542340755463, 0.019398966804146767, -0.25576770305633545, -0.2817705273628235], [0.4161631166934967, -0.2844812572002411, 0.10777583718299866, 0.10621476173400879, 0.5707752108573914, -0.0848364382982254, 0.12602762877941132, 0.019400889053940773, -0.2557673454284668, -0.2817671000957489], [0.41616180539131165, -0.2844802439212799, 0.1077776625752449, 0.10621637105941772, 0.570775032043457, -0.08483830094337463, 0.1260264366865158, 0.019398661330342293, -0.25576603412628174, -0.28177058696746826], [0.4161626994609833, -0.2844799757003784, 0.10777615010738373, 0.1062159612774849, 0.5707743763923645, -0.08483617007732391, 0.12602598965168, 0.019398974254727364, -0.25576722621917725, -0.2817687690258026], [0.4161626994609833, -0.2844795286655426, 0.10777720808982849, 0.1062159314751625, 0.5707741975784302, -0.08483639359474182, 0.12602561712265015, 0.01939859427511692, -0.25576674938201904, -0.2817690372467041], [0.4161626696586609, -0.28447964787483215, 0.10777638107538223, 0.1062159314751625, 0.570774257183075, -0.08483584970235825, 0.12602604925632477, 0.019398780539631844, -0.2557671368122101, -0.2817686200141907], [0.4161626696586609, -0.2844793200492859, 0.10777734220027924, 0.1062159463763237, 0.5707740783691406, -0.08483616262674332, 0.12602552771568298, 0.019398221746087074, -0.25576674938201904, -0.2817690968513489], [0.41616272926330566, -0.28447937965393066, 0.10777648538351059, 0.10621587187051773, 0.5707740187644958, -0.08483550697565079, 0.12602581083774567, 0.019398504868149757, -0.25576716661453247, -0.2817685604095459], [0.41616255044937134, -0.2844783663749695, 0.10777876526117325, 0.10621631145477295, 0.5707736015319824, -0.08483583480119705, 0.12602411210536957, 0.019396696239709854, -0.25576668977737427, -0.28176993131637573], [0.4161618947982788, -0.2844749093055725, 0.10778379440307617, 0.10621777176856995, 0.5707721710205078, -0.08483380824327469, 0.126018688082695, 0.019391072914004326, -0.2557673156261444, -0.2817726731300354], [0.41616392135620117, -0.28447476029396057, 0.10777915269136429, 0.10621486604213715, 0.5707712769508362, -0.0848279818892479, 0.12602123618125916, 0.019393306225538254, -0.25576984882354736, -0.28176623582839966], [0.416163831949234, -0.2844756245613098, 0.10777802020311356, 0.10621389746665955, 0.5707715749740601, -0.08483061194419861, 0.12602455914020538, 0.019395191222429276, -0.2557674050331116, -0.281766414642334], [0.4161624014377594, -0.28447407484054565, 0.1077810674905777, 0.10621657967567444, 0.5707710981369019, -0.08483265340328217, 0.12602084875106812, 0.019391460344195366, -0.25576654076576233, -0.28177133202552795], [0.41616347432136536, -0.28447237610816956, 0.10778194665908813, 0.1062164306640625, 0.5707697868347168, -0.08482882380485535, 0.12601785361766815, 0.01938980631530285, -0.2557685375213623, -0.2817695736885071], [0.4161648750305176, -0.28447484970092773, 0.10777576267719269, 0.1062135249376297, 0.5707705616950989, -0.08482685685157776, 0.12602399289608002, 0.019395533949136734, -0.25576937198638916, -0.28176358342170715], [0.41616252064704895, -0.2844730019569397, 0.10778331756591797, 0.1062164157629013, 0.5707706212997437, -0.08483271300792694, 0.12601996958255768, 0.01939023844897747, -0.2557656466960907, -0.28177183866500854], [0.4161628186702728, -0.2844700813293457, 0.10778467357158661, 0.10621759295463562, 0.5707688331604004, -0.08482726663351059, 0.12601463496685028, 0.019385911524295807, -0.2557690739631653, -0.28177157044410706], [0.41616424918174744, -0.2844671905040741, 0.10778746008872986, 0.10621572285890579, 0.5707669854164124, -0.08482278138399124, 0.12601238489151, 0.019383393228054047, -0.25576990842819214, -0.28176891803741455], [0.41616392135620117, -0.28446486592292786, 0.10778794437646866, 0.10621534287929535, 0.5707658529281616, -0.08481983840465546, 0.12601187825202942, 0.019380757585167885, -0.2557702958583832, -0.2817687690258026], [0.4161653220653534, -0.2844647765159607, 0.10778430849313736, 0.10621332377195358, 0.57076495885849, -0.08481768518686295, 0.12601438164710999, 0.019382411614060402, -0.2557704448699951, -0.2817654609680176], [0.4161652624607086, -0.28446584939956665, 0.10778164118528366, 0.10621324926614761, 0.5707651376724243, -0.08481986820697784, 0.12601689994335175, 0.01938474178314209, -0.2557690143585205, -0.28176558017730713], [0.4161640405654907, -0.2844639718532562, 0.10778678208589554, 0.10621614754199982, 0.5707646012306213, -0.0848221629858017, 0.12601183354854584, 0.019380437210202217, -0.2557678818702698, -0.28177082538604736], [0.41616687178611755, -0.28446897864341736, 0.10777416080236435, 0.10621213912963867, 0.5707658529281616, -0.08481749147176743, 0.12602084875106812, 0.01939087174832821, -0.25577157735824585, -0.2817598879337311], [0.4161640703678131, -0.2844688892364502, 0.1077834963798523, 0.10621508955955505, 0.5707672238349915, -0.08482813835144043, 0.12601836025714874, 0.019387468695640564, -0.25576522946357727, -0.2817697823047638], [0.41616353392601013, -0.28446856141090393, 0.10778156667947769, 0.1062171533703804, 0.5707672238349915, -0.08482423424720764, 0.12601545453071594, 0.019385889172554016, -0.25576940178871155, -0.2817695736885071], [0.41616523265838623, -0.2844679057598114, 0.10778423398733139, 0.1062147468328476, 0.5707665681838989, -0.0848228856921196, 0.12601493299007416, 0.019386030733585358, -0.25576913356781006, -0.2817668318748474], [0.4161648452281952, -0.2844708263874054, 0.10777729749679565, 0.10621355473995209, 0.5707681775093079, -0.08482258021831512, 0.12602151930332184, 0.01939103566110134, -0.2557697892189026, -0.28176379203796387], [0.41616374254226685, -0.2844698429107666, 0.10778343677520752, 0.10621534287929535, 0.5707681179046631, -0.08482837677001953, 0.12601816654205322, 0.01938749849796295, -0.25576627254486084, -0.28177008032798767], [0.4161642789840698, -0.2844710052013397, 0.10777805745601654, 0.10621534287929535, 0.5707682967185974, -0.08482475578784943, 0.12601938843727112, 0.019390134140849113, -0.2557695806026459, -0.28176653385162354], [0.416164368391037, -0.2844705879688263, 0.10778257995843887, 0.10621513426303864, 0.5707682967185974, -0.08482732623815536, 0.12601810693740845, 0.019388994202017784, -0.2557674050331116, -0.281768262386322], [0.41616424918174744, -0.2844727039337158, 0.10777678340673447, 0.10621467977762222, 0.5707694292068481, -0.084825798869133, 0.12602196633815765, 0.019392548128962517, -0.255769282579422, -0.2817654609680176], [0.41616445779800415, -0.2844741940498352, 0.10777775198221207, 0.10621414333581924, 0.5707702040672302, -0.0848299190402031, 0.12602348625659943, 0.019394230097532272, -0.2557668089866638, -0.28176647424697876], [0.41616368293762207, -0.28447669744491577, 0.10777396708726883, 0.10621507465839386, 0.5707716345787048, -0.08483157306909561, 0.1260260045528412, 0.019397322088479996, -0.2557673752307892, -0.2817665636539459], [0.4161640703678131, -0.28447937965393066, 0.10777299106121063, 0.10621463507413864, 0.5707730054855347, -0.08483488857746124, 0.12602819502353668, 0.019400710240006447, -0.25576627254486084, -0.2817661166191101], [0.41616296768188477, -0.28448188304901123, 0.10777171701192856, 0.10621573776006699, 0.5707748532295227, -0.08483812212944031, 0.1260300725698471, 0.01940319687128067, -0.2557659447193146, -0.28176745772361755], [0.4161624312400818, -0.28448250889778137, 0.1077745109796524, 0.10621675103902817, 0.5707756280899048, -0.08484052121639252, 0.1260284185409546, 0.019402379170060158, -0.2557654082775116, -0.281769722700119], [0.4161626696586609, -0.2844841182231903, 0.10777199268341064, 0.10621608793735504, 0.5707765817642212, -0.08483956009149551, 0.12603040039539337, 0.019404835999011993, -0.2557668089866638, -0.28176748752593994], [0.4161611497402191, -0.2844812273979187, 0.10778062045574188, 0.10621809214353561, 0.5707759857177734, -0.08484198898077011, 0.12602461874485016, 0.019398460164666176, -0.2557649612426758, -0.28177353739738464], [0.4161638617515564, -0.28448551893234253, 0.10776680707931519, 0.10621371865272522, 0.5707768797874451, -0.08483552187681198, 0.1260339617729187, 0.019408104941248894, -0.2557694613933563, -0.2817620635032654], [0.41616228222846985, -0.28448694944381714, 0.10777179896831512, 0.10621466487646103, 0.5707784295082092, -0.08484605699777603, 0.12603528797626495, 0.019408440217375755, -0.25576287508010864, -0.28176867961883545], [0.4161601662635803, -0.28448572754859924, 0.10777389258146286, 0.10621914267539978, 0.5707784295082092, -0.0848461166024208, 0.12602968513965607, 0.019404083490371704, -0.25576475262641907, -0.2817738652229309], [0.41616231203079224, -0.2844841182231903, 0.10777653008699417, 0.10621731728315353, 0.5707770586013794, -0.08484157919883728, 0.1260266751050949, 0.019402876496315002, -0.25576677918434143, -0.28177013993263245], [0.4161624312400818, -0.28448566794395447, 0.10777197778224945, 0.10621528327465057, 0.570777952671051, -0.08483972400426865, 0.1260320097208023, 0.019406475126743317, -0.2557675242424011, -0.28176626563072205], [0.4161609709262848, -0.2844833433628082, 0.10777880996465683, 0.10621712356805801, 0.5707773566246033, -0.08484375476837158, 0.1260279417037964, 0.019400985911488533, -0.2557643949985504, -0.2817728817462921], [0.4161614179611206, -0.2844808101654053, 0.10777835547924042, 0.10621772706508636, 0.5707756876945496, -0.08483842760324478, 0.12602435052394867, 0.019398080185055733, -0.2557675540447235, -0.2817716598510742], [0.41616296768188477, -0.28447940945625305, 0.10777895897626877, 0.10621564835309982, 0.5707743763923645, -0.0848354920744896, 0.1260242909193039, 0.019397851079702377, -0.25576770305633545, -0.2817685604095459], [0.41616228222846985, -0.2844786047935486, 0.10777844488620758, 0.10621585696935654, 0.5707740783691406, -0.0848349779844284, 0.12602487206459045, 0.019396919757127762, -0.2557674050331116, -0.2817692160606384], [0.4161626696586609, -0.28447720408439636, 0.10777965188026428, 0.1062159314751625, 0.5707730054855347, -0.08483435213565826, 0.12602315843105316, 0.01939507946372032, -0.2557671070098877, -0.28176984190940857], [0.41616374254226685, -0.28447893261909485, 0.1077738031744957, 0.10621435195207596, 0.5707732439041138, -0.08483260124921799, 0.12602722644805908, 0.019399458542466164, -0.25576820969581604, -0.28176552057266235], [0.41616249084472656, -0.28447818756103516, 0.10777871310710907, 0.10621613264083862, 0.5707734227180481, -0.08483706414699554, 0.12602484226226807, 0.01939685270190239, -0.2557653784751892, -0.28177058696746826], [0.4161624014377594, -0.2844770550727844, 0.10777883976697922, 0.10621722787618637, 0.5707727670669556, -0.08483406156301498, 0.12602218985557556, 0.019394945353269577, -0.2557676434516907, -0.28177040815353394], [0.4161626100540161, -0.28447335958480835, 0.10778545588254929, 0.10621735453605652, 0.5707710981369019, -0.08483194559812546, 0.12601691484451294, 0.019389500841498375, -0.2557676434516907, -0.2817719578742981], [0.4161640703678131, -0.28447410464286804, 0.10777835547924042, 0.10621444135904312, 0.570770800113678, -0.08482614159584045, 0.1260216385126114, 0.019393060356378555, -0.2557704448699951, -0.2817651331424713], [0.4161643981933594, -0.2844761312007904, 0.10777615010738373, 0.10621289163827896, 0.5707715153694153, -0.08483049273490906, 0.1260264664888382, 0.019396644085645676, -0.2557671070098877, -0.28176501393318176], [0.41616180539131165, -0.2844736874103546, 0.10778219997882843, 0.10621759295463562, 0.5707710981369019, -0.08483429253101349, 0.12601996958255768, 0.019390499219298363, -0.25576555728912354, -0.28177350759506226], [0.4161643087863922, -0.2844740152359009, 0.10777803510427475, 0.10621560364961624, 0.5707702040672302, -0.08482784032821655, 0.12602029740810394, 0.019392963498830795, -0.25576961040496826, -0.2817666828632355], [0.416164755821228, -0.2844771146774292, 0.1077742725610733, 0.10621318966150284, 0.5707718133926392, -0.08483010530471802, 0.1260269582271576, 0.019398750737309456, -0.25576794147491455, -0.28176355361938477], [0.41616255044937134, -0.2844780385494232, 0.10777650028467178, 0.10621582716703415, 0.5707730650901794, -0.08483598381280899, 0.1260264366865158, 0.019397418946027756, -0.2557654082775116, -0.28176960349082947], [0.4161621928215027, -0.2844754457473755, 0.10778162628412247, 0.10621803253889084, 0.5707719326019287, -0.08483487367630005, 0.126019686460495, 0.0193923469632864, -0.2557666301727295, -0.2817727029323578], [0.41616442799568176, -0.2844772934913635, 0.10777503997087479, 0.10621456056833267, 0.5707721710205078, -0.08482933789491653, 0.12602446973323822, 0.019397731870412827, -0.2557697594165802, -0.28176432847976685], [0.4161628484725952, -0.28447699546813965, 0.10777971148490906, 0.10621537268161774, 0.5707727670669556, -0.08483478426933289, 0.12602438032627106, 0.019395750015974045, -0.2557658851146698, -0.2817693054676056], [0.4161625802516937, -0.28447672724723816, 0.10777763277292252, 0.10621634125709534, 0.5707725286483765, -0.08483295142650604, 0.12602344155311584, 0.01939508691430092, -0.25576770305633545, -0.28176936507225037], [0.41616392135620117, -0.2844773530960083, 0.10777679085731506, 0.10621477663516998, 0.5707722902297974, -0.08483265340328217, 0.12602466344833374, 0.019397106021642685, -0.25576749444007874, -0.2817668318748474], [0.4161635935306549, -0.284480482339859, 0.1077716276049614, 0.10621427744626999, 0.5707740187644958, -0.08483442664146423, 0.12602989375591278, 0.019402043893933296, -0.25576719641685486, -0.2817651927471161], [0.41616153717041016, -0.28447768092155457, 0.10778185725212097, 0.10621802508831024, 0.5707734823226929, -0.08483953028917313, 0.1260223239660263, 0.01939469203352928, -0.25576433539390564, -0.28177422285079956], [0.41616255044937134, -0.28447574377059937, 0.10778038948774338, 0.10621772706508636, 0.5707721710205078, -0.0848316177725792, 0.12601938843727112, 0.019392913207411766, -0.2557693123817444, -0.2817702293395996], [0.4161633849143982, -0.28447309136390686, 0.10778491199016571, 0.10621584206819534, 0.570770800113678, -0.08482969552278519, 0.12601777911186218, 0.019389977678656578, -0.255768358707428, -0.28176942467689514], [0.4161628186702728, -0.2844710052013397, 0.10778411477804184, 0.1062159463763237, 0.570769727230072, -0.08482658863067627, 0.12601730227470398, 0.01938743144273758, -0.2557693123817444, -0.2817695438861847], [0.4161643981933594, -0.2844703495502472, 0.10778212547302246, 0.1062140017747879, 0.5707685351371765, -0.08482471108436584, 0.1260184347629547, 0.0193882267922163, -0.25576916337013245, -0.28176677227020264], [0.4161641597747803, -0.2844708561897278, 0.10777981579303741, 0.10621423274278641, 0.5707685351371765, -0.08482575416564941, 0.12602023780345917, 0.01938975416123867, -0.2557683289051056, -0.2817668616771698], [0.4161646068096161, -0.284472793340683, 0.10777688026428223, 0.10621409118175507, 0.570769190788269, -0.08482728898525238, 0.1260225921869278, 0.019392868503928185, -0.25576791167259216, -0.2817658483982086], [0.4161645174026489, -0.28447604179382324, 0.10777348279953003, 0.10621410608291626, 0.5707708597183228, -0.08483041822910309, 0.12602628767490387, 0.019397463649511337, -0.25576722621917725, -0.2817651033401489], [0.41616326570510864, -0.2844772934913635, 0.10777604579925537, 0.10621600598096848, 0.5707721710205078, -0.08483488857746124, 0.1260252594947815, 0.019397322088479996, -0.25576576590538025, -0.28176888823509216], [0.41616275906562805, -0.2844768166542053, 0.10777857899665833, 0.10621724277734756, 0.5707724094390869, -0.08483439683914185, 0.12602229416370392, 0.01939532533288002, -0.25576695799827576, -0.281770259141922], [0.4161634147167206, -0.2844768166542053, 0.10777847468852997, 0.1062159463763237, 0.5707724094390869, -0.08483217656612396, 0.12602274119853973, 0.019395742565393448, -0.2557681202888489, -0.2817678451538086], [0.4161624312400818, -0.28447455167770386, 0.10778312385082245, 0.10621675103902817, 0.5707717537879944, -0.0848325788974762, 0.12601979076862335, 0.01939149759709835, -0.25576722621917725, -0.28177106380462646], [0.4161628186702728, -0.2844717800617218, 0.10778439790010452, 0.1062166839838028, 0.5707701444625854, -0.08482836931943893, 0.12601672112941742, 0.01938796043395996, -0.25576892495155334, -0.2817705571651459], [0.41616523265838623, -0.28447428345680237, 0.10777565836906433, 0.1062125414609909, 0.5707702040672302, -0.08482515066862106, 0.12602412700653076, 0.01939491555094719, -0.2557700574398041, -0.2817624509334564], [0.4161636531352997, -0.28447598218917847, 0.10777627676725388, 0.10621395707130432, 0.5707715153694153, -0.084832563996315, 0.12602640688419342, 0.01939627155661583, -0.25576573610305786, -0.28176721930503845], [0.41616278886795044, -0.28447604179382324, 0.1077771782875061, 0.1062166839838028, 0.5707716345787048, -0.08483395725488663, 0.12602326273918152, 0.019394833594560623, -0.2557663917541504, -0.2817702889442444], [0.41616353392601013, -0.28447550535202026, 0.10777921229600906, 0.10621653497219086, 0.570771336555481, -0.08483220636844635, 0.12602102756500244, 0.019394230097532272, -0.2557676434516907, -0.2817690372467041], [0.41616305708885193, -0.28447455167770386, 0.10778126865625381, 0.10621650516986847, 0.570771336555481, -0.08483090996742249, 0.1260201334953308, 0.01939248852431774, -0.2557680904865265, -0.2817692756652832], [0.4161633253097534, -0.28447356820106506, 0.10778170078992844, 0.10621567815542221, 0.570770800113678, -0.08482919633388519, 0.1260198950767517, 0.019391177222132683, -0.25576844811439514, -0.28176864981651306], [0.4161640703678131, -0.2844744622707367, 0.10777770727872849, 0.10621412843465805, 0.570770800113678, -0.08482836186885834, 0.12602317333221436, 0.019393932074308395, -0.25576862692832947, -0.281765878200531], [0.4161628782749176, -0.28447285294532776, 0.10778236389160156, 0.10621613264083862, 0.5707703232765198, -0.08483140915632248, 0.12601977586746216, 0.019390298053622246, -0.25576648116111755, -0.28177085518836975], [0.41616448760032654, -0.2844752371311188, 0.1077745258808136, 0.10621429234743118, 0.5707706809043884, -0.08482759445905685, 0.12602411210536957, 0.01939569041132927, -0.25576940178871155, -0.28176453709602356], [0.4161648154258728, -0.28447961807250977, 0.10777086019515991, 0.10621273517608643, 0.5707728862762451, -0.08483331650495529, 0.126030832529068, 0.019402431324124336, -0.2557663917541504, -0.2817632853984833], [0.4161614775657654, -0.2844788730144501, 0.10777776688337326, 0.1062178909778595, 0.5707738399505615, -0.08483997732400894, 0.12602537870407104, 0.01939735934138298, -0.2557641267776489, -0.2817731201648712], [0.41616302728652954, -0.28447848558425903, 0.10777701437473297, 0.10621727257966995, 0.570773184299469, -0.08483456820249557, 0.12602287530899048, 0.01939718797802925, -0.2557680904865265, -0.2817692160606384], [0.41616326570510864, -0.2844783365726471, 0.10777845978736877, 0.10621567815542221, 0.5707734227180481, -0.0848340392112732, 0.12602414190769196, 0.019397560507059097, -0.2557676136493683, -0.2817677855491638], [0.4161626100540161, -0.28447842597961426, 0.10777760297060013, 0.10621567815542221, 0.570773720741272, -0.08483433723449707, 0.12602537870407104, 0.019397225230932236, -0.2557673454284668, -0.2817685306072235], [0.41616305708885193, -0.28447839617729187, 0.10777701437473297, 0.10621531307697296, 0.5707734227180481, -0.08483467251062393, 0.1260254979133606, 0.01939745619893074, -0.25576695799827576, -0.2817683815956116], [0.4161629378795624, -0.28447863459587097, 0.10777624696493149, 0.10621566325426102, 0.5707734227180481, -0.0848350077867508, 0.12602569162845612, 0.019398042932152748, -0.25576695799827576, -0.28176847100257874], [0.4161624014377594, -0.2844770550727844, 0.1077801063656807, 0.1062169000506401, 0.5707728862762451, -0.08483538776636124, 0.1260223090648651, 0.0193948857486248, -0.2557665705680847, -0.2817709743976593], [0.41616323590278625, -0.2844769358634949, 0.10777802020311356, 0.10621587187051773, 0.5707725286483765, -0.08483194559812546, 0.1260230541229248, 0.019395682960748672, -0.25576847791671753, -0.281767874956131], [0.4161638021469116, -0.2844785749912262, 0.1077752634882927, 0.10621414333581924, 0.5707731246948242, -0.08483292162418365, 0.1260269582271576, 0.019398944452404976, -0.2557675242424011, -0.28176575899124146], [0.4161626398563385, -0.28447920083999634, 0.10777580738067627, 0.10621560364961624, 0.5707738399505615, -0.08483637869358063, 0.12602704763412476, 0.019398728385567665, -0.25576597452163696, -0.2817689776420593], [0.4161634147167206, -0.2844814360141754, 0.10777181386947632, 0.10621504485607147, 0.570774495601654, -0.08483638614416122, 0.12602941691875458, 0.019402453675866127, -0.255766898393631, -0.28176644444465637], [0.4161624014377594, -0.28448161482810974, 0.10777547210454941, 0.10621649026870728, 0.5707752108573914, -0.08484000712633133, 0.1260278970003128, 0.01940138079226017, -0.2557651996612549, -0.28176993131637573], [0.4161624014377594, -0.2844824194908142, 0.10777389258146286, 0.10621659457683563, 0.5707756876945496, -0.08483850210905075, 0.12602822482585907, 0.019402192905545235, -0.25576692819595337, -0.28176864981651306], [0.41616255044937134, -0.28448250889778137, 0.10777535289525986, 0.10621597617864609, 0.5707759261131287, -0.08483944833278656, 0.1260283887386322, 0.01940225251019001, -0.2557661533355713, -0.28176870942115784], [0.41616129875183105, -0.28448012471199036, 0.10777987539768219, 0.10621783137321472, 0.5707752704620361, -0.0848393663764, 0.12602414190769196, 0.01939743384718895, -0.2557661235332489, -0.28177255392074585], [0.4161628484725952, -0.28447943925857544, 0.10777752846479416, 0.10621597617864609, 0.570774257183075, -0.0848345160484314, 0.126024529337883, 0.019397923722863197, -0.25576838850975037, -0.28176820278167725], [0.41616296768188477, -0.2844794988632202, 0.10777688026428223, 0.10621492564678192, 0.570774257183075, -0.0848352238535881, 0.12602657079696655, 0.019398899748921394, -0.2557671368122101, -0.2817676365375519], [0.4161626398563385, -0.28448015451431274, 0.10777515918016434, 0.10621535778045654, 0.570774495601654, -0.08483636379241943, 0.12602771818637848, 0.019399704411625862, -0.2557666301727295, -0.281768262386322], [0.4161631166934967, -0.2844814658164978, 0.10777319967746735, 0.10621517896652222, 0.5707748532295227, -0.08483747392892838, 0.1260291337966919, 0.019401999190449715, -0.2557663917541504, -0.28176745772361755], [0.4161616265773773, -0.28447943925857544, 0.10777956247329712, 0.10621783137321472, 0.570774495601654, -0.08483951538801193, 0.12602387368679047, 0.019397150725126266, -0.2557653784751892, -0.2817727029323578], [0.4161617159843445, -0.2844753861427307, 0.1077844649553299, 0.10621864348649979, 0.5707725286483765, -0.0848340392112732, 0.12601743638515472, 0.01939099095761776, -0.2557680606842041, -0.2817731499671936], [0.41616255044937134, -0.28447026014328003, 0.10778944939374924, 0.10621736943721771, 0.5707697868347168, -0.0848274677991867, 0.1260126531124115, 0.019384704530239105, -0.25576961040496826, -0.2817719280719757], [0.4161624014377594, -0.28446295857429504, 0.10779604315757751, 0.10621744394302368, 0.570766031742096, -0.08482096344232559, 0.12600572407245636, 0.01937497779726982, -0.2557704746723175, -0.28177374601364136], [0.41616588830947876, -0.28446221351623535, 0.1077861487865448, 0.10621228814125061, 0.5707637071609497, -0.08481161296367645, 0.1260114461183548, 0.019379006698727608, -0.2557735741138458, -0.2817631959915161], [0.4161672294139862, -0.2844676971435547, 0.10777471959590912, 0.10620877146720886, 0.5707653164863586, -0.08481677621603012, 0.126024067401886, 0.019390230998396873, -0.25576961040496826, -0.2817583978176117], [0.4161651134490967, -0.28447356820106506, 0.1077699288725853, 0.10621221363544464, 0.5707685351371765, -0.08482874929904938, 0.1260291337966919, 0.019396718591451645, -0.2557651400566101, -0.28176409006118774], [0.4161633551120758, -0.28447455167770386, 0.10777626186609268, 0.10621756315231323, 0.5707697868347168, -0.08483505249023438, 0.12602229416370392, 0.01939437910914421, -0.2557643949985504, -0.2817715108394623], [0.4161648154258728, -0.28447869420051575, 0.10777097940444946, 0.10621576756238937, 0.5707718729972839, -0.08483131974935532, 0.12602610886096954, 0.019401000812649727, -0.2557687759399414, -0.2817641496658325], [0.41616466641426086, -0.28448525071144104, 0.10776644200086594, 0.10621295124292374, 0.5707759857177734, -0.08483763784170151, 0.1260361671447754, 0.01940985582768917, -0.2557661235332489, -0.2817615866661072], [0.41616132855415344, -0.28448763489723206, 0.10776951909065247, 0.1062166839838028, 0.5707787275314331, -0.08484716713428497, 0.12603579461574554, 0.01940900646150112, -0.25576284527778625, -0.2817702889442444], [0.41616153717041016, -0.28448817133903503, 0.10777047276496887, 0.1062178760766983, 0.570779025554657, -0.08484675735235214, 0.12603259086608887, 0.01940855197608471, -0.25576484203338623, -0.2817706763744354], [0.4161611497402191, -0.28448644280433655, 0.10777603089809418, 0.10621843487024307, 0.5707787871360779, -0.08484575897455215, 0.12602874636650085, 0.019405215978622437, -0.2557653784751892, -0.28177204728126526], [0.4161607027053833, -0.2844829857349396, 0.1077805906534195, 0.10621862858533859, 0.5707774758338928, -0.08484175056219101, 0.126024529337883, 0.01939956285059452, -0.2557668387889862, -0.28177303075790405], [0.4161622226238251, -0.28448110818862915, 0.1077788695693016, 0.1062159463763237, 0.5707759261131287, -0.08483639359474182, 0.12602530419826508, 0.019398855045437813, -0.25576844811439514, -0.2817688286304474], [0.41616183519363403, -0.28447821736335754, 0.10778158158063889, 0.10621607303619385, 0.5707743763923645, -0.08483618497848511, 0.12602335214614868, 0.01939518377184868, -0.2557668685913086, -0.2817710340023041], [0.41616201400756836, -0.2844747006893158, 0.10778337717056274, 0.10621694475412369, 0.5707721710205078, -0.08483259379863739, 0.1260191798210144, 0.01939070038497448, -0.25576791167259216, -0.2817718982696533], [0.4161645174026489, -0.28447622060775757, 0.10777561366558075, 0.10621341317892075, 0.5707715749740601, -0.08482816070318222, 0.12602463364601135, 0.0193963460624218, -0.25576964020729065, -0.2817640006542206], [0.4161643981933594, -0.28448089957237244, 0.10776947438716888, 0.10621224343776703, 0.5707737803459167, -0.08483409136533737, 0.12603293359279633, 0.019403882324695587, -0.2557663917541504, -0.2817629277706146], [0.41616085171699524, -0.28447842597961426, 0.10778022557497025, 0.10621862858533859, 0.5707738399505615, -0.0848417803645134, 0.1260237842798233, 0.019395653158426285, -0.25576311349868774, -0.28177565336227417], [0.4161631166934967, -0.2844778895378113, 0.1077769547700882, 0.10621745884418488, 0.5707727670669556, -0.08483283221721649, 0.12602174282073975, 0.019396420568227768, -0.255769282579422, -0.2817687690258026], [0.41616398096084595, -0.28447890281677246, 0.10777701437473297, 0.10621442645788193, 0.5707734227180481, -0.08483319729566574, 0.12602584064006805, 0.019399160519242287, -0.25576773285865784, -0.2817656695842743], [0.41616156697273254, -0.2844773530960083, 0.10778049379587173, 0.1062169149518013, 0.5707736015319824, -0.08483589440584183, 0.12602348625659943, 0.019394677132368088, -0.25576624274253845, -0.2817716598510742], [0.41616350412368774, -0.2844773828983307, 0.10777691006660461, 0.10621519386768341, 0.570772647857666, -0.08483213186264038, 0.1260240525007248, 0.019396331161260605, -0.25576838850975037, -0.281767338514328], [0.41616371273994446, -0.2844791114330292, 0.10777434706687927, 0.10621418803930283, 0.5707733631134033, -0.08483394235372543, 0.12602777779102325, 0.01939988322556019, -0.2557670772075653, -0.2817659378051758], [0.41616290807724, -0.28448110818862915, 0.10777289420366287, 0.1062152236700058, 0.5707745552062988, -0.08483738452196121, 0.12602956593036652, 0.019401760771870613, -0.2557659149169922, -0.28176766633987427], [0.4161622226238251, -0.28448066115379333, 0.10777635127305984, 0.10621701925992966, 0.5707747340202332, -0.0848393514752388, 0.12602634727954865, 0.019399704411625862, -0.25576549768447876, -0.281770795583725], [0.4161614179611206, -0.2844766676425934, 0.10778380185365677, 0.10621900856494904, 0.5707732439041138, -0.08483676612377167, 0.12601877748966217, 0.0193925928324461, -0.2557668089866638, -0.2817740738391876], [0.41616353392601013, -0.28447583317756653, 0.10778016597032547, 0.10621563345193863, 0.5707721710205078, -0.08482913672924042, 0.12602074444293976, 0.01939379796385765, -0.25577017664909363, -0.28176698088645935], [0.41616302728652954, -0.2844740152359009, 0.10778298228979111, 0.10621502995491028, 0.5707714557647705, -0.08483074605464935, 0.1260208636522293, 0.019391467794775963, -0.2557675242424011, -0.28176915645599365], [0.41616344451904297, -0.28447437286376953, 0.10777802020311356, 0.1062147244811058, 0.5707709789276123, -0.08482876420021057, 0.12602268159389496, 0.019392941147089005, -0.25576862692832947, -0.28176721930503845], [0.41616442799568176, -0.28447622060775757, 0.10777520388364792, 0.10621361434459686, 0.5707712769508362, -0.08483085036277771, 0.12602576613426208, 0.019396867603063583, -0.255767285823822, -0.2817654609680176], [0.41616198420524597, -0.28447386622428894, 0.10778260976076126, 0.10621781647205353, 0.5707710385322571, -0.08483435213565826, 0.1260194629430771, 0.019390856847167015, -0.2557656764984131, -0.28177326917648315], [0.4161635935306549, -0.28447267413139343, 0.10778144747018814, 0.1062166690826416, 0.5707699060440063, -0.0848277285695076, 0.1260175257921219, 0.01939011923968792, -0.2557695806026459, -0.2817687690258026], [0.41616398096084595, -0.28447166085243225, 0.1077829971909523, 0.10621501505374908, 0.5707694888114929, -0.08482685685157776, 0.1260184496641159, 0.01938963495194912, -0.2557687759399414, -0.2817676067352295], [0.41616401076316833, -0.28447291254997253, 0.10777842998504639, 0.10621412098407745, 0.5707699060440063, -0.0848264992237091, 0.12602214515209198, 0.019391989335417747, -0.25576889514923096, -0.28176596760749817], [0.4161635637283325, -0.2844720184803009, 0.10778147727251053, 0.10621523857116699, 0.5707694888114929, -0.08482960611581802, 0.12602001428604126, 0.019390089437365532, -0.2557668089866638, -0.28176942467689514], [0.4161622226238251, -0.2844669818878174, 0.107789546251297, 0.10621869564056396, 0.5707674026489258, -0.0848272517323494, 0.12601053714752197, 0.01938125677406788, -0.25576797127723694, -0.28177475929260254], [0.4161648750305176, -0.28446486592292786, 0.10778723657131195, 0.10621542483568192, 0.5707653164863586, -0.08481772989034653, 0.1260102093219757, 0.019381018355488777, -0.25577208399772644, -0.2817670702934265], [0.41616517305374146, -0.28446435928344727, 0.10778620839118958, 0.10621321946382523, 0.5707650184631348, -0.0848175585269928, 0.12601377069950104, 0.01938186027109623, -0.2557702958583832, -0.28176552057266235], [0.4161636233329773, -0.2844608426094055, 0.10779109597206116, 0.10621588677167892, 0.5707634687423706, -0.08481881767511368, 0.12600859999656677, 0.01937536522746086, -0.2557688057422638, -0.2817716598510742], [0.41616594791412354, -0.2844600975513458, 0.10778636485338211, 0.10621403157711029, 0.5707618594169617, -0.08481255918741226, 0.1260090321302414, 0.019377049058675766, -0.2557719349861145, -0.28176572918891907], [0.4161664545536041, -0.28446149826049805, 0.10778418928384781, 0.1062125414609909, 0.5707622766494751, -0.0848141685128212, 0.12601296603679657, 0.019380422309041023, -0.255770206451416, -0.2817639112472534], [0.41616445779800415, -0.2844598889350891, 0.10778898745775223, 0.1062157079577446, 0.5707621574401855, -0.08481734991073608, 0.12600892782211304, 0.01937592402100563, -0.2557685673236847, -0.281770259141922], [0.4161660969257355, -0.28446000814437866, 0.10778576135635376, 0.10621441155672073, 0.570761501789093, -0.08481281250715256, 0.12600912153720856, 0.019377443939447403, -0.2557715177536011, -0.28176572918891907], [0.4161677360534668, -0.28446587920188904, 0.10777561366558075, 0.10621044784784317, 0.570763885974884, -0.08481442928314209, 0.12602035701274872, 0.019388487562537193, -0.25577080249786377, -0.2817584276199341], [0.4161641299724579, -0.2844669222831726, 0.10778217017650604, 0.1062149852514267, 0.5707658529281616, -0.08482582122087479, 0.12601816654205322, 0.019385740160942078, -0.2557653486728668, -0.2817695438861847], [0.4161645770072937, -0.28446781635284424, 0.10777996480464935, 0.10621629655361176, 0.570766031742096, -0.08482294529676437, 0.12601585686206818, 0.01938634365797043, -0.25576919317245483, -0.28176799416542053], [0.41616788506507874, -0.28447696566581726, 0.1077653244137764, 0.10620994865894318, 0.5707696676254272, -0.08482356369495392, 0.12603135406970978, 0.01940315216779709, -0.2557699382305145, -0.2817552089691162], [0.41616103053092957, -0.28447476029396057, 0.1077837347984314, 0.10621853917837143, 0.5707717537879944, -0.08484041690826416, 0.12602177262306213, 0.01939200423657894, -0.2557612657546997, -0.28177669644355774], [0.41616320610046387, -0.2844744324684143, 0.10777776688337326, 0.10621825605630875, 0.5707706809043884, -0.08482874929904938, 0.12601852416992188, 0.019392160698771477, -0.2557704746723175, -0.28176918625831604], [0.4161647856235504, -0.28447380661964417, 0.10778224468231201, 0.10621451586484909, 0.5707704424858093, -0.08482909947633743, 0.1260198950767517, 0.019392861053347588, -0.2557681202888489, -0.281766414642334], [0.41616296768188477, -0.2844753563404083, 0.10777707397937775, 0.10621501505374908, 0.5707717537879944, -0.08482926338911057, 0.12602432072162628, 0.019394520670175552, -0.2557685971260071, -0.2817668318748474], [0.41616424918174744, -0.28447675704956055, 0.10777594149112701, 0.10621374845504761, 0.5707718133926392, -0.08483221381902695, 0.12602598965168, 0.01939687505364418, -0.25576668977737427, -0.28176629543304443], [0.41616329550743103, -0.2844790816307068, 0.10777247697114944, 0.10621510446071625, 0.5707731246948242, -0.08483469486236572, 0.12602828443050385, 0.019400151446461678, -0.2557666301727295, -0.28176695108413696], [0.41616344451904297, -0.2844812870025635, 0.10777267068624496, 0.10621541738510132, 0.5707743167877197, -0.08483777940273285, 0.1260291039943695, 0.01940234936773777, -0.2557657063007355, -0.28176742792129517], [0.4161617159843445, -0.28448012471199036, 0.10777808725833893, 0.10621802508831024, 0.5707746744155884, -0.08483956009149551, 0.1260247379541397, 0.01939847506582737, -0.25576555728912354, -0.28177207708358765], [0.41616353392601013, -0.2844822108745575, 0.10777240246534348, 0.1062152087688446, 0.5707752108573914, -0.08483537286520004, 0.12602877616882324, 0.019402973353862762, -0.25576841831207275, -0.2817654311656952], [0.41616296768188477, -0.28448450565338135, 0.10777167230844498, 0.10621439665555954, 0.5707767605781555, -0.0848403200507164, 0.12603294849395752, 0.019406020641326904, -0.25576549768447876, -0.281766414642334], [0.41616153717041016, -0.2844853401184082, 0.10777205228805542, 0.1062166690826416, 0.5707775950431824, -0.08484365791082382, 0.1260320246219635, 0.019405417144298553, -0.25576475262641907, -0.2817702293395996], [0.4161624014377594, -0.2844865620136261, 0.10777069628238678, 0.10621623694896698, 0.570777952671051, -0.0848432183265686, 0.12603230774402618, 0.019407466053962708, -0.25576579570770264, -0.281768262386322], [0.4161614775657654, -0.2844862937927246, 0.10777393728494644, 0.10621727257966995, 0.5707784295082092, -0.08484487235546112, 0.12603090703487396, 0.019405998289585114, -0.25576505064964294, -0.28177061676979065], [0.41616126894950867, -0.2844850420951843, 0.10777576267719269, 0.10621760785579681, 0.5707780718803406, -0.08484308421611786, 0.12602871656417847, 0.019403591752052307, -0.2557661235332489, -0.28177112340927124], [0.41616198420524597, -0.284484326839447, 0.10777539759874344, 0.10621631145477295, 0.570777416229248, -0.08484082669019699, 0.12602895498275757, 0.019403405487537384, -0.2557668089866638, -0.28176912665367126], [0.4161619246006012, -0.28448405861854553, 0.10777488350868225, 0.10621591657400131, 0.5707772374153137, -0.08484074473381042, 0.12602977454662323, 0.0194033682346344, -0.255766361951828, -0.2817690670490265], [0.4161616563796997, -0.28448283672332764, 0.10777644068002701, 0.10621660947799683, 0.5707765817642212, -0.08484092354774475, 0.12602795660495758, 0.01940138079226017, -0.2557659447193146, -0.2817706763744354], [0.416162371635437, -0.28448283672332764, 0.1077745109796524, 0.10621599107980728, 0.5707761645317078, -0.08483888953924179, 0.12602852284908295, 0.01940229721367359, -0.25576695799827576, -0.2817685604095459], [0.4161621034145355, -0.2844821512699127, 0.10777635127305984, 0.10621625185012817, 0.5707759857177734, -0.08483976125717163, 0.12602771818637848, 0.01940120942890644, -0.25576603412628174, -0.2817698121070862], [0.4161624014377594, -0.2844826877117157, 0.10777399688959122, 0.10621588677167892, 0.5707759857177734, -0.08483856916427612, 0.12602898478507996, 0.01940244622528553, -0.25576692819595337, -0.28176820278167725], [0.41616290807724, -0.28448450565338135, 0.10777156800031662, 0.10621488094329834, 0.5707767009735107, -0.08484002202749252, 0.1260320246219635, 0.019405581057071686, -0.2557661235332489, -0.281766802072525], [0.4161612391471863, -0.28448328375816345, 0.10777632147073746, 0.10621747374534607, 0.5707768201828003, -0.08484315127134323, 0.12602829933166504, 0.01940190978348255, -0.2557646930217743, -0.2817722260951996], [0.41616225242614746, -0.28448301553726196, 0.1077747493982315, 0.10621682554483414, 0.5707762241363525, -0.08483923971652985, 0.12602759897708893, 0.019402185454964638, -0.25576725602149963, -0.28176915645599365], [0.41616326570510864, -0.28448548913002014, 0.10777045786380768, 0.10621432214975357, 0.5707772374153137, -0.08483950793743134, 0.12603311240673065, 0.019407249987125397, -0.2557668387889862, -0.2817651331424713], [0.41616201400756836, -0.28448790311813354, 0.10776904970407486, 0.1062152236700058, 0.5707789063453674, -0.08484482765197754, 0.12603607773780823, 0.01940958760678768, -0.2557644844055176, -0.2817678153514862], [0.4161604940891266, -0.28448575735092163, 0.10777595639228821, 0.10621872544288635, 0.5707784295082092, -0.08484742045402527, 0.12602916359901428, 0.019403904676437378, -0.25576379895210266, -0.28177428245544434], [0.4161621034145355, -0.2844855785369873, 0.10777321457862854, 0.10621712356805801, 0.5707778334617615, -0.08484120666980743, 0.12602916359901428, 0.019405215978622437, -0.2557676136493683, -0.2817687392234802], [0.41616177558898926, -0.2844843864440918, 0.10777702927589417, 0.10621646046638489, 0.5707777142524719, -0.0848422423005104, 0.12602880597114563, 0.01940327137708664, -0.255765825510025, -0.2817700505256653], [0.41616058349609375, -0.2844807207584381, 0.1077812984585762, 0.10621827095746994, 0.5707761645317078, -0.08484027534723282, 0.12602365016937256, 0.019396867603063583, -0.2557664215564728, -0.28177374601364136], [0.4161628782749176, -0.28447937965393066, 0.10777819156646729, 0.10621557384729385, 0.5707743763923645, -0.08483415096998215, 0.1260242611169815, 0.019397545605897903, -0.255768746137619, -0.2817680239677429], [0.41616296768188477, -0.28447943925857544, 0.10777675360441208, 0.10621460527181625, 0.570774257183075, -0.08483496308326721, 0.1260269284248352, 0.019398869946599007, -0.25576716661453247, -0.28176742792129517], [0.4161636531352997, -0.2844833433628082, 0.10776861757040024, 0.10621338337659836, 0.5707756280899048, -0.08483659476041794, 0.12603355944156647, 0.01940557360649109, -0.255766898393631, -0.2817641496658325], [0.4161622226238251, -0.28448450565338135, 0.10777205228805542, 0.1062159463763237, 0.5707767009735107, -0.08484381437301636, 0.12603220343589783, 0.01940535008907318, -0.25576362013816833, -0.28176987171173096], [0.4161607325077057, -0.28448164463043213, 0.10777883976697922, 0.10621970146894455, 0.5707759857177734, -0.08484289050102234, 0.12602399289608002, 0.019398869946599007, -0.25576525926589966, -0.2817747890949249], [0.4161631166934967, -0.2844814658164978, 0.10777636617422104, 0.10621640086174011, 0.5707752704620361, -0.08483567833900452, 0.1260252594947815, 0.01940060593187809, -0.25576892495155334, -0.281767338514328], [0.41616299748420715, -0.28448307514190674, 0.10777381807565689, 0.10621420294046402, 0.5707763433456421, -0.08483745902776718, 0.12603087723255157, 0.01940375566482544, -0.25576698780059814, -0.28176581859588623], [0.41616132855415344, -0.2844819724559784, 0.10777686536312103, 0.10621663928031921, 0.5707762241363525, -0.0848412960767746, 0.12602825462818146, 0.019400300458073616, -0.2557649314403534, -0.2817716598510742], [0.4161621630191803, -0.2844805121421814, 0.10777702927589417, 0.10621701925992966, 0.5707749724388123, -0.08483809977769852, 0.12602511048316956, 0.019398795440793037, -0.25576695799827576, -0.28177058696746826], [0.4161633849143982, -0.28448185324668884, 0.10777358710765839, 0.10621491074562073, 0.5707751512527466, -0.0848361924290657, 0.1260286569595337, 0.01940249092876911, -0.2557676434516907, -0.2817660868167877], [0.4161623418331146, -0.28448283672332764, 0.10777408629655838, 0.10621554404497147, 0.570776104927063, -0.08483979851007462, 0.12603016197681427, 0.019402936100959778, -0.2557656168937683, -0.2817685306072235], [0.4161616861820221, -0.2844817042350769, 0.10777672380208969, 0.10621725767850876, 0.5707757472991943, -0.08484048396348953, 0.12602674961090088, 0.0194000992923975, -0.2557657063007355, -0.2817714214324951], [0.41616255044937134, -0.28448113799095154, 0.10777629166841507, 0.10621650516986847, 0.5707752108573914, -0.08483748883008957, 0.12602604925632477, 0.01940016634762287, -0.2557673156261444, -0.2817690372467041], [0.41616252064704895, -0.2844808101654053, 0.10777698457241058, 0.1062159463763237, 0.5707750916481018, -0.08483730256557465, 0.12602657079696655, 0.019399860873818398, -0.2557668685913086, -0.2817688286304474], [0.4161626100540161, -0.284481406211853, 0.10777480900287628, 0.10621543973684311, 0.5707752704620361, -0.08483710139989853, 0.12602831423282623, 0.01940104551613331, -0.25576698780059814, -0.28176793456077576], [0.4161626100540161, -0.2844819724559784, 0.10777439177036285, 0.1062154695391655, 0.5707754492759705, -0.08483865112066269, 0.12602896988391876, 0.019401879981160164, -0.2557660937309265, -0.28176841139793396], [0.4161614179611206, -0.28447940945625305, 0.10778004676103592, 0.10621793568134308, 0.5707746148109436, -0.0848393514752388, 0.12602350115776062, 0.019396696239709854, -0.2557657063007355, -0.28177300095558167], [0.41616225242614746, -0.2844763994216919, 0.10778230428695679, 0.10621762275695801, 0.5707728862762451, -0.08483368903398514, 0.12601947784423828, 0.01939300075173378, -0.255768358707428, -0.28177130222320557], [0.4161626100540161, -0.2844725549221039, 0.10778634995222092, 0.10621678084135056, 0.5707709193229675, -0.08482969552278519, 0.1260162889957428, 0.019388271495699883, -0.255768746137619, -0.28177106380462646], [0.4161633849143982, -0.2844703793525696, 0.10778458416461945, 0.10621525347232819, 0.5707692503929138, -0.08482497185468674, 0.12601660192012787, 0.019386813044548035, -0.2557699680328369, -0.28176844120025635], [0.4161642789840698, -0.2844696342945099, 0.10778260976076126, 0.10621385276317596, 0.5707681775093079, -0.0848241075873375, 0.1260182410478592, 0.01938745379447937, -0.25576910376548767, -0.2817668616771698], [0.41616353392601013, -0.2844676375389099, 0.10778495669364929, 0.10621560364961624, 0.5707671642303467, -0.08482491225004196, 0.1260153204202652, 0.01938433200120926, -0.2557680904865265, -0.28177011013031006], [0.4161642789840698, -0.2844659090042114, 0.10778539627790451, 0.1062157079577446, 0.5707657933235168, -0.08482153713703156, 0.12601284682750702, 0.019382620230317116, -0.25576961040496826, -0.28176888823509216], [0.416164755821228, -0.28446459770202637, 0.1077863797545433, 0.10621501505374908, 0.5707650184631348, -0.08481944352388382, 0.1260121464729309, 0.01938151754438877, -0.25576990842819214, -0.2817677855491638], [0.41616538166999817, -0.2844657897949219, 0.10778209567070007, 0.10621343553066254, 0.5707652568817139, -0.08481831848621368, 0.12601593136787415, 0.019384481012821198, -0.2557702958583832, -0.2817647457122803], [0.4161660969257355, -0.2844703793525696, 0.10777468979358673, 0.10621165484189987, 0.5707671046257019, -0.08482183516025543, 0.12602369487285614, 0.01939222775399685, -0.2557687759399414, -0.28176167607307434], [0.4161638617515564, -0.284471720457077, 0.10777834057807922, 0.1062152236700058, 0.5707685947418213, -0.08483000099658966, 0.12602192163467407, 0.019391370937228203, -0.25576546788215637, -0.2817690372467041], [0.4161635637283325, -0.2844712734222412, 0.10778069496154785, 0.10621733963489532, 0.5707685947418213, -0.0848287045955658, 0.12601742148399353, 0.019389284774661064, -0.2557677626609802, -0.281770259141922], [0.4161652624607086, -0.2844740152359009, 0.10777609050273895, 0.10621412843465805, 0.5707696676254272, -0.08482606709003448, 0.12602241337299347, 0.019394878298044205, -0.2557695209980011, -0.28176361322402954], [0.41616368293762207, -0.28447583317756653, 0.10777710378170013, 0.10621460527181625, 0.5707715153694153, -0.08483166247606277, 0.12602519989013672, 0.019395973533391953, -0.2557665705680847, -0.28176695108413696], [0.4161635637283325, -0.28447818756103516, 0.10777348279953003, 0.10621495544910431, 0.570772647857666, -0.08483327925205231, 0.12602725625038147, 0.01939871348440647, -0.25576701760292053, -0.28176674246788025], [0.41616320610046387, -0.2844788432121277, 0.10777579247951508, 0.10621587187051773, 0.570773184299469, -0.08483640849590302, 0.12602607905864716, 0.01939878799021244, -0.255765825510025, -0.2817688584327698], [0.41616398096084595, -0.28448352217674255, 0.10776757448911667, 0.1062142476439476, 0.5707753300666809, -0.08483610302209854, 0.12603288888931274, 0.01940649002790451, -0.2557675242424011, -0.28176355361938477], [0.41616106033325195, -0.28448086977005005, 0.10778070986270905, 0.10621840506792068, 0.5707755088806152, -0.0848439559340477, 0.12602505087852478, 0.019398408010601997, -0.2557630240917206, -0.2817749083042145], [0.4161616563796997, -0.2844785153865814, 0.10777957737445831, 0.10621875524520874, 0.5707741379737854, -0.08483515679836273, 0.12602093815803528, 0.019395355135202408, -0.25576892495155334, -0.28177157044410706], [0.4161643385887146, -0.2844795286655426, 0.10777639597654343, 0.10621364414691925, 0.5707738399505615, -0.08483229577541351, 0.12602637708187103, 0.019399793818593025, -0.2557687759399414, -0.28176426887512207], [0.4161614179611206, -0.28447774052619934, 0.10778063535690308, 0.10621653497219086, 0.5707740187644958, -0.08483688533306122, 0.12602438032627106, 0.01939517632126808, -0.2557656764984131, -0.2817718982696533], [0.41616326570510864, -0.2844778001308441, 0.10777626186609268, 0.10621541738510132, 0.5707728862762451, -0.08483276516199112, 0.1260245144367218, 0.01939668133854866, -0.2557682394981384, -0.28176772594451904], [0.4161641001701355, -0.28448033332824707, 0.10777247697114944, 0.10621374845504761, 0.5707738399505615, -0.08483447879552841, 0.126029372215271, 0.01940193958580494, -0.2557670772075653, -0.28176483511924744], [0.4161630868911743, -0.28448402881622314, 0.10776904970407486, 0.10621457546949387, 0.5707759857177734, -0.08483953773975372, 0.1260336935520172, 0.019406266510486603, -0.255765438079834, -0.2817661166191101], [0.41616180539131165, -0.2844843864440918, 0.10777336359024048, 0.10621722787618637, 0.5707768201828003, -0.08484406024217606, 0.12603029608726501, 0.019404344260692596, -0.25576406717300415, -0.281771183013916], [0.41616225242614746, -0.2844853401184082, 0.10777188837528229, 0.10621707886457443, 0.5707772970199585, -0.08484166860580444, 0.12603023648262024, 0.019405722618103027, -0.2557665705680847, -0.2817687392234802], [0.4161623418331146, -0.28448641300201416, 0.10777247697114944, 0.1062159463763237, 0.5707781910896301, -0.08484284579753876, 0.12603208422660828, 0.019407115876674652, -0.255765825510025, -0.28176799416542053], [0.41616103053092957, -0.28448548913002014, 0.10777520388364792, 0.10621736943721771, 0.5707783102989197, -0.08484428375959396, 0.12603016197681427, 0.019404292106628418, -0.25576522946357727, -0.2817714512348175], [0.41616249084472656, -0.28448688983917236, 0.10777048766613007, 0.1062154695391655, 0.5707784295082092, -0.08484179526567459, 0.1260329931974411, 0.01940770447254181, -0.2557668387889862, -0.28176695108413696], [0.4161621332168579, -0.28448882699012756, 0.10776932537555695, 0.10621516406536102, 0.57077956199646, -0.08484546095132828, 0.12603606283664703, 0.019410504028201103, -0.25576481223106384, -0.28176748752593994], [0.41616109013557434, -0.2844896912574768, 0.10776981711387634, 0.1062169149518013, 0.5707802772521973, -0.08484827727079391, 0.1260354220867157, 0.01941034011542797, -0.2557642161846161, -0.28177034854888916], [0.41616126894950867, -0.28448978066444397, 0.10777091979980469, 0.10621733218431473, 0.570780336856842, -0.0848480835556984, 0.12603387236595154, 0.019410042092204094, -0.2557648718357086, -0.28177037835121155], [0.41616103053092957, -0.2844892144203186, 0.10777274519205093, 0.10621748864650726, 0.5707803964614868, -0.08484737575054169, 0.126032754778862, 0.01940888725221157, -0.25576528906822205, -0.2817706763744354], [0.41616111993789673, -0.28448861837387085, 0.10777312517166138, 0.10621698945760727, 0.5707801580429077, -0.08484605699777603, 0.12603259086608887, 0.019408075138926506, -0.25576576590538025, -0.28177008032798767], [0.416161447763443, -0.28448864817619324, 0.10777200758457184, 0.1062161922454834, 0.5707800388336182, -0.08484550565481186, 0.1260336935520172, 0.019408633932471275, -0.25576573610305786, -0.28176912665367126], [0.4161621034145355, -0.28449124097824097, 0.10776667296886444, 0.10621485114097595, 0.570780873298645, -0.08484639972448349, 0.12603852152824402, 0.019413400441408157, -0.25576549768447876, -0.2817663550376892], [0.4161612391471863, -0.28449326753616333, 0.10776644200086594, 0.1062159463763237, 0.5707821846008301, -0.08485153317451477, 0.12603998184204102, 0.01941538229584694, -0.25576329231262207, -0.28176894783973694], [0.4161597192287445, -0.28449150919914246, 0.10777252167463303, 0.10621926188468933, 0.570781946182251, -0.08485326915979385, 0.12603382766246796, 0.019410451874136925, -0.2557631731033325, -0.2817744314670563], [0.4161607623100281, -0.28448981046676636, 0.10777371376752853, 0.10621846467256546, 0.5707809329032898, -0.08484768122434616, 0.12603114545345306, 0.019408581778407097, -0.25576627254486084, -0.2817714214324951], [0.4161609709262848, -0.2844878137111664, 0.10777617990970612, 0.1062171533703804, 0.5707801580429077, -0.08484547585248947, 0.1260305494070053, 0.019406288862228394, -0.2557661533355713, -0.2817707359790802], [0.41616010665893555, -0.28448331356048584, 0.10778138786554337, 0.10621827095746994, 0.5707780718803406, -0.08484332263469696, 0.12602533400058746, 0.019399205222725868, -0.25576603412628174, -0.28177422285079956], [0.4161616265773773, -0.2844794690608978, 0.10778158158063889, 0.10621701925992966, 0.5707752704620361, -0.08483648300170898, 0.1260223090648651, 0.019395705312490463, -0.2557682991027832, -0.28177130222320557], [0.416162371635437, -0.28447631001472473, 0.10778281837701797, 0.10621590167284012, 0.5707731246948242, -0.08483301103115082, 0.1260208934545517, 0.019392970949411392, -0.25576820969581604, -0.2817701995372772], [0.4161624610424042, -0.2844732701778412, 0.10778390616178513, 0.10621610283851624, 0.5707712173461914, -0.08483016490936279, 0.12601862847805023, 0.01938948594033718, -0.25576838850975037, -0.28177064657211304], [0.4161643981933594, -0.28447413444519043, 0.10777752846479416, 0.10621355473995209, 0.5707705616950989, -0.08482690900564194, 0.1260228157043457, 0.01939353719353676, -0.25576940178871155, -0.28176501393318176], [0.4161642789840698, -0.28447696566581726, 0.10777375847101212, 0.10621314495801926, 0.5707716941833496, -0.08483128994703293, 0.12602777779102325, 0.01939825899899006, -0.2557668685913086, -0.2817648649215698], [0.4161641299724579, -0.28448235988616943, 0.10776670277118683, 0.10621345043182373, 0.570774257183075, -0.08483617007732391, 0.1260339766740799, 0.019405759871006012, -0.25576600432395935, -0.28176382184028625], [0.4161626696586609, -0.28448498249053955, 0.10776972770690918, 0.10621613264083862, 0.5707764029502869, -0.08484385162591934, 0.12603315711021423, 0.01940702646970749, -0.255763441324234, -0.28176894783973694], [0.41616031527519226, -0.28448137640953064, 0.10778070986270905, 0.10622081905603409, 0.5707759261131287, -0.0848442018032074, 0.12602250277996063, 0.019397946074604988, -0.25576457381248474, -0.2817765772342682], [0.4161631166934967, -0.284481018781662, 0.10777686536312103, 0.10621671378612518, 0.5707750916481018, -0.08483429253101349, 0.12602415680885315, 0.01939987577497959, -0.25576990842819214, -0.2817670404911041], [0.41616255044937134, -0.28448015451431274, 0.1077793538570404, 0.10621502995491028, 0.5707752108573914, -0.08483648300170898, 0.12602640688419342, 0.019398817792534828, -0.2557668387889862, -0.2817683815956116], [0.41616249084472656, -0.2844812572002411, 0.10777358710765839, 0.10621480643749237, 0.5707753300666809, -0.08483613282442093, 0.12602950632572174, 0.01940091885626316, -0.255767285823822, -0.281767338514328], [0.41616296768188477, -0.28448182344436646, 0.10777395218610764, 0.10621504485607147, 0.5707752108573914, -0.08483916521072388, 0.1260293871164322, 0.0194020364433527, -0.25576546788215637, -0.2817683815956116], [0.4161611795425415, -0.2844790816307068, 0.10778019577264786, 0.10621862858533859, 0.570774495601654, -0.08483967185020447, 0.12602277100086212, 0.019396211951971054, -0.25576555728912354, -0.2817738652229309], [0.4161631166934967, -0.2844782769680023, 0.107778400182724, 0.1062164455652237, 0.5707734227180481, -0.08483315259218216, 0.12602262198925018, 0.019396644085645676, -0.25576895475387573, -0.28176820278167725], [0.41616398096084595, -0.2844809591770172, 0.10777293890714645, 0.10621330887079239, 0.5707745552062988, -0.08483365178108215, 0.12602993845939636, 0.01940232701599598, -0.25576794147491455, -0.28176385164260864], [0.4161616861820221, -0.2844802439212799, 0.10777746140956879, 0.10621635615825653, 0.5707749724388123, -0.08483988046646118, 0.1260274052619934, 0.019398817792534828, -0.25576457381248474, -0.2817714810371399], [0.41616255044937134, -0.28447994589805603, 0.10777556896209717, 0.10621672868728638, 0.570774257183075, -0.08483652770519257, 0.1260254681110382, 0.019398855045437813, -0.255767285823822, -0.28176945447921753], [0.41616231203079224, -0.28447726368904114, 0.1077820360660553, 0.10621731728315353, 0.5707732439041138, -0.08483617007732391, 0.12602108716964722, 0.01939460262656212, -0.2557666003704071, -0.2817716598510742], [0.41616347432136536, -0.28447866439819336, 0.10777517408132553, 0.10621492564678192, 0.5707734227180481, -0.08483133465051651, 0.12602578103542328, 0.01939842291176319, -0.25576937198638916, -0.28176555037498474], [0.41616445779800415, -0.28448328375816345, 0.10776867717504501, 0.1062120571732521, 0.5707753300666809, -0.08483599126338959, 0.12603457272052765, 0.01940641552209854, -0.25576651096343994, -0.28176239132881165], [0.41616156697273254, -0.28448477387428284, 0.10777119547128677, 0.10621632635593414, 0.5707769989967346, -0.08484449982643127, 0.12603320181369781, 0.019405566155910492, -0.2557632327079773, -0.28177061676979065], [0.4161621630191803, -0.28448569774627686, 0.10777099430561066, 0.1062173843383789, 0.5707772970199585, -0.0848434641957283, 0.1260307878255844, 0.019406214356422424, -0.25576552748680115, -0.2817697525024414], [0.41616228222846985, -0.28448668122291565, 0.107772096991539, 0.10621669888496399, 0.5707781910896301, -0.08484350144863129, 0.1260315477848053, 0.01940753310918808, -0.2557658553123474, -0.28176847100257874], [0.41616085171699524, -0.2844851315021515, 0.1077769547700882, 0.10621802508831024, 0.5707782506942749, -0.08484435081481934, 0.12602859735488892, 0.01940334588289261, -0.25576531887054443, -0.2817722260951996], [0.41616156697273254, -0.2844833731651306, 0.10777713358402252, 0.10621710866689682, 0.570777177810669, -0.08484037220478058, 0.1260269582271576, 0.01940140314400196, -0.25576716661453247, -0.2817704677581787], [0.4161619544029236, -0.2844814956188202, 0.10777853429317474, 0.10621628165245056, 0.5707759857177734, -0.08483868837356567, 0.12602607905864716, 0.01939954049885273, -0.25576692819595337, -0.2817700505256653], [0.41616252064704895, -0.28448164463043213, 0.10777509957551956, 0.10621529817581177, 0.5707756280899048, -0.08483688533306122, 0.12602822482585907, 0.01940097101032734, -0.25576743483543396, -0.2817678153514862], [0.4161619246006012, -0.28447970747947693, 0.10777919739484787, 0.10621652007102966, 0.5707747340202332, -0.08483860641717911, 0.12602508068084717, 0.019397635012865067, -0.25576573610305786, -0.28177130222320557], [0.41616207361221313, -0.2844775915145874, 0.10777997970581055, 0.10621719807386398, 0.5707734227180481, -0.08483494818210602, 0.12602202594280243, 0.019394908100366592, -0.25576767325401306, -0.2817709743976593], [0.41616392135620117, -0.2844787538051605, 0.10777553915977478, 0.1062142625451088, 0.5707732439041138, -0.08483213186264038, 0.12602609395980835, 0.019398802891373634, -0.2557685375213623, -0.2817654013633728], [0.4161621332168579, -0.2844773828983307, 0.10778000205755234, 0.10621625185012817, 0.5707732439041138, -0.08483614772558212, 0.12602394819259644, 0.019395429641008377, -0.25576579570770264, -0.2817709445953369], [0.41616326570510864, -0.28447815775871277, 0.10777536779642105, 0.10621548444032669, 0.5707730054855347, -0.08483278006315231, 0.1260252296924591, 0.019397560507059097, -0.25576820969581604, -0.2817672789096832], [0.41616296768188477, -0.28447720408439636, 0.10777944326400757, 0.10621588677167892, 0.5707727670669556, -0.08483508229255676, 0.12602350115776062, 0.019395869225263596, -0.2557663023471832, -0.28176963329315186], [0.4161624610424042, -0.2844761610031128, 0.1077796071767807, 0.10621684044599533, 0.5707724094390869, -0.08483289182186127, 0.12602178752422333, 0.019393961876630783, -0.2557677924633026, -0.28177008032798767], [0.4161638021469116, -0.28447622060775757, 0.1077783852815628, 0.10621495544910431, 0.5707719326019287, -0.0848311260342598, 0.126023069024086, 0.01939527317881584, -0.25576817989349365, -0.2817670702934265], [0.4161628782749176, -0.2844756245613098, 0.1077796220779419, 0.10621576756238937, 0.5707719922065735, -0.08483247458934784, 0.12602268159389496, 0.019394006580114365, -0.25576716661453247, -0.2817692160606384], [0.4161631464958191, -0.28447484970092773, 0.10777987539768219, 0.10621591657400131, 0.570771336555481, -0.08483127504587173, 0.1260213702917099, 0.019392933696508408, -0.2557677626609802, -0.28176915645599365], [0.41616445779800415, -0.28447750210762024, 0.10777363181114197, 0.10621370375156403, 0.570772111415863, -0.08483031392097473, 0.12602674961090088, 0.01939857192337513, -0.25576847791671753, -0.2817641794681549], [0.416162371635437, -0.28447628021240234, 0.10778043419122696, 0.10621656477451324, 0.5707724094390869, -0.08483607321977615, 0.12602294981479645, 0.01939437910914421, -0.2557651102542877, -0.28177160024642944], [0.4161621332168579, -0.2844730019569397, 0.10778389126062393, 0.10621839016675949, 0.570770800113678, -0.08483143895864487, 0.12601648271083832, 0.019388912245631218, -0.2557681202888489, -0.28177276253700256], [0.4161646366119385, -0.2844730019569397, 0.10778038948774338, 0.10621451586484909, 0.5707699060440063, -0.08482570946216583, 0.12601950764656067, 0.01939171366393566, -0.255770206451416, -0.2817653715610504], [0.41616350412368774, -0.28447291254997253, 0.10778097808361053, 0.10621451586484909, 0.570770263671875, -0.08482858538627625, 0.12602147459983826, 0.0193913783878088, -0.25576770305633545, -0.28176772594451904], [0.4161641299724579, -0.28447502851486206, 0.10777520388364792, 0.10621389746665955, 0.5707707405090332, -0.08482880890369415, 0.12602493166923523, 0.019395139068365097, -0.2557681202888489, -0.28176552057266235], [0.41616353392601013, -0.2844754457473755, 0.10777773708105087, 0.10621532797813416, 0.5707711577415466, -0.08483301103115082, 0.12602367997169495, 0.01939493790268898, -0.25576603412628174, -0.281768798828125], [0.41616296768188477, -0.28447502851486206, 0.10777903348207474, 0.10621694475412369, 0.5707712173461914, -0.08483219891786575, 0.126021146774292, 0.019393417984247208, -0.2557674050331116, -0.28176993131637573], [0.4161643087863922, -0.28447678685188293, 0.10777588188648224, 0.10621469467878342, 0.5707717537879944, -0.08483042567968369, 0.12602442502975464, 0.0193970687687397, -0.25576847791671753, -0.2817654311656952], [0.41616395115852356, -0.28448033332824707, 0.10777171701192856, 0.10621374845504761, 0.5707737803459167, -0.08483421802520752, 0.1260303556919098, 0.019402170553803444, -0.2557668387889862, -0.2817646265029907], [0.4161624014377594, -0.284481406211853, 0.10777398198843002, 0.10621607303619385, 0.5707749128341675, -0.08483981341123581, 0.12602922320365906, 0.01940152235329151, -0.2557647228240967, -0.28176966309547424], [0.41616299748420715, -0.2844836711883545, 0.10777051746845245, 0.1062159314751625, 0.5707758665084839, -0.08483915030956268, 0.12603068351745605, 0.01940491795539856, -0.2557665705680847, -0.2817671597003937], [0.4161611795425415, -0.2844805121421814, 0.1077812984585762, 0.10621868073940277, 0.5707754492759705, -0.08484218269586563, 0.12602342665195465, 0.019397731870412827, -0.25576460361480713, -0.2817743122577667], [0.4161616861820221, -0.2844774127006531, 0.10778218507766724, 0.10621841996908188, 0.570773720741272, -0.08483421802520752, 0.12601955235004425, 0.01939353719353676, -0.25576895475387573, -0.281771719455719], [0.41616353392601013, -0.28447583317756653, 0.10778168588876724, 0.10621479153633118, 0.5707724094390869, -0.08483026176691055, 0.12602132558822632, 0.019393663853406906, -0.2557690739631653, -0.2817673087120056], [0.4161625802516937, -0.28447434306144714, 0.10778150707483292, 0.10621525347232819, 0.5707716941833496, -0.08483071625232697, 0.1260216236114502, 0.01939174346625805, -0.2557677924633026, -0.28176936507225037], [0.4161631464958191, -0.28447234630584717, 0.10778236389160156, 0.1062157079577446, 0.5707700252532959, -0.08482935279607773, 0.1260189563035965, 0.01938938908278942, -0.25576791167259216, -0.28176993131637573], [0.4161640405654907, -0.28447213768959045, 0.10777997970581055, 0.10621494054794312, 0.5707694292068481, -0.08482688665390015, 0.12601971626281738, 0.019390715286135674, -0.25576892495155334, -0.28176721930503845], [0.4161641001701355, -0.2844727337360382, 0.10777948796749115, 0.10621464997529984, 0.5707696676254272, -0.0848279744386673, 0.1260211318731308, 0.019391803070902824, -0.25576797127723694, -0.2817670702934265], [0.41616371273994446, -0.2844732403755188, 0.10777901858091354, 0.10621526837348938, 0.5707699656486511, -0.08482901006937027, 0.12602141499519348, 0.019392138347029686, -0.25576767325401306, -0.28176793456077576], [0.4161641299724579, -0.284474641084671, 0.10777692496776581, 0.1062147468328476, 0.5707705616950989, -0.0848294124007225, 0.12602315843105316, 0.019394468516111374, -0.2557678818702698, -0.28176647424697876], [0.4161636233329773, -0.2844756245613098, 0.10777734220027924, 0.10621528327465057, 0.5707712769508362, -0.08483176678419113, 0.12602373957633972, 0.01939525082707405, -0.25576698780059814, -0.2817677855491638], [0.41616296768188477, -0.2844749391078949, 0.10777994990348816, 0.10621660947799683, 0.5707712769508362, -0.08483240008354187, 0.12602123618125916, 0.019393105059862137, -0.2557670474052429, -0.2817700207233429], [0.41616228222846985, -0.28447043895721436, 0.10778782516717911, 0.10621831566095352, 0.5707694888114929, -0.08482997864484787, 0.12601357698440552, 0.019385457038879395, -0.2557677924633026, -0.2817736268043518], [0.4161643981933594, -0.2844693660736084, 0.1077834963798523, 0.10621510446071625, 0.5707681775093079, -0.08482193946838379, 0.12601545453071594, 0.019386596977710724, -0.25577136874198914, -0.281766414642334], [0.416166216135025, -0.28447458148002625, 0.10777241736650467, 0.10621028393507004, 0.5707699060440063, -0.08482372760772705, 0.1260279268026352, 0.019397292286157608, -0.2557695209980011, -0.2817591726779938], [0.41616255044937134, -0.2844749093055725, 0.10777826607227325, 0.1062154695391655, 0.5707711577415466, -0.08483528345823288, 0.1260250210762024, 0.019393984228372574, -0.2557637691497803, -0.28177115321159363], [0.41616353392601013, -0.28447583317756653, 0.1077752336859703, 0.10621673613786697, 0.5707710385322571, -0.08483182638883591, 0.1260225921869278, 0.019395258277654648, -0.2557678520679474, -0.28176864981651306], [0.4161641597747803, -0.28447675704956055, 0.10777738690376282, 0.1062154695391655, 0.5707717537879944, -0.08483254909515381, 0.12602341175079346, 0.019396979361772537, -0.2557673156261444, -0.28176695108413696], [0.4161624312400818, -0.28447648882865906, 0.10777951776981354, 0.10621681064367294, 0.5707725286483765, -0.08483346551656723, 0.12602268159389496, 0.01939474418759346, -0.25576719641685486, -0.28176990151405334], [0.4161631166934967, -0.2844753563404083, 0.10778065025806427, 0.10621604323387146, 0.5707717537879944, -0.08483169227838516, 0.126021146774292, 0.019393112510442734, -0.25576791167259216, -0.2817692160606384], [0.41616353392601013, -0.2844753563404083, 0.10777868330478668, 0.10621507465839386, 0.5707715749740601, -0.08483031392097473, 0.12602265179157257, 0.01939418539404869, -0.2557683289051056, -0.2817673981189728], [0.4161635935306549, -0.284476101398468, 0.10777728259563446, 0.10621467977762222, 0.5707718133926392, -0.08483152836561203, 0.12602441012859344, 0.019395601004362106, -0.25576743483543396, -0.2817671597003937], [0.4161636531352997, -0.2844780385494232, 0.10777433216571808, 0.10621466487646103, 0.5707725882530212, -0.08483312278985977, 0.12602686882019043, 0.01939849741756916, -0.2557670474052429, -0.2817665636539459], [0.41616228222846985, -0.2844764292240143, 0.10778038948774338, 0.10621721297502518, 0.5707724094390869, -0.08483601361513138, 0.12602205574512482, 0.01939428225159645, -0.2557656764984131, -0.2817718982696533], [0.4161645472049713, -0.2844806909561157, 0.10776947438716888, 0.10621385276317596, 0.5707736015319824, -0.08483141660690308, 0.12602965533733368, 0.019402913749217987, -0.25576937198638916, -0.2817624509334564], [0.4161619544029236, -0.284479022026062, 0.10778050869703293, 0.10621673613786697, 0.5707741379737854, -0.08484037965536118, 0.12602508068084717, 0.01939733698964119, -0.2557636499404907, -0.2817724943161011], [0.41616174578666687, -0.28447726368904114, 0.10777918249368668, 0.10621831566095352, 0.5707732439041138, -0.08483421802520752, 0.12602123618125916, 0.019394319504499435, -0.25576838850975037, -0.28177154064178467], [0.4161638617515564, -0.2844759225845337, 0.10778111219406128, 0.1062152236700058, 0.5707719922065735, -0.08483143150806427, 0.1260211169719696, 0.019394222646951675, -0.2557682991027832, -0.28176775574684143], [0.4161625802516937, -0.28447508811950684, 0.1077803447842598, 0.10621581226587296, 0.5707719922065735, -0.08483100682497025, 0.12602205574512482, 0.019393008202314377, -0.2557681202888489, -0.2817690074443817], [0.41616305708885193, -0.2844727635383606, 0.10778334736824036, 0.10621597617864609, 0.5707704424858093, -0.08483029901981354, 0.126018688082695, 0.019389552995562553, -0.2557675838470459, -0.2817704677581787], [0.4161629378795624, -0.28446945548057556, 0.1077859103679657, 0.10621684044599533, 0.5707687139511108, -0.0848267525434494, 0.12601453065872192, 0.019385337829589844, -0.25576889514923096, -0.281771183013916], [0.4161643385887146, -0.28446781635284424, 0.10778512805700302, 0.10621505975723267, 0.5707671642303467, -0.08482221513986588, 0.1260143667459488, 0.019384652376174927, -0.25577014684677124, -0.28176769614219666], [0.41616517305374146, -0.2844696044921875, 0.10777931660413742, 0.10621284693479538, 0.5707675218582153, -0.0848216563463211, 0.12602008879184723, 0.019389210268855095, -0.2557697892189026, -0.28176382184028625], [0.416163831949234, -0.28446921706199646, 0.10778239369392395, 0.10621492564678192, 0.5707677006721497, -0.08482666313648224, 0.1260184794664383, 0.01938720792531967, -0.2557668685913086, -0.28176918625831604], [0.41616469621658325, -0.2844708561897278, 0.10777760297060013, 0.1062147319316864, 0.5707679390907288, -0.08482467383146286, 0.12601995468139648, 0.019390402361750603, -0.25576910376548767, -0.28176599740982056], [0.41616472601890564, -0.2844725251197815, 0.10777822136878967, 0.10621438175439835, 0.5707689523696899, -0.08482775837182999, 0.1260216385126114, 0.01939263753592968, -0.25576749444007874, -0.28176620602607727], [0.41616278886795044, -0.2844710052013397, 0.10778328776359558, 0.10621727257966995, 0.570769190788269, -0.08482950180768967, 0.12601730227470398, 0.01938810758292675, -0.2557671070098877, -0.2817715108394623], [0.41616562008857727, -0.28447484970092773, 0.10777337849140167, 0.10621311515569687, 0.5707699656486511, -0.08482503145933151, 0.12602461874485016, 0.01939631626009941, -0.2557702660560608, -0.2817617952823639], [0.4161636233329773, -0.2844763398170471, 0.10777702927589417, 0.10621444135904312, 0.5707717537879944, -0.08483371883630753, 0.12602604925632477, 0.019396718591451645, -0.25576528906822205, -0.28176772594451904], [0.41616204380989075, -0.28447481989860535, 0.10778044909238815, 0.10621803253889084, 0.5707715153694153, -0.08483395725488663, 0.12602031230926514, 0.01939200423657894, -0.2557665705680847, -0.28177252411842346], [0.41616350412368774, -0.2844723165035248, 0.10778383165597916, 0.10621697455644608, 0.5707699060440063, -0.08482909947633743, 0.1260162889957428, 0.01938922517001629, -0.255768746137619, -0.28177008032798767], [0.4161641597747803, -0.2844727635383606, 0.10778015106916428, 0.10621459037065506, 0.5707699656486511, -0.08482573926448822, 0.12602026760578156, 0.019391564652323723, -0.25576987862586975, -0.28176575899124146], [0.4161638021469116, -0.28447312116622925, 0.10778003185987473, 0.10621417313814163, 0.5707702040672302, -0.08482857048511505, 0.1260220855474472, 0.01939184032380581, -0.2557675838470459, -0.28176724910736084], [0.41616305708885193, -0.284471720457077, 0.10778181999921799, 0.10621613264083862, 0.5707695484161377, -0.08482935279607773, 0.1260189563035965, 0.019389135763049126, -0.2557673752307892, -0.28177037835121155], [0.4161633551120758, -0.2844686210155487, 0.107786163687706, 0.10621700435876846, 0.5707678198814392, -0.08482642471790314, 0.12601353228092194, 0.019384659826755524, -0.2557685375213623, -0.2817712724208832], [0.4161643981933594, -0.28446725010871887, 0.10778506845235825, 0.10621538758277893, 0.570766806602478, -0.08482132107019424, 0.12601375579833984, 0.01938430219888687, -0.2557705342769623, -0.28176748752593994], [0.41616523265838623, -0.2844685912132263, 0.10778093338012695, 0.10621301084756851, 0.5707671046257019, -0.08482106775045395, 0.1260187327861786, 0.019387729465961456, -0.2557697892189026, -0.28176429867744446], [0.41616466641426086, -0.28447064757347107, 0.10777805745601654, 0.10621339827775955, 0.5707680583000183, -0.08482515066862106, 0.12602189183235168, 0.01939048431813717, -0.2557677626609802, -0.2817656993865967], [0.4161653220653534, -0.2844756245613098, 0.10777054727077484, 0.10621287673711777, 0.5707700252532959, -0.08482836931943893, 0.12602786719799042, 0.019398251548409462, -0.2557675838470459, -0.28176289796829224], [0.4161635637283325, -0.2844778895378113, 0.10777416080236435, 0.10621563345193863, 0.5707720518112183, -0.08483613282442093, 0.12602701783180237, 0.019398989155888557, -0.2557646632194519, -0.2817685306072235], [0.41616326570510864, -0.284480482339859, 0.10777208209037781, 0.10621652007102966, 0.570773720741272, -0.08483613282442093, 0.1260276883840561, 0.019401485100388527, -0.2557668387889862, -0.28176748752593994], [0.41616290807724, -0.2844810485839844, 0.10777606070041656, 0.10621650516986847, 0.5707747340202332, -0.08483850955963135, 0.12602674961090088, 0.01940089650452137, -0.2557658553123474, -0.2817690372467041], [0.41616159677505493, -0.2844792306423187, 0.10777974128723145, 0.10621793568134308, 0.5707745552062988, -0.08483760803937912, 0.12602335214614868, 0.019396763294935226, -0.25576677918434143, -0.28177177906036377], [0.4161628186702728, -0.28447771072387695, 0.10778015106916428, 0.10621626675128937, 0.5707734227180481, -0.08483364433050156, 0.1260223388671875, 0.019395392388105392, -0.25576820969581604, -0.28176918625831604], [0.41616252064704895, -0.2844754457473755, 0.10778211057186127, 0.10621611773967743, 0.5707724094390869, -0.08483241498470306, 0.12602093815803528, 0.01939265988767147, -0.2557677924633026, -0.28177011013031006], [0.41616368293762207, -0.28447601199150085, 0.10777735710144043, 0.10621442645788193, 0.5707718729972839, -0.0848298892378807, 0.12602387368679047, 0.01939510926604271, -0.255768746137619, -0.2817663550376892], [0.4161635637283325, -0.2844769060611725, 0.10777657479047775, 0.10621439665555954, 0.5707722306251526, -0.0848328024148941, 0.12602561712265015, 0.01939673349261284, -0.25576677918434143, -0.28176718950271606], [0.4161628782749176, -0.28447726368904114, 0.10777673870325089, 0.10621599107980728, 0.5707724690437317, -0.08483432978391647, 0.12602466344833374, 0.019396457821130753, -0.2557665705680847, -0.28176915645599365], [0.4161631464958191, -0.28447699546813965, 0.10777811706066132, 0.10621629655361176, 0.5707723498344421, -0.08483383804559708, 0.1260230839252472, 0.019395839422941208, -0.2557671368122101, -0.28176915645599365], [0.41616326570510864, -0.28447747230529785, 0.10777716338634491, 0.1062156930565834, 0.5707727074623108, -0.08483287692070007, 0.12602421641349792, 0.0193968303501606, -0.2557677626609802, -0.28176769614219666], [0.41616353392601013, -0.2844792306423187, 0.10777467489242554, 0.10621462017297745, 0.5707734823226929, -0.08483397215604782, 0.1260274052619934, 0.01939958520233631, -0.25576722621917725, -0.28176629543304443], [0.4161619246006012, -0.2844773232936859, 0.10778055340051651, 0.10621721297502518, 0.570773184299469, -0.08483695983886719, 0.1260228157043457, 0.01939484104514122, -0.2557655870914459, -0.281772255897522], [0.4161628484725952, -0.2844759225845337, 0.10777981579303741, 0.10621681064367294, 0.5707721710205078, -0.08483196049928665, 0.12602078914642334, 0.01939362660050392, -0.2557685375213623, -0.2817695736885071], [0.41616329550743103, -0.28447428345680237, 0.1077822744846344, 0.10621575266122818, 0.5707712769508362, -0.08483065664768219, 0.1260199397802353, 0.01939195953309536, -0.2557680904865265, -0.2817689776420593], [0.41616326570510864, -0.28447380661964417, 0.10778031498193741, 0.10621534287929535, 0.5707709193229675, -0.08482885360717773, 0.12602102756500244, 0.0193918626755476, -0.25576862692832947, -0.2817680537700653], [0.4161628782749176, -0.2844705283641815, 0.10778594017028809, 0.10621647536754608, 0.5707693099975586, -0.08482911437749863, 0.1260160505771637, 0.019386500120162964, -0.25576743483543396, -0.281771719455719], [0.41616350412368774, -0.2844678461551666, 0.10778582096099854, 0.10621635615825653, 0.5707674622535706, -0.08482350409030914, 0.12601338326931, 0.019383825361728668, -0.2557700276374817, -0.2817697823047638], [0.4161655902862549, -0.28446927666664124, 0.10778006166219711, 0.10621277987957001, 0.570767343044281, -0.08482081443071365, 0.1260189563035965, 0.019388733431696892, -0.25577038526535034, -0.28176337480545044], [0.41616424918174744, -0.2844705581665039, 0.1077796071767807, 0.10621380805969238, 0.5707682967185974, -0.08482608199119568, 0.12602125108242035, 0.019389865919947624, -0.2557673454284668, -0.281766802072525], [0.41616353392601013, -0.2844696044921875, 0.1077822595834732, 0.10621626675128937, 0.570767879486084, -0.08482740074396133, 0.12601715326309204, 0.019387073814868927, -0.2557673454284668, -0.28177037835121155], [0.4161648750305176, -0.28447046875953674, 0.10777954757213593, 0.1062149852514267, 0.5707678198814392, -0.0848243236541748, 0.12601831555366516, 0.01938965730369091, -0.2557694613933563, -0.2817660868167877], [0.4161650240421295, -0.2844735383987427, 0.1077759861946106, 0.10621345043182373, 0.5707695484161377, -0.08482663333415985, 0.12602387368679047, 0.01939457282423973, -0.2557682991027832, -0.2817640006542206], [0.41616520285606384, -0.28448063135147095, 0.10776600241661072, 0.10621193796396255, 0.5707729458808899, -0.08483198285102844, 0.12603414058685303, 0.019405007362365723, -0.25576701760292053, -0.2817608118057251], [0.4161635935306549, -0.2844865322113037, 0.107764333486557, 0.10621403157711029, 0.5707765817642212, -0.08484327793121338, 0.1260383129119873, 0.019410988315939903, -0.25576311349868774, -0.2817654311656952], [0.41616201400756836, -0.28449052572250366, 0.10776442289352417, 0.10621722787618637, 0.5707795023918152, -0.0848490297794342, 0.12603794038295746, 0.019413787871599197, -0.2557632029056549, -0.28176888823509216], [0.41616126894950867, -0.284491628408432, 0.10776931047439575, 0.10621856898069382, 0.5707810521125793, -0.08485117554664612, 0.12603501975536346, 0.019412893801927567, -0.2557637095451355, -0.2817710041999817], [0.4161607027053833, -0.28449156880378723, 0.10777156800031662, 0.10621843487024307, 0.5707818269729614, -0.08484960347414017, 0.12603400647640228, 0.019411517307162285, -0.25576531887054443, -0.28177082538604736], [0.4161607027053833, -0.28449031710624695, 0.10777389258146286, 0.10621744394302368, 0.5707815289497375, -0.08484838157892227, 0.12603317201137543, 0.019409386441111565, -0.25576546788215637, -0.28177088499069214], [0.4161616265773773, -0.28449198603630066, 0.10776790231466293, 0.1062152087688446, 0.5707818865776062, -0.08484674245119095, 0.126038059592247, 0.01941331848502159, -0.25576621294021606, -0.281766802072525], [0.4161592721939087, -0.2844870686531067, 0.10777987539768219, 0.10621917247772217, 0.5707802772521973, -0.08485125005245209, 0.12602882087230682, 0.019403517246246338, -0.25576263666152954, -0.2817770838737488], [0.41616126894950867, -0.2844853103160858, 0.10777486860752106, 0.10621781647205353, 0.5707783102989197, -0.0848408192396164, 0.12602762877941132, 0.019403353333473206, -0.25576862692832947, -0.28177008032798767], [0.4161624014377594, -0.28448405861854553, 0.1077771931886673, 0.1062152236700058, 0.5707773566246033, -0.08484075963497162, 0.12602883577346802, 0.01940317451953888, -0.2557663917541504, -0.2817685008049011], [0.41616055369377136, -0.2844814658164978, 0.10777916759252548, 0.10621754825115204, 0.5707764625549316, -0.084840327501297, 0.12602593004703522, 0.019398445263504982, -0.25576627254486084, -0.2817726731300354], [0.4161626696586609, -0.28447988629341125, 0.10777810215950012, 0.10621584206819534, 0.5707746148109436, -0.08483603596687317, 0.1260247528553009, 0.019397975876927376, -0.25576770305633545, -0.2817690968513489], [0.41616225242614746, -0.2844780683517456, 0.10777981579303741, 0.10621622204780579, 0.5707737803459167, -0.08483540266752243, 0.126023530960083, 0.019395995885133743, -0.2557671368122101, -0.28177013993263245], [0.4161628782749176, -0.2844774127006531, 0.10777847468852997, 0.10621567815542221, 0.5707730054855347, -0.08483321219682693, 0.12602367997169495, 0.01939575746655464, -0.2557678818702698, -0.2817686200141907], [0.41616275906562805, -0.28447583317756653, 0.10778069496154785, 0.10621603578329086, 0.5707722306251526, -0.08483314514160156, 0.1260218322277069, 0.01939362660050392, -0.25576719641685486, -0.28176993131637573], [0.41616344451904297, -0.2844761610031128, 0.10777757316827774, 0.10621516406536102, 0.5707719326019287, -0.0848308652639389, 0.12602338194847107, 0.01939515396952629, -0.25576838850975037, -0.2817672789096832], [0.4161643087863922, -0.2844792902469635, 0.10777230560779572, 0.10621332377195358, 0.5707731246948242, -0.08483266830444336, 0.12602919340133667, 0.01940091885626316, -0.2557674050331116, -0.2817641496658325], [0.4161618947982788, -0.28447821736335754, 0.10777878016233444, 0.10621707886457443, 0.5707734823226929, -0.08483856916427612, 0.12602472305297852, 0.019396524876356125, -0.25576460361480713, -0.28177228569984436], [0.41616296768188477, -0.28447815775871277, 0.1077764704823494, 0.10621678084135056, 0.5707730054855347, -0.08483380079269409, 0.12602350115776062, 0.0193970687687397, -0.25576820969581604, -0.2817687392234802], [0.41616326570510864, -0.2844776511192322, 0.10777918249368668, 0.10621573776006699, 0.5707730054855347, -0.08483413606882095, 0.12602351605892181, 0.019396569579839706, -0.25576716661453247, -0.28176847100257874], [0.4161626398563385, -0.2844775915145874, 0.10777788609266281, 0.1062159314751625, 0.570773184299469, -0.08483339846134186, 0.12602433562278748, 0.019396226853132248, -0.25576767325401306, -0.28176864981651306], [0.4161629378795624, -0.28447628021240234, 0.10778018087148666, 0.10621588677167892, 0.5707724094390869, -0.08483357727527618, 0.12602238357067108, 0.019394267350435257, -0.25576701760292053, -0.281769722700119], [0.41616398096084595, -0.28447890281677246, 0.10777268558740616, 0.10621406137943268, 0.5707730650901794, -0.08483163267374039, 0.12602780759334564, 0.019399913027882576, -0.2557685375213623, -0.28176453709602356], [0.41616296768188477, -0.28447970747947693, 0.10777582228183746, 0.1062152087688446, 0.5707738995552063, -0.08483758568763733, 0.12602771818637848, 0.01939971186220646, -0.2557651102542877, -0.2817687690258026], [0.41616198420524597, -0.2844790518283844, 0.10777707397937775, 0.10621747374534607, 0.5707738995552063, -0.08483710139989853, 0.126024529337883, 0.019397486001253128, -0.25576651096343994, -0.2817710340023041], [0.4161633849143982, -0.28447917103767395, 0.10777685046195984, 0.10621581226587296, 0.5707736015319824, -0.08483470976352692, 0.12602481245994568, 0.01939854957163334, -0.25576767325401306, -0.28176775574684143], [0.4161626696586609, -0.28447937965393066, 0.10777692496776581, 0.10621575266122818, 0.5707741379737854, -0.08483553677797318, 0.12602606415748596, 0.01939866878092289, -0.25576701760292053, -0.28176841139793396], [0.41616204380989075, -0.28447720408439636, 0.10778114199638367, 0.10621701925992966, 0.5707732439041138, -0.08483582735061646, 0.12602214515209198, 0.019394326955080032, -0.25576654076576233, -0.2817716896533966], [0.41616228222846985, -0.2844736576080322, 0.10778424888849258, 0.10621745884418488, 0.570771336555481, -0.08483143895864487, 0.12601739168167114, 0.019389664754271507, -0.2557683289051056, -0.28177180886268616], [0.4161628186702728, -0.28446900844573975, 0.10778895765542984, 0.10621701925992966, 0.5707688331604004, -0.08482642471790314, 0.12601256370544434, 0.019383788108825684, -0.2557693123817444, -0.2817717492580414], [0.41616255044937134, -0.28446164727211, 0.10779660195112228, 0.10621778666973114, 0.5707650780677795, -0.08482027053833008, 0.12600433826446533, 0.019373532384634018, -0.25577032566070557, -0.28177425265312195], [0.4161648154258728, -0.28445640206336975, 0.10779580473899841, 0.10621510446071625, 0.5707612037658691, -0.08480992913246155, 0.12600190937519073, 0.019369376823306084, -0.2557734251022339, -0.28176891803741455], [0.41616764664649963, -0.28445860743522644, 0.107784204185009, 0.10620978474617004, 0.5707606673240662, -0.08480630815029144, 0.1260121464729309, 0.019377578049898148, -0.2557733356952667, -0.28175950050354004], [0.4161668121814728, -0.28446322679519653, 0.10777793079614639, 0.10621020942926407, 0.5707626342773438, -0.08481547981500626, 0.1260199397802353, 0.019384577870368958, -0.2557682991027832, -0.28176164627075195], [0.4161665141582489, -0.2844702899456024, 0.10776947438716888, 0.10621199756860733, 0.5707658529281616, -0.08482296019792557, 0.12602604925632477, 0.019393976777791977, -0.2557671070098877, -0.2817617952823639], [0.41616392135620117, -0.28447118401527405, 0.10777916759252548, 0.10621725767850876, 0.5707677006721497, -0.08483197540044785, 0.1260194182395935, 0.019390886649489403, -0.255764365196228, -0.2817712426185608], [0.4161636531352997, -0.2844710052013397, 0.10778126120567322, 0.10621841996908188, 0.570768415927887, -0.08482720702886581, 0.1260155737400055, 0.019389016553759575, -0.2557690739631653, -0.28176984190940857], [0.416166752576828, -0.2844778001308441, 0.10776951909065247, 0.10621127486228943, 0.5707712769508362, -0.08482518047094345, 0.12602931261062622, 0.019401872530579567, -0.2557704448699951, -0.2817574739456177], [0.4161626696586609, -0.2844804525375366, 0.10777387768030167, 0.10621451586484909, 0.5707743167877197, -0.0848391130566597, 0.12603141367435455, 0.019401559606194496, -0.25576335191726685, -0.2817685008049011], [0.41616255044937134, -0.2844826281070709, 0.1077701523900032, 0.10621660947799683, 0.5707752108573914, -0.08483939617872238, 0.12603023648262024, 0.01940333843231201, -0.2557659447193146, -0.2817688286304474], [0.41616320610046387, -0.28448396921157837, 0.10777240246534348, 0.10621613264083862, 0.5707759857177734, -0.08484119176864624, 0.12602989375591278, 0.01940523087978363, -0.25576546788215637, -0.28176799416542053], [0.41616255044937134, -0.28448763489723206, 0.10776785761117935, 0.10621566325426102, 0.5707783699035645, -0.08484216779470444, 0.12603506445884705, 0.019409997388720512, -0.2557663023471832, -0.28176599740982056], [0.41616183519363403, -0.2844892740249634, 0.10777007788419724, 0.10621605813503265, 0.5707798004150391, -0.0848473608493805, 0.12603574991226196, 0.019410548731684685, -0.2557638883590698, -0.2817689776420593], [0.416160523891449, -0.28448837995529175, 0.10777290910482407, 0.1062183603644371, 0.5707799196243286, -0.0848480686545372, 0.12603212893009186, 0.019407570362091064, -0.25576460361480713, -0.2817724347114563], [0.41616177558898926, -0.28448811173439026, 0.10777267068624496, 0.10621697455644608, 0.57077956199646, -0.08484496176242828, 0.12603171169757843, 0.01940791867673397, -0.25576624274253845, -0.28176936507225037], [0.4161617159843445, -0.2844892144203186, 0.1077706515789032, 0.10621575266122818, 0.5707801580429077, -0.08484520763158798, 0.1260349005460739, 0.019410056993365288, -0.2557658553123474, -0.2817678451538086], [0.4161604344844818, -0.284487247467041, 0.1077757179737091, 0.10621771216392517, 0.5707796812057495, -0.08484755456447601, 0.1260310709476471, 0.0194055438041687, -0.2557642459869385, -0.2817729711532593], [0.4161602556705475, -0.28448227047920227, 0.10778167098760605, 0.10621938854455948, 0.570777177810669, -0.08484292030334473, 0.12602299451828003, 0.019397908821702003, -0.2557663023471832, -0.28177517652511597], [0.41616368293762207, -0.28448402881622314, 0.10777179896831512, 0.10621397197246552, 0.5707765817642212, -0.08483505249023438, 0.1260303407907486, 0.019404910504817963, -0.2557697594165802, -0.28176349401474], [0.41616153717041016, -0.28448301553726196, 0.10777738690376282, 0.10621552914381027, 0.5707768797874451, -0.08484240621328354, 0.1260298490524292, 0.01940193958580494, -0.2557641565799713, -0.281770795583725], [0.41616111993789673, -0.28448107838630676, 0.10777711868286133, 0.10621783137321472, 0.5707756876945496, -0.08483948558568954, 0.12602558732032776, 0.019398512318730354, -0.2557666301727295, -0.28177228569984436], [0.41616398096084595, -0.28448277711868286, 0.10777217149734497, 0.10621421784162521, 0.5707754492759705, -0.08483631163835526, 0.12602968513965607, 0.01940397173166275, -0.2557678818702698, -0.2817648649215698], [0.41616290807724, -0.28448671102523804, 0.10776779800653458, 0.10621403157711029, 0.5707777738571167, -0.08484151214361191, 0.1260363608598709, 0.01940952055156231, -0.255765438079834, -0.2817651629447937], [0.41616228222846985, -0.2844908535480499, 0.10776457190513611, 0.10621502995491028, 0.5707800388336182, -0.08484746515750885, 0.12603983283042908, 0.019414033740758896, -0.2557637691497803, -0.2817668318748474], [0.4161606431007385, -0.28449082374572754, 0.10777030140161514, 0.10621844977140427, 0.570780873298645, -0.08485210686922073, 0.12603503465652466, 0.01941126398742199, -0.25576266646385193, -0.28177279233932495], [0.41616079211235046, -0.2844899296760559, 0.10777243226766586, 0.10621890425682068, 0.5707807540893555, -0.08484850078821182, 0.1260317713022232, 0.019409341737627983, -0.2557656168937683, -0.2817716896533966], [0.4161616265773773, -0.2844902575016022, 0.10777179896831512, 0.10621646046638489, 0.5707809925079346, -0.08484624326229095, 0.12603402137756348, 0.01941060833632946, -0.25576627254486084, -0.281768262386322], [0.41616079211235046, -0.2844901382923126, 0.10777203738689423, 0.1062164157629013, 0.5707812309265137, -0.08484777808189392, 0.1260351687669754, 0.01940990798175335, -0.25576499104499817, -0.28176993131637573], [0.416159987449646, -0.28448641300201416, 0.10777802020311356, 0.10621853917837143, 0.57077956199646, -0.0848475769162178, 0.1260286569595337, 0.019403383135795593, -0.25576460361480713, -0.2817746698856354], [0.41616225242614746, -0.28448665142059326, 0.10777175426483154, 0.10621579736471176, 0.5707785487174988, -0.08484090864658356, 0.12603138387203217, 0.019406713545322418, -0.2557680308818817, -0.2817671597003937], [0.41616204380989075, -0.2844873070716858, 0.10777240246534348, 0.10621507465839386, 0.5707789659500122, -0.08484434336423874, 0.12603387236595154, 0.019407955929636955, -0.25576502084732056, -0.28176817297935486], [0.41616055369377136, -0.28448599576950073, 0.10777460038661957, 0.10621774196624756, 0.5707787275314331, -0.08484553545713425, 0.12603060901165009, 0.019404537975788116, -0.25576484203338623, -0.2817724645137787], [0.41616153717041016, -0.2844836115837097, 0.10777746140956879, 0.10621766746044159, 0.5707771182060242, -0.08484216034412384, 0.1260264813899994, 0.0194015521556139, -0.2557663321495056, -0.2817716598510742], [0.41616228222846985, -0.28448328375816345, 0.10777532309293747, 0.10621605813503265, 0.5707767009735107, -0.08483867347240448, 0.12602825462818146, 0.01940261758863926, -0.2557676434516907, -0.28176820278167725], [0.4161618649959564, -0.2844821810722351, 0.10777735710144043, 0.10621607303619385, 0.5707763433456421, -0.0848398432135582, 0.12602771818637848, 0.019400740042328835, -0.25576603412628174, -0.2817700207233429], [0.4161619544029236, -0.2844812870025635, 0.1077764704823494, 0.10621635615825653, 0.5707756280899048, -0.08483822643756866, 0.12602688372135162, 0.019399838522076607, -0.2557668685913086, -0.2817698121070862], [0.41616272926330566, -0.28448110818862915, 0.10777591168880463, 0.10621560364961624, 0.5707750916481018, -0.08483743667602539, 0.1260271817445755, 0.019400397315621376, -0.2557668089866638, -0.28176847100257874], [0.4161624014377594, -0.28448113799095154, 0.10777553915977478, 0.1062159314751625, 0.5707752108573914, -0.08483786135911942, 0.12602756917476654, 0.019400591030716896, -0.2557665705680847, -0.28176888823509216], [0.41616225242614746, -0.2844802141189575, 0.10777755826711655, 0.10621657967567444, 0.5707747936248779, -0.08483798056840897, 0.12602566182613373, 0.019398780539631844, -0.255766361951828, -0.281770259141922], [0.41616278886795044, -0.28448036313056946, 0.10777576267719269, 0.10621587187051773, 0.5707746148109436, -0.08483606576919556, 0.1260264664888382, 0.01939971186220646, -0.25576746463775635, -0.28176820278167725], [0.4161626994609833, -0.2844804525375366, 0.10777635127305984, 0.10621564835309982, 0.5707747340202332, -0.08483704924583435, 0.1260269433259964, 0.01939980871975422, -0.25576654076576233, -0.2817685902118683], [0.41616302728652954, -0.2844824194908142, 0.1077721118927002, 0.10621494054794312, 0.5707754492759705, -0.08483722060918808, 0.12603028118610382, 0.019403189420700073, -0.25576695799827576, -0.28176653385162354], [0.4161621332168579, -0.2844821512699127, 0.10777567327022552, 0.1062164306640625, 0.5707757472991943, -0.08484086394309998, 0.12602832913398743, 0.019401544705033302, -0.25576505064964294, -0.28177034854888916], [0.41616255044937134, -0.284483402967453, 0.10777238011360168, 0.10621616244316101, 0.5707761645317078, -0.08483894914388657, 0.1260296255350113, 0.01940370351076126, -0.25576698780059814, -0.281767874956131], [0.41616278886795044, -0.28448495268821716, 0.107772096991539, 0.10621529817581177, 0.5707770586013794, -0.08484117686748505, 0.12603183090686798, 0.01940598338842392, -0.25576573610305786, -0.2817673683166504], [0.41616103053092957, -0.2844836115837097, 0.1077764555811882, 0.10621781647205353, 0.5707771182060242, -0.08484330028295517, 0.12602820992469788, 0.019402073696255684, -0.25576499104499817, -0.28177234530448914], [0.41616174578666687, -0.284481406211853, 0.10777860879898071, 0.10621769726276398, 0.5707758665084839, -0.08483926206827164, 0.126024529337883, 0.019399011507630348, -0.2557670474052429, -0.28177136182785034], [0.4161640703678131, -0.28448542952537537, 0.10776805877685547, 0.1062130406498909, 0.5707768797874451, -0.08483622968196869, 0.1260342001914978, 0.019408179447054863, -0.2557685673236847, -0.2817619740962982], [0.41616183519363403, -0.2844873368740082, 0.10777056217193604, 0.10621492564678192, 0.5707786679267883, -0.08484597504138947, 0.12603610754013062, 0.01940879039466381, -0.25576311349868774, -0.2817688286304474], [0.4161612391471863, -0.2844885587692261, 0.10776882618665695, 0.10621731728315353, 0.5707793235778809, -0.08484677970409393, 0.12603449821472168, 0.019409222528338432, -0.2557646930217743, -0.28177037835121155], [0.4161628186702728, -0.28449177742004395, 0.1077655702829361, 0.10621538758277893, 0.5707805752754211, -0.08484716713428497, 0.1260381042957306, 0.019414860755205154, -0.25576522946357727, -0.2817659378051758], [0.4161613881587982, -0.28449559211730957, 0.10776353627443314, 0.10621588677167892, 0.5707833170890808, -0.08485236018896103, 0.1260426789522171, 0.019419075921177864, -0.25576356053352356, -0.2817672789096832], [0.4161594808101654, -0.284494549036026, 0.10777068138122559, 0.106219083070755, 0.570783793926239, -0.08485671132802963, 0.12603721022605896, 0.019414152950048447, -0.25576213002204895, -0.2817743122577667], [0.41616109013557434, -0.2844960689544678, 0.10776536911725998, 0.10621713846921921, 0.5707840919494629, -0.08485163748264313, 0.1260395348072052, 0.019417816773056984, -0.25576597452163696, -0.2817680537700653], [0.4161592721939087, -0.2844923138618469, 0.1077766939997673, 0.106219083070755, 0.5707833170890808, -0.08485522866249084, 0.12603315711021423, 0.019410138949751854, -0.25576263666152954, -0.28177544474601746], [0.4161599576473236, -0.28449001908302307, 0.10777396708726883, 0.10621852427721024, 0.5707817077636719, -0.0848471075296402, 0.12603144347667694, 0.019407829269766808, -0.25576722621917725, -0.28177180886268616], [0.41616085171699524, -0.28448572754859924, 0.10778030008077621, 0.10621721297502518, 0.5707793235778809, -0.08484530448913574, 0.1260274350643158, 0.01940261758863926, -0.2557656466960907, -0.2817726731300354], [0.4161596894264221, -0.2844793200492859, 0.10778551548719406, 0.10621929168701172, 0.5707761645317078, -0.08483966439962387, 0.12602004408836365, 0.01939334347844124, -0.2557673156261444, -0.28177595138549805], [0.416163831949234, -0.2844789922237396, 0.10777704417705536, 0.10621374845504761, 0.5707740187644958, -0.08483060449361801, 0.12602499127388, 0.0193977989256382, -0.25577038526535034, -0.2817647457122803], [0.41616272926330566, -0.2844788730144501, 0.10777738690376282, 0.1062140166759491, 0.5707740187644958, -0.08483553677797318, 0.12602759897708893, 0.019398236647248268, -0.25576603412628174, -0.28176799416542053], [0.4161614775657654, -0.28447604179382324, 0.1077813133597374, 0.1062176376581192, 0.570772647857666, -0.08483598381280899, 0.12602123618125916, 0.01939251832664013, -0.2557660639286041, -0.2817734479904175], [0.4161645770072937, -0.28447794914245605, 0.10777365416288376, 0.10621420294046402, 0.5707722902297974, -0.0848301500082016, 0.1260255128145218, 0.019398683682084084, -0.25576943159103394, -0.2817641794681549], [0.41616329550743103, -0.2844795882701874, 0.10777518898248672, 0.10621457546949387, 0.570773720741272, -0.08483605831861496, 0.12602831423282623, 0.01940029300749302, -0.2557657063007355, -0.2817671597003937], [0.41616132855415344, -0.2844773232936859, 0.10778066515922546, 0.10621827095746994, 0.5707733631134033, -0.08483748883008957, 0.1260220855474472, 0.019394252449274063, -0.25576573610305786, -0.28177353739738464], [0.41616374254226685, -0.2844773232936859, 0.10777731239795685, 0.1062157079577446, 0.5707724690437317, -0.08483143895864487, 0.1260228157043457, 0.019396331161260605, -0.2557690739631653, -0.28176698088645935], [0.4161626398563385, -0.2844754755496979, 0.10778222978115082, 0.1062161773443222, 0.5707722306251526, -0.0848333090543747, 0.12602123618125916, 0.01939314231276512, -0.255766898393631, -0.281770259141922], [0.4161628484725952, -0.2844744026660919, 0.10778062045574188, 0.10621608793735504, 0.5707713961601257, -0.08483000844717026, 0.12602059543132782, 0.019391847774386406, -0.2557685971260071, -0.28176915645599365], [0.41616302728652954, -0.2844710648059845, 0.10778571665287018, 0.10621634125709534, 0.5707696080207825, -0.08482912927865982, 0.1260162889957428, 0.019387252628803253, -0.255767822265625, -0.28177112340927124], [0.4161638021469116, -0.2844700217247009, 0.10778255015611649, 0.10621537268161774, 0.5707685351371765, -0.08482418954372406, 0.12601692974567413, 0.01938740164041519, -0.2557700574398041, -0.28176769614219666], [0.4161657691001892, -0.28447383642196655, 0.10777433216571808, 0.10621165484189987, 0.5707694888114929, -0.08482472598552704, 0.1260254979133606, 0.01939546689391136, -0.2557692229747772, -0.2817614674568176], [0.4161631464958191, -0.2844749689102173, 0.1077771931886673, 0.10621502995491028, 0.5707709193229675, -0.08483324199914932, 0.12602496147155762, 0.01939469203352928, -0.2557651102542877, -0.28176915645599365], [0.4161634147167206, -0.284475713968277, 0.10777632147073746, 0.10621649026870728, 0.5707710981369019, -0.08483229577541351, 0.12602278590202332, 0.01939501240849495, -0.25576722621917725, -0.28176891803741455], [0.41616353392601013, -0.2844752371311188, 0.10777981579303741, 0.1062164157629013, 0.5707712769508362, -0.08483217656612396, 0.12602096796035767, 0.01939406618475914, -0.2557673156261444, -0.2817690074443817], [0.4161640405654907, -0.2844780385494232, 0.10777398198843002, 0.10621447116136551, 0.570772647857666, -0.08483073115348816, 0.12602660059928894, 0.019398855045437813, -0.25576868653297424, -0.2817646265029907], [0.4161636531352997, -0.28448066115379333, 0.10777293890714645, 0.1062140166759491, 0.5707741379737854, -0.08483625948429108, 0.12603020668029785, 0.019401947036385536, -0.255765825510025, -0.2817660868167877], [0.4161616861820221, -0.2844798266887665, 0.10777696967124939, 0.10621750354766846, 0.570774495601654, -0.08483957499265671, 0.12602584064006805, 0.019398408010601997, -0.25576508045196533, -0.28177207708358765], [0.416162371635437, -0.2844776213169098, 0.10778043419122696, 0.1062178909778595, 0.5707732439041138, -0.0848357155919075, 0.12602096796035767, 0.019395027309656143, -0.2557673752307892, -0.2817714214324951], [0.41616344451904297, -0.28447777032852173, 0.10777793079614639, 0.10621537268161774, 0.5707731246948242, -0.08483174443244934, 0.12602370977401733, 0.01939692720770836, -0.25576892495155334, -0.2817666828632355], [0.41616320610046387, -0.2844787538051605, 0.10777651518583298, 0.10621441155672073, 0.5707736611366272, -0.08483391255140305, 0.1260269731283188, 0.01939835585653782, -0.2557671070098877, -0.2817669212818146], [0.4161628782749176, -0.2844797670841217, 0.10777440667152405, 0.10621508955955505, 0.5707740783691406, -0.08483605086803436, 0.12602807581424713, 0.019399652257561684, -0.2557663917541504, -0.28176799416542053], [0.41616159677505493, -0.28447607159614563, 0.10778319835662842, 0.1062183752655983, 0.570772647857666, -0.08483738452196121, 0.12601977586746216, 0.01939242146909237, -0.25576549768447876, -0.2817744016647339], [0.4161628186702728, -0.28447335958480835, 0.1077832281589508, 0.10621753334999084, 0.5707709193229675, -0.08482921868562698, 0.12601664662361145, 0.01938982866704464, -0.2557697594165802, -0.2817702889442444], [0.41616541147232056, -0.2844768166542053, 0.10777410119771957, 0.10621190816164017, 0.5707716345787048, -0.08482660353183746, 0.12602679431438446, 0.01939837820827961, -0.2557700276374817, -0.28176093101501465], [0.4161616265773773, -0.28447437286376953, 0.10778336226940155, 0.10621660947799683, 0.5707718133926392, -0.08483579009771347, 0.12602171301841736, 0.019391192123293877, -0.25576427578926086, -0.28177347779273987], [0.4161638915538788, -0.2844754755496979, 0.10777511447668076, 0.10621548444032669, 0.5707710385322571, -0.08482873439788818, 0.1260228157043457, 0.019394811242818832, -0.25576967000961304, -0.28176647424697876], [0.41616523265838623, -0.28447943925857544, 0.10777150839567184, 0.10621251165866852, 0.5707727074623108, -0.084832563996315, 0.12602989375591278, 0.019402364268898964, -0.25576701760292053, -0.28176257014274597], [0.4161616563796997, -0.2844799757003784, 0.10777591168880463, 0.10621712356805801, 0.5707743763923645, -0.08483964949846268, 0.12602750957012177, 0.019399257376790047, -0.2557643949985504, -0.28177154064178467], [0.41616344451904297, -0.28448179364204407, 0.10777214169502258, 0.1062159314751625, 0.5707747340202332, -0.0848366767168045, 0.12602825462818146, 0.01940239407122135, -0.25576743483543396, -0.28176695108413696], [0.41616278886795044, -0.2844827175140381, 0.10777431726455688, 0.10621584206819534, 0.5707758069038391, -0.08483976870775223, 0.12602925300598145, 0.019403278827667236, -0.25576573610305786, -0.28176823258399963], [0.4161616265773773, -0.2844822108745575, 0.10777630656957626, 0.10621733963489532, 0.570776104927063, -0.08484028279781342, 0.12602731585502625, 0.019400866702198982, -0.25576600432395935, -0.2817709147930145], [0.4161633849143982, -0.2844846248626709, 0.1077704206109047, 0.10621457546949387, 0.570776641368866, -0.08483821898698807, 0.12603197991847992, 0.019406072795391083, -0.25576746463775635, -0.2817651629447937], [0.4161619544029236, -0.28448545932769775, 0.10777284950017929, 0.10621582716703415, 0.5707777142524719, -0.0848437249660492, 0.12603244185447693, 0.01940596103668213, -0.2557644248008728, -0.28176936507225037], [0.4161612391471863, -0.28448486328125, 0.10777422040700912, 0.10621769726276398, 0.5707775950431824, -0.08484350889921188, 0.12602946162223816, 0.019403807818889618, -0.25576549768447876, -0.2817714512348175], [0.4161621034145355, -0.28448399901390076, 0.10777553915977478, 0.10621687024831772, 0.5707769989967346, -0.08484123647212982, 0.12602804601192474, 0.0194031223654747, -0.25576651096343994, -0.2817697525024414], [0.41616225242614746, -0.28448474407196045, 0.1077733039855957, 0.10621573776006699, 0.5707773566246033, -0.08484023064374924, 0.12603071331977844, 0.019404858350753784, -0.2557668387889862, -0.28176772594451904], [0.4161621034145355, -0.2844855785369873, 0.10777256637811661, 0.10621549934148788, 0.5707778334617615, -0.08484230190515518, 0.126032292842865, 0.019405849277973175, -0.25576555728912354, -0.28176841139793396], [0.41616111993789673, -0.2844839096069336, 0.10777627676725388, 0.10621756315231323, 0.5707772970199585, -0.08484353870153427, 0.1260283887386322, 0.019402282312512398, -0.25576508045196533, -0.28177228569984436], [0.41616183519363403, -0.2844821810722351, 0.10777735710144043, 0.1062173843383789, 0.5707761645317078, -0.08483967930078506, 0.1260257065296173, 0.01940031535923481, -0.25576701760292053, -0.2817707359790802], [0.4161629378795624, -0.2844831645488739, 0.1077738031744957, 0.10621500015258789, 0.5707762241363525, -0.08483745157718658, 0.12602950632572174, 0.019403405487537384, -0.2557676434516907, -0.28176644444465637], [0.4161624312400818, -0.28448486328125, 0.10777178406715393, 0.10621476173400879, 0.570777177810669, -0.0848408192396164, 0.12603288888931274, 0.019405700266361237, -0.2557656466960907, -0.2817672789096832], [0.4161621630191803, -0.2844867408275604, 0.10776954889297485, 0.10621557384729385, 0.5707780718803406, -0.08484358340501785, 0.12603428959846497, 0.01940797083079815, -0.25576508045196533, -0.28176820278167725], [0.41616150736808777, -0.28448647260665894, 0.10777299106121063, 0.1062173843383789, 0.5707783102989197, -0.08484586328268051, 0.1260313242673874, 0.019406333565711975, -0.2557644248008728, -0.281771183013916], [0.41616109013557434, -0.28448453545570374, 0.10777678340673447, 0.10621849447488785, 0.5707777142524719, -0.08484353125095367, 0.1260271519422531, 0.01940271444618702, -0.25576597452163696, -0.28177231550216675], [0.41616183519363403, -0.2844826877117157, 0.10777823626995087, 0.10621709376573563, 0.5707767009735107, -0.08483953028917313, 0.12602588534355164, 0.019400687888264656, -0.2557673752307892, -0.2817701995372772], [0.4161619544029236, -0.28448107838630676, 0.1077786237001419, 0.10621611773967743, 0.5707758665084839, -0.0848376676440239, 0.1260259747505188, 0.019399071112275124, -0.255767285823822, -0.28176966309547424], [0.4161616563796997, -0.2844778001308441, 0.10778200626373291, 0.1062169149518013, 0.5707741379737854, -0.08483640849590302, 0.12602220475673676, 0.019394349306821823, -0.2557668685913086, -0.28177204728126526], [0.41616296768188477, -0.28447651863098145, 0.1077793538570404, 0.10621561855077744, 0.570772647857666, -0.08483173698186874, 0.12602226436138153, 0.019394438713788986, -0.25576871633529663, -0.28176844120025635], [0.4161633253097534, -0.28447601199150085, 0.10777927190065384, 0.10621488094329834, 0.5707720518112183, -0.08483190089464188, 0.12602320313453674, 0.01939466968178749, -0.2557675838470459, -0.28176796436309814], [0.41616252064704895, -0.2844741940498352, 0.10778173059225082, 0.10621650516986847, 0.5707712769508362, -0.08483199030160904, 0.12602026760578156, 0.0193913783878088, -0.25576722621917725, -0.2817709147930145], [0.4161646068096161, -0.28447645902633667, 0.10777436196804047, 0.10621374845504761, 0.5707714557647705, -0.08482871949672699, 0.1260252594947815, 0.01939709112048149, -0.25576919317245483, -0.28176409006118774], [0.41616323590278625, -0.28447702527046204, 0.10777754336595535, 0.10621510446071625, 0.5707723498344421, -0.08483463525772095, 0.12602540850639343, 0.019396673887968063, -0.2557656466960907, -0.28176864981651306], [0.4161619544029236, -0.2844747304916382, 0.10778168588876724, 0.10621806234121323, 0.5707716345787048, -0.08483391255140305, 0.12601956725120544, 0.019391564652323723, -0.2557668089866638, -0.2817727029323578], [0.41616392135620117, -0.28447389602661133, 0.10778066515922546, 0.10621581226587296, 0.5707705616950989, -0.08482855558395386, 0.12601928412914276, 0.01939203403890133, -0.2557693421840668, -0.2817676365375519], [0.4161636531352997, -0.28447386622428894, 0.10778040438890457, 0.10621480643749237, 0.570770800113678, -0.08482886850833893, 0.12602147459983826, 0.019392510876059532, -0.2557682991027832, -0.28176724910736084], [0.4161638617515564, -0.2844754159450531, 0.10777644068002701, 0.10621414333581924, 0.5707712769508362, -0.08482972532510757, 0.12602469325065613, 0.019395146518945694, -0.25576794147491455, -0.2817661166191101], [0.4161625802516937, -0.28447312116622925, 0.10778284817934036, 0.10621678084135056, 0.5707705616950989, -0.0848328024148941, 0.12601928412914276, 0.019390253350138664, -0.25576603412628174, -0.28177204728126526], [0.4161624014377594, -0.28446826338768005, 0.10778877139091492, 0.10621869564056396, 0.5707681775093079, -0.08482717722654343, 0.12601102888584137, 0.019382702186703682, -0.25576889514923096, -0.28177374601364136], [0.4161648154258728, -0.28446635603904724, 0.1077866181731224, 0.10621494054794312, 0.5707663297653198, -0.08481910079717636, 0.12601213157176971, 0.019382910802960396, -0.2557717561721802, -0.28176650404930115], [0.41616493463516235, -0.2844665050506592, 0.10778401046991348, 0.1062130406498909, 0.570766270160675, -0.08481956273317337, 0.12601645290851593, 0.019384481012821198, -0.25576987862586975, -0.28176531195640564], [0.4161636233329773, -0.2844637632369995, 0.10778815299272537, 0.10621558874845505, 0.5707650184631348, -0.08482181280851364, 0.1260119080543518, 0.01937931962311268, -0.2557680904865265, -0.28177112340927124], [0.4161642789840698, -0.28445956110954285, 0.10779168456792831, 0.10621673613786697, 0.5707623958587646, -0.08481656014919281, 0.1260051727294922, 0.01937389001250267, -0.2557704448699951, -0.28177130222320557], [0.41616666316986084, -0.2844601273536682, 0.10778583586215973, 0.10621295124292374, 0.5707616806030273, -0.0848105326294899, 0.1260097473859787, 0.01937812753021717, -0.25577276945114136, -0.28176310658454895], [0.4161671996116638, -0.28446564078330994, 0.10777664929628372, 0.10621009767055511, 0.5707640647888184, -0.08481507748365402, 0.12602099776268005, 0.019387632608413696, -0.2557699978351593, -0.2817592918872833], [0.41616499423980713, -0.2844693660736084, 0.1077759712934494, 0.1062132939696312, 0.5707665085792542, -0.08482549339532852, 0.12602302432060242, 0.019390439614653587, -0.2557658851146698, -0.28176599740982056], [0.4161651134490967, -0.28447359800338745, 0.10777221620082855, 0.10621479153633118, 0.5707685947418213, -0.08482832461595535, 0.12602438032627106, 0.01939551904797554, -0.2557671070098877, -0.281765341758728], [0.4161636531352997, -0.28447404503822327, 0.10777928680181503, 0.10621710866689682, 0.5707700252532959, -0.08483274281024933, 0.1260206401348114, 0.019393470138311386, -0.2557658851146698, -0.2817699909210205], [0.41616350412368774, -0.28447476029396057, 0.10777866840362549, 0.10621681064367294, 0.5707709193229675, -0.08482977002859116, 0.12602072954177856, 0.01939362660050392, -0.25576871633529663, -0.2817680537700653], [0.41616466641426086, -0.2844776213169098, 0.10777463018894196, 0.10621355473995209, 0.5707722306251526, -0.08483031392097473, 0.1260267198085785, 0.019398735836148262, -0.2557682991027832, -0.28176379203796387], [0.4161626398563385, -0.2844782769680023, 0.10777657479047775, 0.10621552914381027, 0.5707733631134033, -0.08483604341745377, 0.12602673470973969, 0.019397806376218796, -0.25576555728912354, -0.2817692160606384], [0.41616225242614746, -0.2844763994216919, 0.10778016597032547, 0.10621759295463562, 0.5707724690437317, -0.08483531326055527, 0.12602132558822632, 0.019393812865018845, -0.2557665705680847, -0.2817719876766205], [0.41616520285606384, -0.284481406211853, 0.10776820778846741, 0.1062128096818924, 0.5707738399505615, -0.0848311111330986, 0.1260310709476471, 0.01940460503101349, -0.2557694911956787, -0.28176066279411316], [0.4161631166934967, -0.2844853401184082, 0.10776925086975098, 0.10621383786201477, 0.5707768201828003, -0.0848422423005104, 0.1260358691215515, 0.019408171996474266, -0.2557636499404907, -0.2817661762237549], [0.4161587059497833, -0.2844783663749695, 0.10778646916151047, 0.10622250288724899, 0.5707750916481018, -0.08484566956758499, 0.12601841986179352, 0.019391899928450584, -0.2557629644870758, -0.2817820906639099], [0.41616347432136536, -0.284475713968277, 0.10778146237134933, 0.10621757805347443, 0.5707721710205078, -0.08482854068279266, 0.1260167360305786, 0.019392473623156548, -0.2557721436023712, -0.2817680835723877], [0.41616401076316833, -0.2844752073287964, 0.10778205096721649, 0.10621342062950134, 0.5707719922065735, -0.08482887595891953, 0.12602238357067108, 0.019393932074308395, -0.2557688057422638, -0.2817654609680176], [0.4161631166934967, -0.28447750210762024, 0.10777425765991211, 0.10621338337659836, 0.5707728862762451, -0.08483095467090607, 0.12602835893630981, 0.01939743384718895, -0.255767822265625, -0.2817656099796295], [0.41616323590278625, -0.2844775319099426, 0.10777641087770462, 0.10621489584445953, 0.5707724690437317, -0.08483592420816422, 0.12602607905864716, 0.019397031515836716, -0.2557651400566101, -0.2817692756652832], [0.41616174578666687, -0.2844744324684143, 0.10778249800205231, 0.10621887445449829, 0.5707713961601257, -0.08483473211526871, 0.1260181963443756, 0.01939096860587597, -0.25576654076576233, -0.28177395462989807], [0.4161631464958191, -0.28447070717811584, 0.10778685659170151, 0.10621774196624756, 0.5707693099975586, -0.08482753485441208, 0.12601324915885925, 0.01938636600971222, -0.2557695508003235, -0.28177112340927124], [0.4161642789840698, -0.2844700515270233, 0.10778345167636871, 0.10621441155672073, 0.5707687139511108, -0.08482252806425095, 0.12601707875728607, 0.019387684762477875, -0.25577086210250854, -0.28176581859588623], [0.4161645174026489, -0.28447115421295166, 0.10777987539768219, 0.10621283203363419, 0.5707688927650452, -0.08482469618320465, 0.12602169811725616, 0.019390208646655083, -0.2557685971260071, -0.2817651927471161], [0.41616326570510864, -0.2844698131084442, 0.10778253525495529, 0.10621561855077744, 0.5707682967185974, -0.08482801914215088, 0.126018226146698, 0.019387178122997284, -0.2557668387889862, -0.2817705273628235], [0.41616398096084595, -0.28446826338768005, 0.10778355598449707, 0.10621634125709534, 0.5707671046257019, -0.08482466638088226, 0.12601454555988312, 0.01938539743423462, -0.25576895475387573, -0.2817695438861847], [0.4161645770072937, -0.28446727991104126, 0.10778464376926422, 0.10621535778045654, 0.5707665085792542, -0.08482219278812408, 0.12601426243782043, 0.019384853541851044, -0.25576964020729065, -0.2817676365375519], [0.41616472601890564, -0.2844679057598114, 0.10778230428695679, 0.10621423274278641, 0.570766806602478, -0.0848214253783226, 0.12601695954799652, 0.01938621699810028, -0.2557696998119354, -0.28176602721214294], [0.41616520285606384, -0.28447020053863525, 0.10777807235717773, 0.10621308535337448, 0.5707676410675049, -0.08482342958450317, 0.12602120637893677, 0.019390223547816277, -0.25576865673065186, -0.2817644774913788], [0.41616421937942505, -0.2844714820384979, 0.10777844488620758, 0.1062147319316864, 0.5707685351371765, -0.08482783287763596, 0.12602131068706512, 0.019391043111681938, -0.25576695799827576, -0.2817675769329071], [0.41616320610046387, -0.2844695746898651, 0.10778402537107468, 0.1062173992395401, 0.5707680583000183, -0.08482832461595535, 0.12601545453071594, 0.019386492669582367, -0.2557673156261444, -0.2817716598510742], [0.4161655306816101, -0.2844725549221039, 0.10777592658996582, 0.1062137633562088, 0.5707687735557556, -0.08482328802347183, 0.12602150440216064, 0.019393261522054672, -0.25577065348625183, -0.2817627191543579], [0.4161647856235504, -0.2844763994216919, 0.10777395218610764, 0.10621277987957001, 0.5707711577415466, -0.0848304033279419, 0.1260279268026352, 0.019398318603634834, -0.2557666003704071, -0.28176388144493103], [0.416163831949234, -0.2844817638397217, 0.10776716470718384, 0.10621386766433716, 0.5707740783691406, -0.084835946559906, 0.12603352963924408, 0.019404828548431396, -0.2557659149169922, -0.28176453709602356], [0.4161633849143982, -0.2844858169555664, 0.10776717960834503, 0.10621516406536102, 0.5707764625549316, -0.08484302461147308, 0.12603497505187988, 0.01940896175801754, -0.2557638883590698, -0.281766802072525], [0.416161447763443, -0.2844870090484619, 0.10777091979980469, 0.10621827095746994, 0.5707781910896301, -0.08484645187854767, 0.12603209912776947, 0.01940779946744442, -0.2557641267776489, -0.28177115321159363], [0.4161621034145355, -0.2844882607460022, 0.10777094960212708, 0.10621719807386398, 0.5707791447639465, -0.08484473824501038, 0.12603247165679932, 0.019409043714404106, -0.25576603412628174, -0.2817685604095459], [0.41616135835647583, -0.284488320350647, 0.10777303576469421, 0.10621687024831772, 0.5707798600196838, -0.08484599739313126, 0.12603285908699036, 0.019408298656344414, -0.25576528906822205, -0.2817697823047638], [0.41616150736808777, -0.28448915481567383, 0.10777068138122559, 0.10621620714664459, 0.5707801580429077, -0.08484555035829544, 0.12603464722633362, 0.019409528002142906, -0.25576579570770264, -0.28176867961883545], [0.4161614775657654, -0.28448957204818726, 0.10777074098587036, 0.10621616244316101, 0.5707803964614868, -0.08484731614589691, 0.12603510916233063, 0.01941012404859066, -0.2557647228240967, -0.28176936507225037], [0.4161597788333893, -0.28448548913002014, 0.1077791377902031, 0.10621946305036545, 0.5707789659500122, -0.08484772592782974, 0.12602707743644714, 0.01940223015844822, -0.25576430559158325, -0.2817758023738861], [0.41616156697273254, -0.28448283672332764, 0.10777842998504639, 0.10621772706508636, 0.5707769393920898, -0.08483922481536865, 0.12602472305297852, 0.01940016634762287, -0.2557683289051056, -0.2817707061767578], [0.41616320610046387, -0.2844841778278351, 0.10777315497398376, 0.10621379315853119, 0.5707769393920898, -0.08483723551034927, 0.12603126466274261, 0.01940484344959259, -0.25576797127723694, -0.28176483511924744], [0.4161626100540161, -0.28448787331581116, 0.10776706039905548, 0.10621339827775955, 0.5707787275314331, -0.08484262228012085, 0.12603814899921417, 0.019410422071814537, -0.2557651698589325, -0.2817651927471161], [0.41616180539131165, -0.2844906747341156, 0.107765793800354, 0.10621555894613266, 0.5707801580429077, -0.08484895527362823, 0.12603896856307983, 0.019413109868764877, -0.25576311349868774, -0.2817686200141907], [0.4161597192287445, -0.2844872772693634, 0.10777666419744492, 0.10622051358222961, 0.5707794427871704, -0.08485116064548492, 0.12602850794792175, 0.019404985010623932, -0.2557629346847534, -0.2817768156528473], [0.4161617159843445, -0.2844862639904022, 0.10777470469474792, 0.10621816664934158, 0.5707785487174988, -0.08484169840812683, 0.12602774798870087, 0.01940508931875229, -0.255768358707428, -0.28176945447921753], [0.4161619544029236, -0.28448545932769775, 0.10777655988931656, 0.10621561855077744, 0.5707784295082092, -0.08484172821044922, 0.1260300725698471, 0.019404642283916473, -0.25576648116111755, -0.2817685008049011], [0.4161602556705475, -0.28448188304901123, 0.10778053849935532, 0.10621781647205353, 0.5707770586013794, -0.08484169095754623, 0.12602561712265015, 0.019398154690861702, -0.255765825510025, -0.28177377581596375], [0.4161614179611206, -0.2844764292240143, 0.10778509825468063, 0.10621802508831024, 0.5707736015319824, -0.08483567088842392, 0.12601830065250397, 0.019391341134905815, -0.25576773285865784, -0.28177374601364136], [0.41616252064704895, -0.2844718098640442, 0.10778704285621643, 0.10621684044599533, 0.5707706809043884, -0.08482836186885834, 0.12601490318775177, 0.019386954605579376, -0.2557696998119354, -0.28177112340927124], [0.4161636233329773, -0.28446924686431885, 0.10778598487377167, 0.10621480643749237, 0.5707686543464661, -0.08482376486063004, 0.12601546943187714, 0.019385389983654022, -0.25577014684677124, -0.28176820278167725], [0.41616642475128174, -0.284475713968277, 0.10776878148317337, 0.10620951652526855, 0.5707702040672302, -0.0848228707909584, 0.1260303258895874, 0.01939934678375721, -0.25577038526535034, -0.2817573547363281], [0.41616445779800415, -0.2844821512699127, 0.10776577889919281, 0.10621165484189987, 0.5707738399505615, -0.08483804017305374, 0.12603722512722015, 0.019406788051128387, -0.25576314330101013, -0.28176364302635193], [0.4161624014377594, -0.2844866216182709, 0.10776452720165253, 0.10621675103902817, 0.5707767605781555, -0.08484542369842529, 0.12603604793548584, 0.01940983347594738, -0.25576305389404297, -0.2817689776420593], [0.41616302728652954, -0.2844909131526947, 0.10776448249816895, 0.10621684044599533, 0.5707793235778809, -0.08484766632318497, 0.12603704631328583, 0.019414778798818588, -0.25576433539390564, -0.2817668616771698], [0.4161610007286072, -0.2844928801059723, 0.10776843130588531, 0.10621815174818039, 0.570781946182251, -0.08485156297683716, 0.1260371208190918, 0.019414659589529037, -0.2557637393474579, -0.28177008032798767], [0.4161599576473236, -0.2844911813735962, 0.10777413100004196, 0.10621918737888336, 0.5707821249961853, -0.08485132455825806, 0.1260327696800232, 0.019409706816077232, -0.2557643949985504, -0.2817733883857727], [0.41616082191467285, -0.28448954224586487, 0.10777411609888077, 0.10621754825115204, 0.5707810521125793, -0.08484673500061035, 0.12603189051151276, 0.019408246502280235, -0.25576651096343994, -0.28177058696746826], [0.41616180539131165, -0.28449052572250366, 0.10776994377374649, 0.10621501505374908, 0.5707811117172241, -0.0848456397652626, 0.1260363757610321, 0.019411427900195122, -0.25576621294021606, -0.28176701068878174], [0.4161616563796997, -0.2844935357570648, 0.10776492208242416, 0.10621453076601028, 0.5707823634147644, -0.08484947681427002, 0.12604162096977234, 0.019416186958551407, -0.25576433539390564, -0.2817666232585907], [0.4161595404148102, -0.28449127078056335, 0.10777316987514496, 0.10621894896030426, 0.570781946182251, -0.08485451340675354, 0.12603434920310974, 0.019410034641623497, -0.2557620108127594, -0.2817753851413727], [0.41616111993789673, -0.2844911217689514, 0.10776986926794052, 0.10621799528598785, 0.5707812905311584, -0.0848475843667984, 0.12603358924388885, 0.019411182031035423, -0.25576668977737427, -0.2817697525024414], [0.4161616563796997, -0.28449171781539917, 0.10777075588703156, 0.10621587187051773, 0.5707817077636719, -0.08484847098588943, 0.12603627145290375, 0.019412722438573837, -0.2557651400566101, -0.28176817297935486], [0.41616106033325195, -0.28449440002441406, 0.10776523500680923, 0.10621552914381027, 0.570783257484436, -0.08485009521245956, 0.12604130804538727, 0.019416559487581253, -0.255764901638031, -0.281767338514328], [0.4161602854728699, -0.28449392318725586, 0.10776974260807037, 0.10621733218431473, 0.5707831978797913, -0.08485475182533264, 0.12603822350502014, 0.019414205104112625, -0.2557624876499176, -0.2817722260951996], [0.4161600172519684, -0.2844928801059723, 0.10777036100625992, 0.10621868073940277, 0.5707827806472778, -0.08485198765993118, 0.1260351538658142, 0.019412441179156303, -0.25576481223106384, -0.28177228569984436], [0.41616153717041016, -0.28449392318725586, 0.1077682375907898, 0.10621614754199982, 0.5707828998565674, -0.08484990149736404, 0.12603795528411865, 0.019415292888879776, -0.25576555728912354, -0.28176775574684143], [0.4161601662635803, -0.28449392318725586, 0.10776978731155396, 0.10621700435876846, 0.5707834959030151, -0.08485276997089386, 0.12603837251663208, 0.01941431686282158, -0.25576379895210266, -0.28177085518836975], [0.41616153717041016, -0.28449758887290955, 0.10776159167289734, 0.10621507465839386, 0.5707845687866211, -0.0848521813750267, 0.12604431807994843, 0.019420893862843513, -0.25576499104499817, -0.28176578879356384], [0.4161604046821594, -0.2844997048377991, 0.10776321589946747, 0.10621634125709534, 0.57078617811203, -0.08485928922891617, 0.1260455697774887, 0.019422724843025208, -0.25576159358024597, -0.28176969289779663], [0.41615843772888184, -0.28449779748916626, 0.10776938498020172, 0.10622037947177887, 0.5707860589027405, -0.08486063033342361, 0.12603868544101715, 0.019417066127061844, -0.25576210021972656, -0.2817758321762085], [0.4161606431007385, -0.28449803590774536, 0.10776674747467041, 0.10621771216392517, 0.5707855820655823, -0.08485449105501175, 0.1260395497083664, 0.01941906102001667, -0.2557656466960907, -0.2817692160606384], [0.41615957021713257, -0.2844966650009155, 0.10777094960212708, 0.1062176525592804, 0.570785641670227, -0.08485634624958038, 0.12603901326656342, 0.019416499882936478, -0.2557635009288788, -0.2817719280719757], [0.4161597490310669, -0.28449633717536926, 0.10776828229427338, 0.10621733218431473, 0.5707851648330688, -0.08485395461320877, 0.12603959441184998, 0.019416306167840958, -0.2557648718357086, -0.2817706763744354], [0.4161600172519684, -0.2844944894313812, 0.1077713891863823, 0.1062173843383789, 0.5707840323448181, -0.084854356944561, 0.12603718042373657, 0.019413936883211136, -0.2557637691497803, -0.28177210688591003], [0.41616055369377136, -0.28449514508247375, 0.10776709020137787, 0.10621671378612518, 0.5707839727401733, -0.0848516970872879, 0.1260393112897873, 0.019416097551584244, -0.2557653486728668, -0.2817690968513489], [0.41615983843803406, -0.2844926416873932, 0.10777381807565689, 0.10621809214353561, 0.5707830190658569, -0.08485395461320877, 0.12603484094142914, 0.019411323592066765, -0.25576314330101013, -0.2817736566066742], [0.41615912318229675, -0.2844875454902649, 0.10777921229600906, 0.10622017085552216, 0.5707806944847107, -0.08484859764575958, 0.12602710723876953, 0.01940341293811798, -0.2557657063007355, -0.2817760705947876], [0.4161616265773773, -0.28448453545570374, 0.10777856409549713, 0.10621676594018936, 0.5707781910896301, -0.08484046161174774, 0.1260264366865158, 0.019401976838707924, -0.2557682693004608, -0.28176984190940857], [0.4161616861820221, -0.2844829559326172, 0.10777761787176132, 0.10621540248394012, 0.570777177810669, -0.08483913540840149, 0.12602832913398743, 0.01940123178064823, -0.2557671368122101, -0.2817690968513489], [0.4161611795425415, -0.28447961807250977, 0.10778091847896576, 0.10621688514947891, 0.5707752704620361, -0.08483881503343582, 0.12602415680885315, 0.019396167248487473, -0.2557661235332489, -0.281772643327713], [0.41616296768188477, -0.2844790816307068, 0.10777644068002701, 0.10621535778045654, 0.5707738995552063, -0.08483387529850006, 0.12602517008781433, 0.019397931173443794, -0.25576847791671753, -0.28176769614219666], [0.41616278886795044, -0.28447824716567993, 0.10777866840362549, 0.10621548444032669, 0.5707734823226929, -0.08483551442623138, 0.1260247379541397, 0.019397009164094925, -0.25576651096343994, -0.2817692160606384], [0.4161622226238251, -0.28447675704956055, 0.10777978599071503, 0.10621684044599533, 0.5707728862762451, -0.08483422547578812, 0.12602229416370392, 0.01939435675740242, -0.255767285823822, -0.2817707061767578], [0.41616350412368774, -0.2844763398170471, 0.10777869820594788, 0.10621538758277893, 0.5707721710205078, -0.08483166247606277, 0.12602268159389496, 0.019395064562559128, -0.25576817989349365, -0.28176775574684143], [0.4161624014377594, -0.2844736874103546, 0.1077837198972702, 0.10621684044599533, 0.5707712769508362, -0.08483216911554337, 0.1260189563035965, 0.019390380010008812, -0.2557671070098877, -0.28177160024642944], [0.4161619544029236, -0.28446730971336365, 0.10779180377721786, 0.10621874034404755, 0.5707681775093079, -0.08482716232538223, 0.12600946426391602, 0.019380467012524605, -0.25576871633529663, -0.2817750573158264], [0.4161642789840698, -0.28446313738822937, 0.107791006565094, 0.10621576756238937, 0.5707650780677795, -0.08481692522764206, 0.12600760161876678, 0.019377607852220535, -0.25577235221862793, -0.28176870942115784], [0.41616588830947876, -0.28446340560913086, 0.1077851727604866, 0.10621190816164017, 0.5707642436027527, -0.08481429517269135, 0.12601397931575775, 0.019381346181035042, -0.25577160716056824, -0.2817632555961609], [0.41616564989089966, -0.2844661474227905, 0.10777919739484787, 0.10621166974306107, 0.5707651376724243, -0.08481886237859726, 0.12601977586746216, 0.01938602328300476, -0.2557688355445862, -0.28176361322402954], [0.4161646366119385, -0.2844669222831726, 0.10778060555458069, 0.10621467977762222, 0.5707655549049377, -0.08482415974140167, 0.12601760029792786, 0.01938582956790924, -0.255766898393631, -0.28176841139793396], [0.41616466641426086, -0.2844671905040741, 0.10778174549341202, 0.10621616244316101, 0.5707657337188721, -0.08482325077056885, 0.12601487338542938, 0.019385598599910736, -0.25576862692832947, -0.28176844120025635], [0.41616562008857727, -0.2844698429107666, 0.10777844488620758, 0.10621407628059387, 0.5707671046257019, -0.08482225984334946, 0.12601915001869202, 0.019390186294913292, -0.25576964020729065, -0.2817639410495758], [0.4161640405654907, -0.2844706177711487, 0.10778112709522247, 0.10621505975723267, 0.5707683563232422, -0.08482687175273895, 0.12601962685585022, 0.019389426335692406, -0.2557673156261444, -0.28176790475845337], [0.41616395115852356, -0.2844710052013397, 0.1077800765633583, 0.10621552914381027, 0.5707685351371765, -0.08482645452022552, 0.12601909041404724, 0.019389426335692406, -0.25576841831207275, -0.28176799416542053], [0.41616368293762207, -0.2844688892364502, 0.1077851876616478, 0.10621640086174011, 0.5707678198814392, -0.08482658863067627, 0.12601496279239655, 0.01938576251268387, -0.25576791167259216, -0.28177040815353394], [0.41616496443748474, -0.28447073698043823, 0.10777841508388519, 0.10621407628059387, 0.5707681775093079, -0.08482252806425095, 0.1260197013616562, 0.01939029060304165, -0.2557704746723175, -0.28176426887512207], [0.4161660969257355, -0.28447720408439636, 0.10776916891336441, 0.10621074587106705, 0.5707709193229675, -0.08482770621776581, 0.12603110074996948, 0.01940116472542286, -0.255767822265625, -0.2817595899105072], [0.41616290807724, -0.28448060154914856, 0.1077708750963211, 0.10621507465839386, 0.570773720741272, -0.08483916521072388, 0.12603165209293365, 0.019402431324124336, -0.255763441324234, -0.2817685008049011], [0.4161623418331146, -0.2844809889793396, 0.10777410119771957, 0.106218121945858, 0.5707743167877197, -0.08484024554491043, 0.12602634727954865, 0.019400635734200478, -0.2557651996612549, -0.28177133202552795], [0.4161621630191803, -0.28447863459587097, 0.10778099298477173, 0.10621874034404755, 0.5707738399505615, -0.08483753353357315, 0.1260208636522293, 0.01939621940255165, -0.255766898393631, -0.28177210688591003], [0.4161621928215027, -0.284475713968277, 0.10778412967920303, 0.10621762275695801, 0.5707727670669556, -0.08483223617076874, 0.12601853907108307, 0.01939193718135357, -0.25576892495155334, -0.28177088499069214], [0.41616326570510864, -0.2844739556312561, 0.1077827587723732, 0.1062149703502655, 0.5707715153694153, -0.0848284512758255, 0.12601998448371887, 0.019391072914004326, -0.25576937198638916, -0.281767874956131], [0.41616320610046387, -0.28447243571281433, 0.1077822744846344, 0.10621469467878342, 0.5707703232765198, -0.08482840657234192, 0.12602011859416962, 0.019389783963561058, -0.25576815009117126, -0.28176867961883545], [0.4161638021469116, -0.28447219729423523, 0.10777981579303741, 0.10621469467878342, 0.5707694888114929, -0.08482745289802551, 0.12602050602436066, 0.01939055137336254, -0.2557683289051056, -0.28176766633987427], [0.4161631166934967, -0.2844694256782532, 0.10778538137674332, 0.10621662437915802, 0.5707682967185974, -0.08482804149389267, 0.12601539492607117, 0.019385896623134613, -0.25576743483543396, -0.2817715108394623], [0.4161651134490967, -0.28447166085243225, 0.10777707397937775, 0.10621383786201477, 0.5707684755325317, -0.08482281863689423, 0.1260206401348114, 0.019391587004065514, -0.25577065348625183, -0.2817636728286743], [0.4161645472049713, -0.2844734489917755, 0.10777802020311356, 0.1062135249376297, 0.570769727230072, -0.08482887595891953, 0.12602370977401733, 0.01939370110630989, -0.25576677918434143, -0.2817659378051758], [0.41616350412368774, -0.2844754457473755, 0.10777502506971359, 0.10621529817581177, 0.5707710385322571, -0.08483109623193741, 0.12602484226226807, 0.019395511597394943, -0.2557671368122101, -0.28176748752593994], [0.41616371273994446, -0.28447577357292175, 0.10777788609266281, 0.10621590167284012, 0.5707712769508362, -0.08483312278985977, 0.1260228157043457, 0.019395191222429276, -0.25576648116111755, -0.2817687690258026], [0.41616323590278625, -0.2844764292240143, 0.10777732729911804, 0.10621629655361176, 0.5707719326019287, -0.08483217656612396, 0.1260230839252472, 0.019395742565393448, -0.2557677924633026, -0.28176820278167725], [0.41616395115852356, -0.28447842597961426, 0.10777502506971359, 0.10621457546949387, 0.5707728862762451, -0.08483271300792694, 0.1260264813899994, 0.019398929551243782, -0.2557675540447235, -0.28176575899124146], [0.4161622226238251, -0.2844774127006531, 0.10777942836284637, 0.10621669888496399, 0.5707731246948242, -0.08483614772558212, 0.1260237693786621, 0.019395601004362106, -0.2557658553123474, -0.2817710041999817], [0.41616201400756836, -0.2844736874103546, 0.10778450965881348, 0.10621821135282516, 0.570771336555481, -0.08483271300792694, 0.1260170191526413, 0.019389456138014793, -0.2557676434516907, -0.28177306056022644]]], 'fractal_dimension': 4.25} 2025-07-27 17:11:44,161 - DEBUG - Sending response: { "message": "File uploaded successfully", "filename": "S001R01.edf", "shape": [ 64, 9760 ], "sampling_rate": 160.0, "channel_names": [ "Fc5.", "Fc3.", "Fc1.", "Fcz.", "Fc2.", "Fc4.", "Fc6.", "C5..", "C3..", "C1..", "Cz..", "C2..", "C4..", "C6..", "Cp5.", "Cp3.", "Cp1.", "Cpz.", "Cp2.", "Cp4.", "Cp6.", "Fp1.", "Fpz.", "Fp2.", "Af7.", "Af3.", "Afz.", "Af4.", "Af8.", "F7..", "F5..", "F3..", "F1..", "Fz..", "F2..", "F4..", "F6..", "F8..", "Ft7.", "Ft8.", "T7..", "T8..", "T9..", "T10.", "Tp7.", "Tp8.", "P7..", "P5..", "P3..", "P1..", "Pz..", "P2..", "P4..", "P6..", "P8..", "Po7.", "Po3.", "Poz.", "Po4.", "Po8.", "O1..", "Oz..", "O2..", "Iz.." ], "metrics": [ { "mean_amplitude": -0.7604508196721314, "mu_psd": 32.96217130036497, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.0400614754098365, "mu_psd": 42.208361534205906, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.0797131147540973, "mu_psd": 39.75499892768321, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.8452868852459003, "mu_psd": 38.731687895830035, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.4572745901639337, "mu_psd": 36.45671846636971, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 3.0593237704918033, "mu_psd": 33.12253401258297, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.7516393442622946, "mu_psd": 20.383899986541035, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.8946721311475412, "mu_psd": 36.13147005560294, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.358299180327869, "mu_psd": 42.707443489824996, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.18688524590164052, "mu_psd": 35.83879768589472, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.3882172131147534, "mu_psd": 32.816917407410266, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.692213114754098, "mu_psd": 31.95003385558746, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.224282786885246, "mu_psd": 28.29165483101699, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.628790983606558, "mu_psd": 17.01563826863389, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.463422131147541, "mu_psd": 36.32390309607568, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.16557377049180302, "mu_psd": 38.3608098936832, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.777049180327868, "mu_psd": 35.58889841907527, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6493852459016396, "mu_psd": 32.76094623423135, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.11547131147541033, "mu_psd": 30.293224827502296, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.5043032786885251, "mu_psd": 29.00179204029715, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.3472336065573767, "mu_psd": 21.313346303950205, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -8.763217213114755, "mu_psd": 30.889085201415394, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -7.782786885245901, "mu_psd": 27.436530092968738, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -8.68954918032787, "mu_psd": 26.901803396603853, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -10.696823770491802, "mu_psd": 31.79732985272577, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -9.142418032786885, "mu_psd": 30.979407517628683, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.964241803278689, "mu_psd": 33.534322865086395, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -4.732991803278689, "mu_psd": 28.50425245527458, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -6.505122950819672, "mu_psd": 23.90336767313496, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.3546106557377042, "mu_psd": 27.836928662869006, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -5.617827868852459, "mu_psd": 35.33012840136983, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.6713114754098355, "mu_psd": 32.67831622400885, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.14334016393442614, "mu_psd": 38.17433457556781, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8379098360655738, "mu_psd": 38.28653350595802, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.4547131147540994, "mu_psd": 35.04637279580251, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8713114754098362, "mu_psd": 31.850613664878395, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.163422131147541, "mu_psd": 25.829493870582244, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.7753073770491805, "mu_psd": 17.6736917924352, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.3829918032786885, "mu_psd": 28.17966031322613, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8619877049180324, "mu_psd": 11.291750159105318, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.9428278688524583, "mu_psd": 27.626524911435336, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.750409836065573, "mu_psd": 9.30286324704405, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.7112704918032788, "mu_psd": 26.482776617605577, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.09641393442622959, "mu_psd": 2.533695442731044, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.14477459016393418, "mu_psd": 30.068746868094838, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6962090163934423, "mu_psd": 11.550468816632018, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8612704918032791, "mu_psd": 37.79443489890606, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.0809426229508203, "mu_psd": 40.656749513463446, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.3059426229508198, "mu_psd": 41.330996096642515, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.5913934426229513, "mu_psd": 41.42380498373986, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.18893442622950787, "mu_psd": 38.186882884316766, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.7969262295081971, "mu_psd": 37.650624175942006, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.1698770491803276, "mu_psd": 33.958598201727426, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.8021516393442623, "mu_psd": 27.053105215942246, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.02530737704918, "mu_psd": 19.503264664200966, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.7867827868852455, "mu_psd": 47.11752538431089, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.0236680327868863, "mu_psd": 48.43728070052847, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.284118852459016, "mu_psd": 46.34457088667734, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.0335040983606556, "mu_psd": 41.35467641899583, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.2284836065573768, "mu_psd": 39.659832169131796, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6304303278688523, "mu_psd": 55.50730913514963, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.154713114754098, "mu_psd": 49.149252934165, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.3248975409836069, "mu_psd": 50.32309919576436, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.56875, "mu_psd": 44.79530326491978, "erd_amplitude": 0.0, "event_latency": 0.0 } ] } 2025-07-27 17:11:44,163 - INFO - 127.0.0.1 - - [27/Jul/2025 17:11:44] "POST /upload HTTP/1.1" 200 - 2025-07-28 01:06:26,581 - INFO - 192.168.3.155 - - [28/Jul/2025 01:06:26] "[33mGET / HTTP/1.1[0m" 404 - 2025-07-28 01:06:37,694 - INFO - 192.168.3.155 - - [28/Jul/2025 01:06:37] "[33mGET / HTTP/1.1[0m" 404 - 2025-07-28 01:06:37,720 - INFO - 192.168.3.155 - - [28/Jul/2025 01:06:37] "[33mGET /loginMsg.js HTTP/1.1[0m" 404 - 2025-07-28 01:06:37,744 - INFO - 192.168.3.155 - - [28/Jul/2025 01:06:37] "[33mGET /cgi/get.cgi?cmd=home_login HTTP/1.1[0m" 404 - 2025-07-28 01:06:40,398 - INFO - 192.168.3.155 - - [28/Jul/2025 01:06:40] "[33mGET /rootDesc.xml HTTP/1.1[0m" 404 - 2025-07-28 22:34:52,954 - DEBUG - Received upload request 2025-07-28 22:34:53,014 - DEBUG - Saving file to C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001\S001R01.edf 2025-07-28 22:34:53,019 - DEBUG - Loading EDF: C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001\S001R01.edf 2025-07-28 22:34:53,194 - DEBUG - EDF loaded: shape=(64, 9760), sfreq=160.0, channels=64 2025-07-28 22:34:55,411 - DEBUG - Chaos metrics: {'lorentz_trajectory': [[1.0, 1.012526435333749, 1.0488427648448813, 1.1074268310054123, 1.1872456699842253, 1.2879299443535448, 1.4100743204422619, 1.5546044176661293, 1.7226797617541962, 1.9156937847488102, 2.135501404667851, 2.3848509372121334, 2.6668380107922536, 2.984813421248435, 3.342383141022818, 3.7434083191594643, 4.191980636293861, 4.690242034217356, 5.244446379255251, 5.862109805589737, 6.548741906638002, 7.30784573505223, 8.140917802719603, 9.047448080762301, 10.024919999537499, 11.068810448637375, 12.172454030074087, 13.319363905546792, 14.484208344247893, 15.63513294827697, 16.731680385697324, 17.72479039053596, 18.558078017232326, 19.181057568135333, 19.537958095934012, 19.590016084394605, 19.32129990077376, 18.738709795818533, 17.868310041649757, 16.737663372007585, 15.398614892117966, 13.908598791349505, 12.327156229548489, 10.712315173349486, 9.10947837720894, 7.555592979577969, 6.078057482050836, 4.694801809243179, 3.4162471900409197, 2.2452230013149133, 1.181297687437059, 0.22176199989058532, -0.6383710027299765, -1.4063843651789711, -2.090985274463022, -2.6997109542721507, -3.2398852910893883, -3.7188737648943477, -4.144083449163219, -4.522963010868772, -4.862968807665948, -5.170009255773388, -5.4479837854463495, -5.7006486432102905, -5.931734687064622, -6.144947386482708, -6.343966822411869, -6.532447687273377, -6.7136985588011795, -6.8888340066299065, -7.058731372860783, -7.224289979754371, -7.386339467345437, -7.5456397934429615, -7.7028812336301336, -7.858684381264349, -8.013593048435599, -8.167488545892828, -8.319479097017247, -8.46866633725987, -8.614142894434366, -8.754992388717069, -8.890289432646965, -9.019099631125703, -9.140479581417596, -9.253476873149609, -9.35713008831137, -9.450594422061542, -9.532791072591133, -9.602206389748064, -9.657597021076525, -9.698008423928131, -9.722774865461929, -9.731519422644384, -9.724153982249392, -9.700879240858276, -9.662184704859783, -9.608848690450083, -9.541938323632781, -9.462772849451799, -9.371685987178621, -9.269630020722667, -9.158148638239561, -9.038783951303282, -8.913076494906171, -8.782565227458925, -8.648787530790598, -8.513279210148607, -8.377574494198718, -8.243206035025063, -8.111704908130129, -7.984600612434762, -7.863404747441387, -7.7492423187050825, -7.642944184696112, -7.545282114131972, -7.456948549077124, -7.378556604942999, -7.310640070487999, -7.253653407817487, -7.207971752383799, -7.173890912986237, -7.15162737177107, -7.141318284231538, -7.143021479207844, -7.156715458887163, -7.181874959232638, -7.217409249226833, -7.263409657025492, -7.319893661722231, -7.386736338229492, -7.463670357278543, -7.550285985419476, -7.6460310850212085, -7.750211114271484, -7.861989127176871, -7.980385773562762, -8.10427929907338, -8.232405545171764, -8.363357949139786, -8.495914576487744, -8.629752863825058, -8.763459277088652, -8.895515835795143, -9.024427049858648, -9.14871991959078, -9.266943935700645, -9.377671079294855, -9.47949582187751, -9.571035125350217, -9.650928442012074, -9.717837714559675, -9.770447376087121, -9.807531613047413, -9.828752723335299, -9.83379993391946, -9.822445766314303, -9.794701473837263, -9.750817041608803, -9.691281186552414, -9.616821357394612, -9.528403734664938, -9.42723323069597, -9.314753489623305, -9.19264688738557, -9.062834531724416, -8.927461942101298, -8.787713390817125, -8.644830853165788, -8.500562729492893, -8.356569210284198, -8.214422276165605, -8.075605697903164, -7.941515036403072, -7.813457642711677, -7.692652658015469, -7.580231013641087, -7.47723543105532, -7.384620421865098, -7.302954716502444, -7.232317569344705, -7.173131836879367, -7.125744194242481, -7.090413688185375, -7.067311737074662, -7.056522130892233, -7.05804103123526, -7.071776971316195, -7.097550855962773, -7.1350959616180045, -7.184057936340187, -7.2438408624372475, -7.3133908061992265, -7.392661148749552, -7.481583732765693, -7.579917354594806, -7.687247764253738, -7.802987665429025, -7.926376715476891, -8.056481525423253, -8.192195659963717, -8.332239637463571, -8.4751609299578, -8.619333963151075, -8.762960116417757, -8.9040677228019, -9.041733651545048, -9.175411283227357, -9.303033623622047, -9.422692562313493, -9.53264852875856, -9.63133049228661, -9.717335962099487, -9.789430987271533, -9.846550156749583, -9.887796599352956, -9.91244198377347, -9.91992651857543, -9.909852492276912, -9.881840335197099, -9.83624943855869, -9.77383947072025, -9.695523211097457, -9.602366550163127, -9.49558848944719, -9.376561141536701, -9.246809730075842, -9.108012589765915, -8.962001166365349, -8.810760016689695, -8.656426808611627, -8.501215340287875, -8.34670564920694, -8.19447313415197, -8.046067250400013, -7.902926422881614, -7.766378046180814, -7.637638484535146, -7.517813071835638, -7.407896111626812, -7.308770877106684, -7.221209611126764, -7.145873526192057, -7.083219149135018, -7.032952714674168, -6.995232605770079, -6.970275303333803, -6.958205343333993, -6.959055316796903, -6.972765869806392, -6.9991857035039216, -7.038071574088554, -7.089088292816957, -7.151808726003399, -7.225713795019751, -7.31011357873849, -7.403957374717543, -7.507029474944586, -7.619107646305065, -7.739784593686578, -7.868467959978874, -8.004380326073855, -8.146559210865576, -8.293857071250242, -8.444941302126212, -8.598294236393995, -8.752213144956256, -8.904810236717807, -9.054012658585616, -9.197562495468803, -9.334624071478189, -9.464335474289687, -9.584388298062176, -9.692736107769305, -9.787594520645944, -9.86744120618821, -9.931015886153448, -9.97732033456024, -10.005618377688402, -10.015435894078982, -10.006560814534264, -9.979043122117771, -9.933063375833731, -9.868448237605362, -9.786257552142349, -9.687860380509992, -9.574725367862372, -9.448420743442336, -9.3106143205815, -9.163073496700262, -9.00766525330778, -8.846356156001994, -8.681212354469608, -8.514399582486101, -8.348183028946847, -8.184666843939338, -8.025445046639371, -7.871984306766961, -7.725636568489001, -7.587639050419258, -7.459114245618373, -7.341069921593863, -7.234399120300118, -7.139880158138405, -7.058176625956866, -6.989837389050518, -6.935296587161249, -6.894387842218629, -6.866686924439915, -6.8523863742908615, -6.8515848157115595, -6.864281849317243, -6.890378052398285, -6.929674978920194, -6.9818751595236215, -7.046582101524358, -7.12330028891333, -7.211435182356607, -7.310293219195396, -7.4187462322832065, -7.535703212393713, -7.661079587735009, -7.794606359599258, -7.935795192632162, -8.083938414832934, -8.23810901755431, -8.397160655502544, -8.559727646737409, -8.7242249726722, -8.888848278073729, -9.051573871062331, -9.210158723111856, -9.362140469049681, -9.504837407056696, -9.635386638281505, -9.753725229178356, -9.859024334812688, -9.949018731657922, -10.021835817013518, -10.075995609004963, -10.110410746583785, -10.124386489527545, -10.117620718439838, -10.0902039347503, -10.042619260714591, -9.97574243941442, -9.890841834757518, -9.789205553658606, -9.670831001584585, -9.537578170613347, -9.391603304905122, -9.235047511469363, -9.070036760164752, -8.898681883699199, -8.723078577629838, -8.545307400363033, -8.36743377315437, -8.19150798010867, -8.019565168179971, -7.8536288706212245, -7.695622850755487, -7.546800938397233, -7.40817111123786, -7.2806441676331755, -7.1650337266034025, -7.062056227833178, -6.97233093167155, -6.896379919131983, -6.83462809189235, -6.787403172294942, -6.754935703346462, -6.737359048718023, -6.73451248013291, -6.74518638294261, -6.769366675357218, -6.807161898345692, -6.858544770950088, -6.9233521902855575, -7.001285231540347, -7.091909147975802, -7.1946533709263605, -7.308811509799559, -7.4335413520760305, -7.567864863309502, -7.7106681871267995, -7.8607354828340545, -8.017212966693926, -8.179243679756066, -8.345772489958605, -8.5155896051879, -8.687330573278524, -8.859476282013276, -9.030352959123178, -9.198132172287472, -9.360830829133624, -9.516311177237323, -9.66228080412248, -9.796292637261226, -9.915744944073918, -10.017881331929136, -10.100764433156062, -10.164634780781967, -10.208156853214215, -10.230274453611187, -10.230338898474587, -10.20810901764944, -10.163751154324084, -10.097839165030187, -10.011354419642732, -9.905685801380024, -9.782629706803688, -9.64439004581867, -9.493578241673237, -9.333068906145296, -9.162981965277103, -8.98482878759277, -8.801160007163114, -8.614402586788056, -8.426859817996617, -8.240711321046913, -8.058013044926163, -7.880697267350682, -7.710572594765888, -7.549323962346295, -7.398512633995519, -7.2594784903540095, -7.132904663623455, -7.019415088932684, -6.919567309433686, -6.833826511422586, -6.762565524339654, -6.706064820769292, -6.664512516440045, -6.638004370224596, -6.626543784139766, -6.630041803346518, -6.648317116149947, -6.680228095852599, -6.725027301938794, -6.783159275420805, -6.854867279360083, -6.940191550021407, -7.0389692968728825, -7.1508347025859464, -7.275218923035359, -7.411350087299215, -7.55825329765893, -7.714750629599253, -7.879461131808261, -8.050800826177358, -8.226982707801273, -8.406017657705853, -8.587268944634591, -8.770039610765313, -8.952293440642876, -9.131972706673974, -9.306998169127132, -9.47526907613271, -9.6346631636829, -9.78303665563173, -9.918224263695059, -10.038039187450586, -10.140273114337834, -10.22269621965817, -10.283423763794456, -10.3218497007096, -10.337033842066914, -10.328383997380124, -10.295734067952337, -10.239344046876033, -10.159900019033067, -10.058514161094676, -9.936724741521465, -9.796496120563422, -9.640218750259907, -9.47070917443966, -9.291060150592779, -9.10236981618524, -8.906799278867322, -8.707076658711406, -8.505774646253728, -8.305310502494375, -8.107946058897298, -7.915787717390292, -7.730786450365016, -7.554737800676982, -7.389281881645554, -7.235903360998501, -7.095648944771609, -6.96909317908797, -6.8568150132149945, -6.759299456887157, -6.676937580305993, -6.6100265141401024, -6.558769449525145, -6.523275638063845, -6.503560391825989, -6.499545083348426, -6.511057145635067, -6.5372937525509816, -6.576950981572713, -6.6305074059456155, -6.698331105039451, -6.780576972210342, -6.87718671480078, -6.987888854139619, -7.112198725542077, -7.249418478309739, -7.398637075730553, -7.558730295078834, -7.728360727615259, -7.905977778586871, -8.089817667227079, -8.277903426755655, -8.468764577742625, -8.66246318804759, -8.857104546984818, -9.050584770576615, -9.240745084936115, -9.42537182626729, -9.602196440864931, -9.768895485114667, -9.92309062549295, -10.062348638567068, -10.184181410995134, -10.286045939526094, -10.365506505847325, -10.421659650759985, -10.453330840646105, -10.459546454825183, -10.439822357860882, -10.394163899561033, -10.32306591497764, -10.227512724406873, -10.108978133389076, -9.969425432708755, -9.811307398394593, -9.637566291719438, -9.451593963899635, -9.254733542434357, -9.04889371524319, -8.837115157064973, -8.622267102767625, -8.407047347348136, -8.19398224593258, -7.985426713776103, -7.78356422626293, -7.590406818906363, -7.407795087348783, -7.237398053982101, -7.080464817808489, -6.937711176584645, -6.809778415676883, -6.697208695053258, -6.600445049283575, -6.519831387539383, -6.455612493593976, -6.407934025822396, -6.376842517201431, -6.362285375309612, -6.36411088232722, -6.381287515149129, -6.413008531528666, -6.459742401128868, -6.521770632018398, -6.599180401355229, -6.691864555386654, -6.79952160944928, -6.921655747969031, -7.057576824461144, -7.206400361530175, -7.367047550869994, -7.538245253263787, -7.718525998584054, -7.906227985792615, -8.099753826467976, -8.29894800377932, -8.502516477912176, -8.708747135704986, -8.915772781495876, -9.12157113712266, -9.323964841922836, -9.520621452733591, -9.709053443891799, -9.886618207234019, -10.0505180520965, -10.197800205315172, -10.325356811225664, -10.429924931663273, -10.509242694274901, -10.563124617947837, -10.590243943545273, -10.589740727333378, -10.56128123162757, -10.505057924792517, -10.42178948124214, -10.312720781439607, -10.179622911897338, -10.024793165177003, -9.851055039889525, -9.661758240695073, -9.460647126667864, -9.248484210392412, -9.027377880178593, -8.800615601726816, -8.571285307507699, -8.342275396762046, -8.116274735500868, -7.895772656505365, -7.6830589593269405, -7.480223910287188, -7.289158242477907, -7.11152734778165, -6.9483904249257264, -6.80045151960636, -6.668326268035488, -6.552526918389259, -6.453462330808045, -6.371437977396435, -6.306655942223234, -6.259214921321466, -6.2291102226883766, -6.216233766285424, -6.220045735099047, -6.239236728324175, -6.274137938862359, -6.325085252704138, -6.392229563353213, -6.475536771826453, -6.574787786653891, -6.689578523878725, -6.819319907057318, -6.9632378672592, -7.120373343067063, -7.289582280576766, -7.469535633397332, -7.658719362650954, -7.855619290226343, -8.059963378901333, -8.270766971196366, -8.486606756326628, -8.705823907023454, -8.926524079534246, -9.146577413622595, -9.363618532568202, -9.575046543166891, -9.778025035730618, -9.969482084087467, -10.14611024558165, -10.3043665610735, -10.440472554939493, -10.552356346863064, -10.63906505743021, -10.69833474145512, -10.728540915647725, -10.728702008585254, -10.698479360712229, -10.638177224340467, -10.548742763649079, -10.431766054684475, -10.289480085360351, -10.124760755457707, -9.941126876624832, -9.74262704374555, -9.529299146131443, -9.302810678944223, -9.066844954678926, -8.824885570142529, -8.580216406453953, -8.335921629044055, -8.09488568765564, -7.859793316343454, -7.63312953347418, -7.417179641726447, -7.214018230909568, -7.025163097976971, -6.851545744292793, -6.693952201430297, -6.553050292730022, -6.429389633299802, -6.323401630014749, -6.235399481517266, -6.16557817821704, -6.1140145022910435, -6.0806670276835355, -6.065006490935123, -6.065987350328593, -6.083855888450332, -6.118801031573438, -6.170864571821662, -6.239941167169406, -6.325778341441723, -6.427976484314318, -6.545988851313546, -6.679121563816418, -6.826533609050591, -6.987236840094377, -7.16009597587674, -7.343914270556231, -7.538181974375951, -7.742465066178709, -7.955989176337656, -8.177654987369648, -8.40603823393523, -8.639389702838658, -8.875635233027872, -9.11237571559452, -9.346887093773946, -9.57612036294519, -9.796701570630992, -10.004931816497788, -10.196816989822064, -10.370828640690364, -10.524398286970609, -10.653691289698742, -10.755581716924958, -10.827652343713696, -10.868194652143652, -10.876208831307766, -10.851403777313232, -10.794197093281491, -10.705715089348239, -10.58779278266341, -10.441343065899435, -10.267497888805787, -10.069789389187859, -9.851753949508923, -9.616920773699706, -9.368811887158405, -9.110942136750674, -8.846819190809638, -8.579943539135877, -8.313808492997438, -8.051900447666117, -7.797754585466976, -7.553852312253302, -7.322005783592637, -7.103842314261366, -6.900804378244723, -6.714149608736789, -6.544950798140497, -6.394095898067622, -6.262288019338793, -6.15004543198348, -6.057701565240005, -5.984875493197264, -5.930640461362261, -5.895014964238059, -5.877960628182321, -5.879358024868149, -5.899006671284084, -5.936625029734106, -5.991850507837634, -6.064239458529525, -6.1532671800600784, -6.258327915995029, -6.378456196120566, -6.512769761829688, -6.661698356131369, -6.825438944131511, -7.003875176621308, -7.196577390077255, -7.402802606661146, -7.621494534220067, -7.851283566286405, -8.090486782077845, -8.337107946497365, -8.58883751013325, -8.843052609259068, -9.096817065833694, -9.347569994447012, -9.59412944296327, -9.83274892586172, -10.059610516710844, -10.271081476082484, -10.463714251551842, -10.634246477697486, -10.779600976101339, -10.896885755348693, -10.983394011028194, -11.036604125731854, -11.054376746189545, -11.035964280250669, -10.981481428092648, -10.891633084516688, -10.767718335565634, -10.611630458523976, -10.42585692191785, -10.213479385515033, -9.978173700324945, -9.724209908598652, -9.45645224382886, -9.17896518092362, -8.894633096706848, -8.607587271780016, -8.321634549912252, -8.040240932010176, -7.766531576117909, -7.50329079741706, -7.252962068226739, -7.0176480180035306, -6.799110182191392, -6.598588931593856, -6.416735423783791, -6.254060552391942, -6.110961268943225, -5.987720582856733, -5.884507561445735, -5.801377329917677, -5.738271071374176, -5.695016026811027, -5.67127437894807, -5.6655102725116535, -5.6775845494007395, -5.707948517525475, -5.756876214411522, -5.824464407200071, -5.910632592647825, -6.015122997127014, -6.137500576625385, -6.277153016746208, -6.433290732708274, -6.604946869345892, -6.790977301108893, -6.990060632062631, -7.200910734942229, -7.42371379485179, -7.658210899008282, -7.903596072099213, -8.158658812260963, -8.421784091078777, -8.690952353586773, -8.963739518267936, -9.237316977054117, -9.508451595326038, -9.773505711913291, -10.028437139094333, -10.268799162596492, -10.491400960811863, -10.693637330924663, -10.870423292222078, -11.017440698571619, -11.13118837122147, -11.20898209880049, -11.248954637318214, -11.250055710164856, -11.212052008111302, -11.135527189309116, -11.02172743836465, -10.870602508052292, -10.684879710285756, -10.468415406276245, -10.225188259471134, -9.959299235553976, -9.674971602444502, -9.376550930298624, -9.068505091508428, -8.755424260702176, -8.44202091474431, -8.133004873574595, -7.831871448514517, -7.541354957475765, -7.263910052704116, -7.001711959888221, -6.756656478159602, -6.5303599800926575, -6.324159411704661, -6.139112292455757, -5.975996715248969, -5.835304604083793, -5.716292932033446, -5.618266622153557, -5.541123268810432, -5.4846970173036524, -5.448758563866075, -5.43301515566383, -5.4371105907963235, -5.460625218296235, -5.503075938129518, -5.563916201195403, -5.642209880626704, -5.737553207744417, -5.850409462841139, -5.981033543624884, -6.129462862922454, -6.295517348679427, -6.478799443960166, -6.678694106947816, -6.8943688109443, -7.124773544370328, -7.368640810765387, -7.624485628787749, -7.890606252489617, -8.165667036782889, -8.448417166714737, -8.736931137785636, -9.028896019245243, -9.3216114540924, -9.611989659075137, -9.89655542469067, -10.171446115185397, -10.432411668554902, -10.674814596543957, -10.893629984646518, -11.083445492105726, -11.238561291235479, -11.356698628218233, -11.435698067506443, -11.473017788368411, -11.46714724858019, -11.417607184425583, -11.32494961069615, -11.1907578206912, -11.017646386217796, -10.80926115759075, -10.570279263632631, -10.306409111673759, -10.022959356072608, -9.719411807629815, -9.40060185698769, -9.071976456287343, -8.738589231017, -8.405100480012, -8.075777175454807, -7.754492962874992, -7.444728161149251, -7.149569790892485, -6.871673364793906, -6.612653403950992, -6.373609663912343, -6.1554519244162105, -5.958899989390499, -5.784483686952766, -5.632542869410221, -5.503227413259728, -5.396497219187801, -5.3119750101434, -5.2485317259284585, -5.205989294556362, -5.1842662824151, -5.183197665645914, -5.202534830143294, -5.241945571554977, -5.301014095281951, -5.379241016478454, -5.476043360051969, -5.590754560663235, -5.722624084685755, -5.8711576359978634, -6.036776221242916, -6.219829022346376, -6.420375336478269, -6.638184576053179, -6.872736268730252, -7.123220057413194, -7.388535700250272, -7.667293070634313, -7.957812157202707, -8.258123063837402, -8.565966009664908, -8.879230201532385, -9.195610178693487, -9.511529581946435, -9.823139927036284, -10.126340741415417, -10.416779564243566, -10.68985194638779, -10.940701450422498, -11.164219650629425, -11.355046132997652, -11.507976092598339, -11.620243917269454, -11.688180652420217, -11.708958266995737, -11.681046402318996, -11.60421237209083, -11.479521162389942, -11.309335431672897, -11.097315510774123, -10.84841940290591, -10.56884241458601, -10.261310820095364, -9.929917318524744, -9.581070675529574, -9.220776265837811, -8.854636073249953, -8.487848690639026, -8.125209319950601, -7.771109772202781, -7.42953846748621, -7.104115616864463, -6.7973797834087275, -6.510922775651294, -6.24606957502629, -6.003887644894541, -5.785186930543568, -5.590519859187591, -5.420181339967528, -5.274208763950994, -5.152299765221021], [1.0, 1.2602660236168577, 1.5246335723524451, 1.7991441836578583, 2.089728465710837, 2.402034337231003, 2.741062813428148, 3.112108094933138, 3.5209056034597817, 3.9736319818048305, 4.476508624259135, 5.0358407583463, 5.6584509900370925, 6.351383862848584, 7.121905813858448, 7.977505173704959, 8.925778443221201, 9.963354240539273, 11.1014214855464, 12.355152644794467, 13.72930570570825, 15.218224176585434, 16.805837086596576, 18.465658985785158, 20.160789945067535, 21.84391555623297, 23.45754370283531, 24.927788026075323, 26.130471116352034, 26.938428538030376, 27.23522106634597, 26.91513468740514, 25.879224671434386, 24.060423345716178, 21.57025996397508, 18.552428513235164, 15.152118776873753, 11.516016334621394, 7.810398882381861, 4.3020344437607125, 1.1578489839938353, -1.527493297304403, -3.7170042314612246, -5.428463401599892, -6.710890706310459, -7.623971241460531, -8.234967983687026, -8.617721943580147, -8.829542700730316, -8.914353821913945, -8.910905518039147, -8.850385250725857, -8.75641773230583, -8.645357756192142, -8.530342010868546, -8.419156527828727, -8.317372099743235, -8.229513447955323, -8.159059222480957, -8.108442002008802, -8.078837290813777, -8.069230532403084, -8.078846414866488, -8.106927167931449, -8.152570116259975, -8.214727679448623, -8.292207372028502, -8.38367180346526, -8.487560486117289, -8.602025828043356, -8.725544330125395, -8.856498079629198, -8.993125453940417, -9.133521120564568, -9.275636037127033, -9.417277451373055, -9.556125604289676, -9.690394953873497, -9.817943815603948, -9.936401239313605, -10.04354934905263, -10.137323343088783, -10.215811493907406, -10.277255148211436, -10.320048726921405, -10.34273972517543, -10.344028712329223, -10.322680317834667, -10.278289927274846, -10.211537685984485, -10.123326943851147, -10.014763721135683, -9.887156708472236, -9.742017266868242, -9.58105942770442, -9.406199892734783, -9.219558034086635, -9.023455894260566, -8.820418186130464, -8.6132106562799, -8.405927040773786, -8.201681620145132, -8.002745402265768, -7.811223147172688, -7.629053367068048, -7.45800832631916, -7.299694041458496, -7.155550281183689, -7.02685056635753, -6.914702170007971, -6.820046117328123, -6.743657185676255, -6.685937836956949, -6.644732023758531, -6.619692282099529, -6.61111038970383, -6.619082629546092, -6.643509789851739, -6.684097164096964, -6.740354551008731, -6.811596254564771, -6.896941083993584, -6.995312353774438, -7.105437883637372, -7.225849998563191, -7.3548855287834725, -7.491509520338424, -7.636624499743727, -7.789643601403191, -7.949756754880583, -8.116032680399787, -8.287418888844805, -8.462741681759757, -8.640706151348883, -8.819896180476544, -8.998774442667212, -9.175682402105481, -9.348840313636066, -9.516347222763795, -9.676180965653618, -9.826554038916548, -9.966258371830582, -10.09254942083166, -10.202850520156446, -10.294919311231842, -10.366847742674974, -10.417062070293197, -10.444322857084096, -10.447724973235482, -10.426697596125404, -10.381004210322127, -10.310742607584155, -10.216344886860217, -10.098425065093105, -9.957214359092408, -9.795729209724989, -9.617434121942843, -9.425627050255322, -9.223439398729127, -9.01383602098832, -8.799615220214317, -8.583408749145882, -8.367681810079148, -8.154733054867592, -7.946694584922046, -7.745531951210701, -7.553062448511212, -7.372350275021708, -7.205951003678668, -7.055342134229806, -6.921720456087645, -6.8060020483295105, -6.708822279697546, -6.630535808598694, -6.571216583104713, -6.5306578409521645, -6.508372109542423, -6.503591205941669, -6.515266236880893, -6.54236935793654, -6.584662041739082, -6.641834188471432, -6.713477573309693, -6.799092105287347, -6.898085827295245, -7.009774916081612, -7.133383682252044, -7.268044570269512, -7.4127981584543585, -7.566593158984299, -7.728286417894421, -7.896809001087917, -8.07184479382068, -8.25239957483902, -8.437248831803542, -8.625057029452362, -8.814377609601102, -9.003652991142893, -9.19121457004837, -9.375282719365675, -9.553966789220462, -9.725265106815879, -9.887064976432594, -10.037142679428774, -10.173163474240098, -10.292681596379747, -10.393717216933542, -10.474517429523797, -10.532908639749504, -10.567153794173173, -10.575957016070056, -10.558463605428146, -10.514260038948176, -10.443373970043618, -10.346274228840688, -10.223870822178338, -10.077514933608263, -9.9089989233949, -9.72055541490668, -9.515052647015864, -9.29626299993238, -9.06794955806303, -8.833682932642184, -8.596841261731788, -8.360610210221353, -8.12798296982796, -7.901760259096263, -7.684550323398485, -7.478768934934419, -7.286639392731429, -7.110192522644447, -6.951117403278269, -6.809815006407505, -6.6871417510202, -6.583890496458093, -6.500572878873887, -6.4374193112312525, -6.394378983304827, -6.371119861680209, -6.367028689753966, -6.38121098773363, -6.4124910526377, -6.459411958295636, -6.520442835165364, -6.595773970637356, -6.68521603668008, -6.788256273723043, -6.904308120981534, -7.032711216456628, -7.172731396935186, -7.32356069798985, -7.4843173539790495, -7.654045798046997, -7.831716662123689, -8.016226776924908, -8.206489615020677, -8.40188983596458, -8.601032770647816, -8.802271293580354, -9.00387051321159, -9.204007771930334, -9.40077264606482, -9.592166945882699, -9.776104715591044, -9.950412233336351, -10.11282801120453, -10.261002795220914, -10.392499565350258, -10.504793535496736, -10.595272153503942, -10.661656556610017, -10.7023287550876, -10.71592436965587, -10.701525286207318, -10.658659670044681, -10.587301965880943, -10.48787289783934, -10.36123946945335, -10.208714963666708, -10.032058942833391, -9.833477248717626, -9.61562200249389, -9.381760042433546, -9.136730589106863, -8.884701654725426, -8.629424742690311, -8.374436252987152, -8.123057482186137, -7.8783946234420235, -7.643338766494116, -7.420565897666283, -7.212536899866954, -7.021497552589114, -6.849478531910307, -6.698293466777031, -6.5677500260037025, -6.457323244134125, -6.3676369078951565, -6.2990410891210535, -6.251612144753469, -6.225152716841455, -6.219191732541458, -6.232984404117324, -6.265512228940295, -6.315482989489012, -6.381330753349513, -6.46121587321523, -6.554336972331245, -6.661382332747329, -6.781849389615288, -6.915149003489203, -7.06061622390393, -7.21751028937509, -7.385014627399081, -7.5622368544530705, -7.748208775994998, -7.9418863864635725, -8.142149869278278, -8.347803596839364, -8.557980380467752, -8.77180291844666, -8.987123441878142, -9.201725457844521, -9.41336194016083, -9.61975532937476, -9.818597532766685, -10.007549924349647, -10.184243344869369, -10.346278101804243, -10.491223969365343, -10.61662018849641, -10.71997546687387, -10.798767978906813, -10.850445365737016, -10.872415921555946, -10.86210051369038, -10.81948893533838, -10.74564738686183, -10.641874284474355, -10.50970026024133, -10.35088816207987, -10.167433053758835, -9.961562214898827, -9.735735140972196, -9.492643543303032, -9.23521134906717, -8.96659470129219, -8.690856814291855, -8.415235446305326, -8.143734357145652, -7.879551058515536, -7.625627433122485, -7.384649734678811, -7.159048587901633, -6.9509989885128745, -6.762420303239267, -6.594976269812345, -6.45007499696845, -6.328868964448729, -6.2321665349566615, -6.157526038713206, -6.103798228987777, -6.071128723577401, -6.059443944848854, -6.06845111973866, -6.097638279753093, -6.146274260968172, -6.213408704029669, -6.297872054153102, -6.39827556112374, -6.513011279296599, -6.640252067596444, -6.778354611239248, -6.9284279723473325, -7.0903909821508995, -7.2636388759413, -7.44744373552113, -7.640954489204228, -7.843196911815676, -8.053073624691802, -8.26936409568017, -8.490724639139597, -8.715688415940136, -8.942665433463088, -9.169942545600993, -9.395884592822021, -9.619835591874702, -9.83847389384135, -10.04808456902251, -10.245191467619236, -10.426557219733079, -10.5891832353661, -10.730309704420868, -10.847415596700452, -10.93821866190843, -11.000675429648885, -11.032981209426403, -11.03357009064608, -11.00111494261351, -10.9345274145348, -10.831400288699085, -10.690255494193734, -10.516649717766903, -10.315996399405586, -10.093247839368521, -9.852895198186172, -9.598968496660746, -9.335036615866178, -9.06420729714815, -8.78912714212407, -8.511981612683083, -8.234495030986075, -7.957930579465664, -7.683463094810176, -7.420063878312348, -7.173362379680764, -6.9456684645484, -6.738883840036248, -6.554502054753318, -6.393608498796637, -6.256880403751252, -6.144586842690225, -6.056588730174638, -5.992338822253589, -5.950881716464195, -5.930854310369259, -5.9311418712442325, -5.9512314668624295, -5.990563399909557, -6.0484966217145235, -6.124308732249446, -6.217195980129641, -6.32627326261363, -6.450574125603138, -6.589050763643094, -6.740574019921631, -6.903933386270086, -7.078459295575534, -7.264134734746131, -7.460418754846489, -7.6665909944080255, -7.881752468100064, -8.104825566729835, -8.334554057242476, -8.569503082721031, -8.808059162386451, -9.048430191597596, -9.288645441851227, -9.526555560782018, -9.759832572162548, -9.985969875903303, -10.202282970655363, -10.406749182970033, -10.595972282718538, -10.765607285317683, -10.911798558862214, -11.031179824124822, -11.120874154556127, -11.1784939762847, -11.202141068117047, -11.19040656153761, -11.142370940708778, -11.057604042470873, -10.936165056342162, -10.777692242489884, -10.582569593871934, -10.356504283511086, -10.105154784297792, -9.833798314820402, -9.547330839365184, -9.250267067916301, -8.946740456155826, -8.64050320546374, -8.334926262917925, -8.032999321294175, -7.7373308190661865, -7.450453707025828, -7.179245738589397, -6.927865561967064, -6.698522820648053, -6.492961086315876, -6.312457858848336, -6.157824566317523, -6.029406564989818, -5.927083139325892, -5.850267501980702, -5.797906793803497, -5.768482105676627, -5.760568271186873, -5.773560441437439, -5.806793236164028, -5.859545743910568, -5.9310415220292185, -6.02044859668037, -6.126879462832641, -6.24939108426288, -6.386984893556166, -6.5386067921058055, -6.703147150113336, -6.87969969613766, -7.068213675330882, -7.268288618858554, -7.479311277695299, -7.70048389880777, -7.930824225154646, -8.169165495686638, -8.414156445346489, -8.664261305068962, -8.917759801780859, -9.172747158401009, -9.427134093840266, -9.678646823001516, -9.924827056779678, -10.163032002061696, -10.390811590888177, -10.605325247384346, -10.801767671003725, -10.975703831997713, -11.123196013051032, -11.24080380928174, -11.325584128241218, -11.37509118991418, -11.387376526718667, -11.360988983506047, -11.294974717561017, -11.188877198601604, -11.042262232220867, -10.853583381015124, -10.628315564187176, -10.372833016851656, -10.093055681059026, -9.794449205795576, -9.482024946983433, -9.160339967480557, -8.833497037080729, -8.505144632513577, -8.17847693744455, -7.85623384247493, -7.5407903010030894, -7.239655168925597, -6.958826634744016, -6.700901214449172, -6.467952732624536, -6.261532322446217, -6.08266842568297, -5.931866792696189, -5.809110482439911, -5.713859862460816, -5.645052608898224, -5.601103882022646, -5.580407741761831, -5.582162607431239, -5.605593233580322, -5.6498736179106155, -5.714127001275738, -5.7974258676813895, -5.898791944285355, -6.0171962013975016, -6.151558852479781, -6.300749354146224, -6.46358640616295, -6.639406741704176, -6.828312811079023, -7.029888971805326, -7.243554498414342, -7.4685669335273985, -7.704022087855896, -7.948854040201311, -8.20183513745519, -8.461575994599151, -8.726525494704894, -8.994970788934182, -9.26503729653886, -9.534688704860836, -9.801726969332101, -10.064099037521494, -10.320065062194947, -10.564546842435643, -10.792408054358987, -10.998954454279172, -11.1799338787092, -11.331536244360855, -11.450393548144728, -11.5335798671702, -11.578611358745452, -11.583446260377457, -11.546484889771984, -11.466569644833601, -11.342985003665673, -11.17316494367021, -10.957237021758457, -10.703400931796075, -10.419312230621246, -10.11188554613122, -9.787294577282294, -9.450972094089831, -9.107609937628244, -8.761159020031009, -8.414829324490654, -8.07108990525877, -7.731668887645998, -7.39791824239769, -7.080274685960744, -6.785641599731247, -6.516639369418936, -6.275297930586426, -6.063056768649204, -5.88076491887563, -5.728680966386937, -5.606473046157235, -5.513218843013503, -5.447405591635597, -5.407013808592985, -5.390790291661755, -5.397886530448421, -5.427355115682728, -5.478217076152157, -5.549461878701931, -5.640047428235003, -5.748900067712068, -5.874914578151554, -6.016954178629629, -6.173850526280194, -6.344622508150169, -6.529388742166002, -6.727884120971334, -6.939624874707443, -7.163986482710667, -7.400203673512407, -7.647370424839124, -7.9044399636123375, -8.170224765948632, -8.443396557159645, -8.722486311752084, -9.00588425342771, -9.29183985508335, -9.578461838810886, -9.863919016332197, -10.14629252834597, -10.420695242656265, -10.682089979068808, -10.925723019366371, -11.147124107308706, -11.342106448632657, -11.506766711052082, -11.63748502425787, -11.73092497991795, -11.784033631677277, -11.794041495157844, -11.758462547958676, -11.675094229655835, -11.537916295668772, -11.347582271857162, -11.11304341148178, -10.842398597024781, -10.54288284088559, -10.220867285380901, -9.881859202744685, -9.530501995128184, -9.170575194599909, -8.80499446314565, -8.435811592668465, -8.064214504988682, -7.690849286474466, -7.329154575590641, -6.989181938595335, -6.674338740212094, -6.387375771709541, -6.130387250901381, -5.904810822146395, -5.711427556348447, -5.550361950956474, -5.4210819299645, -5.322398843911623, -5.252460027376549, -5.209329906626082, -5.191895562559699, -5.199094359006064, -5.229812353930988, -5.282884299437433, -5.357093641765511, -5.451172521292482, -5.563801772532755, -5.693610924137893, -5.839178198896603, -5.999485546176893, -6.1749533446918905, -6.365250576713241, -6.569889636058173, -6.788301707723719, -7.019836767886719, -7.263763583903817, -7.519269714311461, -7.785461508825907, -8.061364108343215, -8.345921444939247, -8.637996241869677, -8.936370013569977, -9.239784069824628, -9.54617325660569, -9.851925873766296, -10.153233381531896, -10.44619829696377, -10.726834193959023, -10.991065703250598, -11.234728512407266, -11.453569365833626, -11.643246064770114, -11.79932746729299, -11.91729348831435, -11.99253509958212, -12.020341526338406, -11.995856076418105, -11.918524015819608, -11.78984726226535, -11.611874295816039, -11.387200158870659, -11.118966456166469, -10.810861354779007, -10.467119584122084, -10.09252243594779, -9.692397764346488, -9.272619985746818, -8.842791447580229, -8.414007867448321, -7.9927786160055945, -7.58496958296014, -7.195824243506355, -6.8299636583249335, -6.491386473582882, -6.183468920933503, -5.908964817516406, -5.670005565957505, -5.468097611837334, -5.301067954476938, -5.1662913287132355, -5.06339368590343, -4.991680225352757, -4.95013539431448, -4.937422887989895, -4.951885649528325, -4.991545870027125, -5.054104988531678, -5.136943692035398, -5.237121915479728, -5.353267571627883, -5.487004990816794, -5.637699540115593, -5.804690479244338, -5.98736067666767, -6.185136609594812, -6.397488363979571, -6.623929634520341, -6.8640177246600915, -7.117353546586385, -7.38358162123136, -7.662128138315135, -7.951813375463027, -8.251819809086625, -8.560979218074547, -8.87772177366964, -9.20007603946898, -9.525668971423869, -9.851725917839833, -10.175070619376626, -10.49212520904823, -10.798910212222856, -11.091044546622935, -11.363745522325134, -11.611828841760337, -11.830272920331069, -12.014522365697761, -12.157840545665747, -12.254452254099245, -12.299795006117034, -12.290519038092453, -12.224487307653401, -12.100775493682335, -11.919671996316271, -11.682677936946787, -11.392507158220019, -11.052116709992072, -10.667467794307786, -10.249416980918834, -9.808098527087479, -9.352763175551246, -8.89177815452293, -8.4326271776906, -7.981910444217588, -7.545344638742498, -7.127762931379201, -6.733114977716838, -6.366669484673502, -6.034391415374654, -5.738534846927349, -5.480516531853708, -5.260944254532192, -5.079616831197608, -4.935524109941106, -4.826846970710178, -4.750957325308656, -4.70442294805911, -4.6851938683944825, -4.6924833176833, -4.724691004332686, -4.780299897896631, -4.857876229075999, -4.956069489718522, -5.073612432818802, -5.209321072518314, -5.3620946841054025, -5.530941138008486, -5.715771871371197, -5.916507442100515, -6.132760594246079, -6.364092400593757, -6.610012262665641, -6.8699779107200545, -7.143395403751551, -7.429619129490908, -7.727951804405137, -8.037644473697473, -8.357896511307382, -8.68785561991056, -9.026617830918926, -9.373050286036905, -9.724041756314113, -10.075593606717838, -10.423523625032173, -10.763400350186938, -11.090543072257676, -11.400021832465658, -11.686657423177877, -11.945021387907056, -12.169436021311645, -12.353974369195814, -12.492460228509463, -12.57846814734822, -12.605528639462083, -12.570306152390364, -12.47215661894242, -12.311523250135087, -12.089925135943796, -11.809957245302575, -11.47529042610405, -11.090671405199439, -10.661922788398563, -10.195943060469833, -9.700976672739598, -9.190700926987523, -8.676552134807087, -8.167630373609004, -7.672129662307604, -7.197337961320841, -6.749637172570283, -6.334503139481125, -5.956505646982177, -5.61930842150587, -5.325669130988256, -5.074479502114936, -4.862975121237278, -4.6910054810912, -4.557880517063618, -4.462366356560629, -4.402685319007517, -4.376515915848748, -4.3809928505479725, -4.412707018588023, -4.467705507470919, -4.54152034583346, -4.634002730964389, -4.746293164474873, -4.877321809125977, -5.026169415787947, -5.192067323440208, -5.374397459171372, -5.57269233817923, -5.786635063770756, -6.016059327362106, -6.260949408478616, -6.521111352137295, -6.796257083635316, -7.086393689709154, -7.391226411141468, -7.710152447523238, -8.042260957253763, -8.386333057540664, -8.740841824399881, -9.103952292655672, -9.473521455940618, -9.84709826669562, -10.221923636169894, -10.594934259892757, -10.964229490908384, -11.32380761796862, -11.665173530328484, -11.980383225548307, -12.262043809493726, -12.503313496335684, -12.697901608550435, -12.84006857691954, -12.92462594052987, -12.946936346773601, -12.902913551348218, -12.789022418256518, -12.601901476398178, -12.331646960013135, -11.987984637992938, -11.587080896526668, -11.14310954765855, -10.668251829287964, -10.172696405169427, -9.664639364912617, -9.150284223982348, -8.633841923698592, -8.117530831236465, -7.601576739626229, -7.089092421935404, -6.605795021703842, -6.16022490431683, -5.756443490740766, -5.397277069620126, -5.084316797277461, -4.817918697713395, -4.597203662606633, -4.42005745131395, -4.2831308309077745, -4.183084522948512, -4.117815993041674, -4.084995885539322, -4.0823382647927655, -4.1076006151525615, -4.158583840968515, -4.233132266589678, -4.3291336363643484, -4.444519114640073, -4.577534007513342, -4.72830182530277, -4.896307991750897, -5.080928074125314, -5.281671956963393, -5.498183842072281, -5.730242248528901, -5.977760012679955, -6.240784288141921, -6.5194965458010525, -6.814212573813382, -7.12535453381525, -7.451947437332835, -7.793358552646696, -8.149256509940123, -8.51874371628088, -8.900356355621208, -9.292064388797817, -9.691271553531896, -10.094815364429103, -10.498967112979567, -10.899431867557901, -11.29134847342318, -11.669289552718963, -12.028263535113997, -12.361190880625577, -12.65784545317771, -12.908972413312696, -13.106352250267278, -13.242800781972637, -13.312169155054395, -13.309343844832616, -13.230246655321805, -13.071834719230907, -12.830853983037333, -12.50391272228022, -12.103382631585484, -11.642752073139667, -11.134418125884503, -10.589686585516922, -10.01877196448906, -9.430797492008248, -8.833795114037006, -8.234705493293069, -7.639533159485056, -7.065524554901114, -6.527108657850594, -6.030569848529395, -5.580684154178877, -5.180719249085869, -4.832434454582659, -4.536080739047, -4.290400717902106, -4.092628653616661, -3.9388290219065185, -3.8257903502211756, -3.7506944313429216, -3.710724223691946, -3.7030656168560054, -3.7249074315904194, -3.7734414198180737, -3.8458622646294187, -3.939367580282471, -4.051570877802729], [1.0, 0.9848771469249452, 0.9730975826471474, 0.9651532309165722, 0.9617570252901997, 0.963904606417799, 0.9727601655196005, 0.9899192304647947, 1.0174647047259775, 1.057966867379151, 1.1149430227324708, 1.192078097761772, 1.2939084534994867, 1.426829887582959, 1.5990977215072504, 1.8208268006251416, 2.1040149031683373, 2.465412055835648, 2.922781261820937, 3.49573286187271, 4.208308411941916, 5.088980683181951, 6.170653661948647, 7.490662549800286, 9.09077376349759, 11.017184935003726, 13.319676765062745, 16.013277922693206, 19.09891690146636, 22.550897700579338, 26.2987607072238, 30.22728269658591, 34.17901791860924, 37.96377819776274, 41.34061632404104, 44.11812871543175, 46.17182900435874, 47.444148037682076, 47.94000011753252, 47.713774612350996, 46.889140761025594, 45.613943439583586, 44.05463346215421, 42.37201395635693, 40.660443799954486, 38.9965470513804, 37.4331847014341, 35.9991779015414, 34.70351752958226, 33.54253091085396, 32.508733317624525, 31.592170937477576, 30.780420873312334, 30.058848526828932, 29.415834904267893, 28.841831398114252, 28.327962708366236, 27.86656712596843, 27.45119653281176, 27.076616401733492, 26.738618905143927, 26.433630643943474, 26.16005009540578, 25.9165303736676, 25.701749830721077, 25.514412056413693, 25.353245878448316, 25.21700536238317, 25.104701810355778, 25.0169179595198, 24.954221182698806, 24.916877282929516, 24.904914058529055, 24.91812130309493, 24.956050805505043, 25.018016349917684, 25.103097771179424, 25.21056131213016, 25.340034671251278, 25.4908023921227, 25.661758497642236, 25.851406490025568, 26.057859350806265, 26.278839540835765, 26.511679000283397, 26.753319148636365, 27.00031088469975, 27.249519007573898, 27.498387658084113, 27.742954277839182, 27.979502196412305, 28.204623473716573, 28.41521890000498, 28.60849799587041, 28.78197901224565, 28.933488930403378, 29.06116346195617, 29.1634470488565, 29.23909286339674, 29.28719706759695, 29.308294314876285, 29.30267143749045, 29.2704165965432, 29.211988779234215, 29.1282177988591, 29.020304294809367, 28.889819732572445, 28.738706403731687, 28.56927742596635, 28.384216743051624, 28.186579124858607, 27.97979016735431, 27.767421643164862, 27.549988846231564, 27.328623964844226, 27.105146003666924, 26.88134098514783, 26.658961949519192, 26.439728954797353, 26.225329076782735, 26.01741640905985, 25.817612062997295, 25.627504167747745, 25.448647870247967, 25.28256533521882, 25.130745745165235, 24.99412039865892, 24.872806946985882, 24.768237352414825, 24.681757965831324, 24.614549030546524, 24.56762468229713, 24.541832949245425, 24.53785575197926, 24.55620890351206, 24.597242109282814, 24.661138967156077, 24.747916967421983, 24.857427492796226, 24.989355818420083, 25.14318370401779, 25.317902475301963, 25.512145595029583, 25.72428742080819, 25.952439495364818, 26.194450546546, 26.44790648731778, 26.710130415765683, 26.978182615094745, 27.24886055362951, 27.518698884814, 27.783969447211756, 28.04068126450581, 28.28464462943248, 28.512415509089394, 28.720885302650096, 28.907253469400995, 29.069153078788577, 29.204650810419388, 29.31224695406003, 29.39087540963718, 29.439903687237575, 29.45913290710802, 29.448797799655384, 29.409566705446597, 29.342541575208664, 29.249271132548284, 29.132487143298317, 28.994216410291685, 28.83595844433886, 28.659409107360958, 28.46646061238972, 28.259201523567526, 28.039916756147385, 27.81108757649294, 27.57539160207847, 27.33570280148888, 27.095091494419716, 26.856824351677158, 26.62273073121497, 26.392328058983196, 26.16728069324852, 25.949242982331707, 25.739798436189886, 25.540459726416568, 25.352668686241643, 25.177796310531367, 25.017142755788374, 24.871937340151675, 24.743338543396654, 24.632434006935068, 24.54005524278408, 24.466504595347423, 24.41326528597613, 24.381739953037894, 24.373067812158077, 24.388124656219745, 24.427522855363627, 24.49161135698815, 24.580475685749427, 24.693937943561245, 24.831556809595078, 24.99262754028009, 25.176181969303123, 25.380988507608706, 25.60555214339906, 25.84844205379741, 26.10728060852878, 26.378647011639956, 26.659090747432575, 26.94513575647864, 27.233280435620514, 27.51999763797092, 27.801734672912943, 28.07491330610003, 28.335929759455993, 28.581154711175, 28.80693329572158, 29.009586364959773, 29.185815703674564, 29.33347062995168, 29.45097200580437, 29.53719340656525, 29.591461120886304, 29.613554150738864, 29.60370421141364, 29.562595731520695, 29.491365852989464, 29.391604431068743, 29.265354034326684, 29.11510994465081, 28.943839659100696, 28.754527139725514, 28.549322507283595, 28.330332272009365, 28.099722973098473, 27.859721178707762, 27.612613485955286, 27.360746520920316, 27.106526938643313, 26.852421423125957, 26.600956687331134, 26.354719473182932, 26.116063160155694, 25.88506098444689, 25.662929637018614, 25.451243176913174, 25.251509246399937, 25.06516907097537, 24.893597459362987, 24.738102803513403, 24.599927078604292, 24.480245843040404, 24.380168238453575, 24.300736989702703, 24.242778974905214, 24.206380352441712, 24.19297602568387, 24.203972358624757, 24.24043197591605, 24.303073762868028, 24.39227286544956, 24.508060690288115, 24.65012490466977, 24.81780943653919, 25.01011447449964, 25.225696467812995, 25.462868126399712, 25.719598420838853, 25.993512582368087, 26.2826143036312, 26.5835531766993, 26.891738206174853, 27.202733293923867, 27.51225729043882, 27.816183994838678, 28.11054215486887, 28.391515466901318, 28.65544257593441, 28.898817075593016, 29.118287508128486, 29.310657364418645, 29.47289632791922, 29.602664086287245, 29.698663993805575, 29.760130939580947, 29.786791192805048, 29.77886240275454, 29.737053598791064, 29.662565190361203, 29.557088966996528, 29.422808098313563, 29.262397134013803, 29.07902200388371, 28.876339363087883, 28.657525441317016, 28.424671311484847, 28.180067679402732, 27.926010131825823, 27.66479913645308, 27.398740041927255, 27.130143077834905, 26.861323354706386, 26.594600864015852, 26.332300478181267, 26.076751950564386, 25.830289915470765, 25.5941637670051, 25.36872969694535, 25.1555465854691, 24.956122670479818, 24.771905356674527, 24.60428121554379, 24.454575985371704, 24.324054571235916, 24.21392104500761, 24.125318645351502, 24.059329777725864, 24.0169760143825, 23.99846514904419, 24.003737275719182, 24.03462321313836, 24.092570126924354, 24.178570436394015, 24.2931618145584, 24.436427188122796, 24.607994737486695, 24.807037896743815, 25.032275353682074, 25.28197104978363, 25.55393418022483, 25.845519193876253, 26.153625793302698, 26.474698934763165, 26.804753152945423, 27.14084441298729, 27.478088805009104, 27.81063191891968, 28.133110026501907, 28.440650081412755, 28.72886971918327, 28.99387725721857, 29.232271694797856, 29.4411427130744, 29.61807067507555, 29.761126625702737, 29.86887229173146, 29.940402746282626, 29.975413186962673, 29.97379114454032, 29.93590532296603, 29.86264907495816, 29.755440402003014, 29.616221954354796, 29.44746103103565, 29.252149579835635, 29.033804197312726, 28.796466128792833, 28.54470126836977, 28.283502767093108, 28.014256682750073, 27.73802543918289, 27.45712770878458, 27.17381834909216, 26.890288402786634, 26.60866509769301, 26.331011846780285, 26.05932824816145, 25.795550085093495, 25.5415493259774, 25.299134124358144, 25.07004881892469, 24.855800310972494, 24.656883605078715, 24.474700716129774, 24.31078582283852, 24.166591480316846, 24.043488620075724, 23.942766550025176, 23.865632954474282, 23.81321389413118, 23.786553806103075, 23.786615503896222, 23.814280177415945, 23.87034739296662, 23.95536020382343, 24.068472446424327, 24.21021882251659, 24.381057676848535, 24.580883653348412, 24.8090276951244, 25.064257044464604, 25.34477524283707, 25.64822213088976, 25.971673848450575, 26.31164283452734, 26.664077827307814, 27.02436386415968, 27.387322281630567, 27.74721071544801, 28.09847907246273, 28.4366746624753, 28.75605326370608, 29.05148393331419, 29.31855782425368, 29.55358818527352, 29.753610360917598, 29.91638179152473, 30.04038201322866, 30.12481265795804, 30.169597453436452, 30.175382223182414, 30.14353488650934, 30.076128075831708, 29.975086907146668, 29.84185287978836, 29.678214356073116, 29.486324916429663, 29.268703359399115, 29.02823370163497, 28.768165177903118, 28.492112241081834, 28.204054562161783, 27.90833703024602, 27.60966975254998, 27.311854257489767, 27.013784473613573, 26.71718262172595, 26.424125418146254, 26.1365947573654, 25.856477712045894, 25.585566533021808, 25.32555864929879, 25.078056668054067, 24.84456837463643, 24.626506732566252, 24.425189883535484, 24.24151878542113, 24.07675552495111, 23.93269731711047, 23.811004267169196, 23.71319860851648, 23.640664702660697, 23.59464903922943, 23.576260235969457, 23.58646903874675, 23.62610832154648, 23.695873086473018, 23.79632046374992, 23.92786971171996, 24.09080221684509, 24.285261094700495, 24.51043752470784, 24.76471366475499, 25.046443671074254, 25.35347599573384, 25.68315338663787, 26.032312887526352, 26.397285837975215, 26.77389787339628, 27.157468925037275, 27.542813219981838, 27.9242392811495, 28.29554992729571, 28.65030027462379, 28.982934650402594, 29.28825763613634, 29.561762830398344, 29.79967703965643, 29.99896027827295, 30.157305768504774, 30.27313994050329, 30.345622432314414, 30.374646089878567, 30.360836967030703, 30.30555432550029, 30.210985169157013, 30.080997613516338, 29.918151058657504, 29.72473975000572, 29.50338134906225, 29.25701693340439, 28.9889109966855, 28.702651448634985, 28.40214961505829, 28.091640237836913, 27.775681474928405, 27.459154648158272, 27.14366800663992, 26.829015735705184, 26.51736054987479, 26.210763678668652, 25.911184866605847, 25.620482373204638, 25.34041297298246, 25.072631955455925, 24.818693125140825, 24.580048801552117, 24.35804981920394, 24.153799207736032, 23.96843072887067, 23.80374788888367, 23.66147455252546, 23.543220245260443, 23.450480153267012, 23.384635123437533, 23.346951663378363, 23.33858194140983, 23.36056378656626, 23.41382068859595, 23.499161797961182, 23.61728192583822, 23.768761544117318, 23.9540667854027, 24.17310095605422, 24.424225558819497, 24.70617191059948, 25.017158173114165, 25.35480230397669, 25.71612205669337, 26.097534980663653, 26.49485842118017, 26.90330951942869, 27.317505212488143, 27.731462233330625, 28.13859711082138, 28.531838204065405, 28.90485790544642, 29.25154716749415, 29.566444400903166, 29.844922353721426, 30.083188111350275, 30.278283096544442, 30.428083069412036, 30.53129812741457, 30.58747270536692, 30.596985575437362, 30.561049847147554, 30.481733045497126, 30.362765868578162, 30.207019025282975, 30.016884035284882, 29.795131148119044, 29.54490934318249, 29.26974632973408, 28.973548546894538, 28.66060116364644, 28.335568078834203, 28.00349192116411, 27.66979070662866, 27.336080520452942, 27.002180933189393, 26.67039364251919, 26.342902179430492, 26.021771908218433, 25.708950026485137, 25.406265565139698, 25.115429388398198, 24.83803419378369, 24.575554512126224, 24.329346707562816, 24.10058204639227, 23.890698655707716, 23.701405132680364, 23.534349968337303, 23.391120301209234, 23.273241917330456, 23.182179250238864, 23.119335380975947, 23.086052038086798, 23.08360959762011, 23.11322708312817, 23.17606216566686, 23.27321116379567, 23.40570904357768, 23.574193430416805, 23.777403167053585, 24.0153774728469, 24.287803514845614, 24.59362644767597, 24.931049413541594, 25.297533542223498, 25.689797951080084, 26.103819745047133, 26.53483401663781, 26.977333845942667, 27.42507030062964, 27.87105243594405, 28.307547294708606, 28.726827061092205, 29.122399314757228, 29.487651960955578, 29.816877484865884, 30.105308964114723, 30.349120068776624, 30.54542506137407, 30.69227879687749, 30.788676722705272, 30.834554878723747, 30.830789897247207, 30.779199003037895, 30.682559041699996, 30.544550250933227, 30.367996771184455, 30.15571740630238, 29.91090449665278, 29.637123919118498, 29.338315087099453, 29.018790950512628, 28.68323799579208, 28.336716245888937, 27.984659260271393, 27.6322685706604, 27.279092354453773, 26.92654634515763, 26.576961637977476, 26.23253648214554, 25.895336280920745, 25.567293591588736, 25.250208125461857, 24.94574674787917, 24.655443478206443, 24.38069948983615, 24.122791381881623, 23.883134162215562, 23.663360374992685, 23.465091230868055, 23.289925826598438, 23.13944114504232, 23.015192055159886, 22.918711312013034, 22.851509556765375, 22.81507531668223, 22.810875005130622, 22.84035292157929, 22.90493125159868, 23.006010066860956, 23.1445802038922, 23.319525189342706, 23.531838122781988, 23.782217065457683, 24.070495414107434, 24.395641900958793, 24.755760593729377, 25.14809089562675, 25.569007545348477, 26.014020617082092, 26.477775520505123, 26.954053000785073, 27.435769138579445, 27.914975350035707, 28.38462520047641, 28.83721846062994, 29.263879557816747, 29.65694204431343, 30.00995231011526, 30.31766958293618, 30.576065928208784, 30.782326249084342, 30.934848286432796, 31.03324261884274, 31.078332662621442, 31.072154671794838, 31.017904804860898, 30.91718696904898, 30.771396049459895, 30.58321011355317, 30.3558393971852, 30.0930263046092, 29.799045408475244, 29.478703449830256, 29.137339338117997, 28.780824151179072, 28.415561135250947, 28.047710241290076, 27.676575568899732, 27.30371005237484, 26.931713063318405, 26.563017833443894, 26.199891454575173, 25.844434878646563, 25.4985829177028, 25.16410424389906, 24.842601389500942, 24.535510746884476, 24.2441721219059, 23.97011491853589, 23.714849814688353, 23.479902225564384, 23.266820986400752, 23.07717835246993, 22.912569999080066, 22.774615021575013, 22.664955935334298, 22.585258675773147, 22.53721259834247, 22.52253047852887, 22.54294851185464, 22.599676129721136, 22.692315306591546, 22.82332806720635, 22.994800527593217, 23.20798035701155, 23.46327677795251, 23.760260566139006, 24.09766405052568, 24.473381113298927, 24.88446718987689, 25.32713926890946, 25.796775892278262, 26.287917155096682, 26.794293709007253, 27.31077243900264, 27.828569830396265, 28.337394060583506, 28.827899205232274, 29.291685238283016, 29.721298031948713, 30.110229356714893, 30.452916881339604, 30.744744172853444, 30.98204069655954, 31.16208181603356, 31.282811478800227, 31.34338757437885, 31.344480781368514, 31.287675096767252, 31.175465388938015, 31.011257397608677, 30.79936773387203, 30.545023880185795, 30.254364190372605, 29.93443788962002, 29.593202303068885, 29.23526652052569, 28.86235425836991, 28.47809915276637, 28.085951739004212, 27.689179451496894, 27.290866623782193, 26.893914488522203, 26.50104117750332, 26.114781721636273, 25.7374880509561, 25.37132899462215, 25.017816385793523, 24.677693430641774, 24.352399768154594, 24.043417308314744, 23.75225125237574, 23.480430092861873, 23.229505613568193, 23.00105288956052, 22.796670287175434, 22.61797946402029, 22.4666253689732, 22.343817220395945, 22.25056776036687, 22.18969734970125, 22.163800593181797, 22.17513002706929, 22.225596119102615, 22.316767268498737, 22.44986980595271, 22.62578799363768, 22.845064025204877, 23.10789802578363, 23.414148051981343, 23.763330091883518, 24.154618065053736, 24.586680641032537, 25.055718546164737, 25.556007783815623, 26.081289294439184, 26.62479762514694, 27.179260929707937, 27.73690096854875, 28.28943310875348, 28.82806632406377, 29.343503194878767, 29.825939908255172, 30.264895381707532, 30.651822991644373, 30.98155727826351, 31.25015159731543, 31.454820516561664, 31.593939815774768, 31.667046486738336, 31.674838733246997, 31.619175971106408, 31.50307882813327, 31.330729144155313, 31.10877259335725, 30.844289251211606, 30.542001447782148, 30.206757607460094, 29.843553089407273, 29.457530187556127, 29.053978130609707, 28.638333082041687, 28.216178140096304, 27.79323387584796, 27.371589797903482, 26.951763466102868, 26.536161363382007, 26.127020113673055, 25.726406481904444, 25.33621737400086, 24.958179836883268, 24.593851058468896, 24.244618367671237, 23.911717696910962, 23.596785711772025, 23.301311650611915, 23.02666073121178, 22.774290254676714, 22.54574960543576, 22.34268025124192, 22.166815743172126, 22.019981715627274, 21.90409588633221, 21.821168056335722, 21.773300110010542, 21.762686015053365, 21.79161182248483, 21.861891770248757, 21.973254144808422, 22.128767366432534, 22.331158626424155, 22.582156190320582, 22.88248939789334, 23.23188866314818, 23.629085474325088, 24.071812393898277, 24.556803058576197, 25.079792179301517, 25.635515541251152, 26.21771000383623, 26.820426183808795, 27.434829760616918, 28.04816748523886, 28.648601948407507, 29.225269014054035, 29.76827781930791, 30.268710774496903, 30.71862356314705, 31.1110451419827, 31.43997774092649, 31.70031276481095, 31.887364961226723, 32.00011777910755, 32.039429722907435, 32.00733071264011, 31.907022083879006, 31.742876587757284, 31.520438390967815, 31.2464230757632, 30.928717639955742, 30.57638049691747, 30.196964659255137, 29.79430348478013, 29.372991456253143, 28.937419220277047, 28.491771052962314, 28.04002485992698, 27.585952176296686, 27.133118166704644, 26.68488162529166, 26.244394975706108, 25.814592003333956, 25.39624837651218, 24.989747719844928, 24.596533102306708, 24.218048553272112, 23.85573906251583, 23.51105058021266, 23.185430016937477, 22.88032524366526, 22.59718509177108, 22.337459353030113, 22.102584142070327, 21.89432323475395, 21.714712392580047, 21.56581501135082, 21.449720566543427, 21.36854461330996, 21.324428786477473, 21.31954080054796, 21.356074449698355, 21.436249607780553, 21.56231222832139, 21.736534344522642, 21.96120944439715, 22.23588896658226, 22.56090936071474, 22.937972895042304, 23.367269783597518, 23.84747818619779, 24.375764208445386, 24.9477819017274, 25.557673263215793, 26.19806823586736, 26.860084708423752, 27.533328515411455, 28.20589343714182, 28.86444271191068, 29.49704222322918, 30.09109391216475, 30.634652374359845, 31.117789758848904, 31.532595768058368, 31.873177657806675, 32.13566023730426, 32.31818586915357, 32.420914469349015, 32.44602350727704, 32.397708005716076, 32.281599511237935, 32.1011249530666, 31.86095608051867, 31.566663903004887, 31.224425865100713, 30.841025846546305, 30.42385416224651, 29.98090756227088, 29.52078923185366, 29.052707807956068, 28.58037532369468, 28.10373985352943, 27.626165932594176, 27.150693827738117, 26.680039537525786, 26.216594792237068, 25.762427053867178, 25.319279516126677, 24.888571104441475, 24.471504079953945, 24.069673600129512, 23.68426029625022, 23.31643625675018, 22.967471838073806, 22.63873566467583, 22.331694629021282, 22.047913891585498, 21.78905688085413, 21.556885293323127, 21.353259093498753, 21.180120312032372, 21.03888682592846, 20.932044603537314, 20.862563324953697, 20.833259311469234, 20.84679552557242, 20.905681570948616, 21.012273692480036, 21.16877477624577, 21.37723434952177, 21.639548580780854, 21.957460279692697, 22.332558897123853, 22.76515861231407, 23.253423642143453, 23.795561862588688, 24.388155680283127, 25.02612188359292, 25.702711642617025, 26.409510509187182, 27.13643841686794, 27.871749680956647, 28.602032998483445, 29.31253739614011, 29.989179132974947, 30.61736344516678, 31.184364294011235, 31.679728085075176, 32.09527366819675, 32.42509233748532, 32.66554783132155, 32.81527633235732, 32.87518646751581, 32.848476243685404, 32.741366759478105, 32.55980040986689, 32.309611195911515, 31.997520166403408, 31.631135417865597, 31.218952094552776, 30.770352388451272, 30.295605539279045, 29.80586783448571, 29.308600329731018, 28.802985199825876, 28.29297680841526, 27.782278580577426, 27.274160367641112, 26.771458447185548, 26.276575523040435, 25.79148072528597, 25.31770961025283, 24.85644516129849]], 'rnn_output': [[[0.29411906003952026, -0.40944865345954895, 0.045228179544210434, 0.1813124716281891, 0.38740968704223633, 0.24021793901920319, 0.22251838445663452, -0.022851064801216125, -0.1513720601797104, -0.29524946212768555], [0.40404966473579407, -0.19112826883792877, 0.14284496009349823, 0.03964334726333618, 0.4542684257030487, 0.081929050385952, 0.11672013252973557, -0.09197048842906952, -0.2879287600517273, -0.2614561915397644], [0.44282254576683044, -0.21873591840267181, 0.02436980791389942, 0.04816889017820358, 0.4995807111263275, 0.02870136685669422, 0.15283864736557007, -0.017139924690127373, -0.2548467516899109, -0.22665928304195404], [0.4310573637485504, -0.23617395758628845, 0.06991604715585709, 0.10133080929517746, 0.51610267162323, -0.06578569859266281, 0.1172279417514801, -0.0004961937083862722, -0.22686490416526794, -0.2827723026275635], [0.4254034161567688, -0.26463598012924194, 0.07486438751220703, 0.12379702180624008, 0.542272686958313, -0.06020404398441315, 0.10597269982099533, 0.017763571813702583, -0.2570112347602844, -0.2758103609085083], [0.4253436028957367, -0.278266966342926, 0.1093435063958168, 0.11069537699222565, 0.5603005290031433, -0.07144829630851746, 0.11391523480415344, 0.023360569030046463, -0.2573340833187103, -0.26868802309036255], [0.4144258499145508, -0.2851599454879761, 0.10837356746196747, 0.10902124643325806, 0.5726714134216309, -0.07841479778289795, 0.1285490095615387, 0.020896857604384422, -0.2591758668422699, -0.2779597043991089], [0.4170612096786499, -0.2843910753726959, 0.11141930520534515, 0.10303245484828949, 0.571719765663147, -0.08480066806077957, 0.1282520890235901, 0.01778149977326393, -0.2545676529407501, -0.28054046630859375], [0.41525906324386597, -0.2836840748786926, 0.1055152490735054, 0.10609657317399979, 0.5708879232406616, -0.08489787578582764, 0.1274559199810028, 0.01855573058128357, -0.25575965642929077, -0.2829310894012451], [0.41713663935661316, -0.28377240896224976, 0.10757330805063248, 0.10580258816480637, 0.569725751876831, -0.08520416915416718, 0.12515927851200104, 0.019126199185848236, -0.2549392879009247, -0.2816765308380127], [0.4159510135650635, -0.2843323349952698, 0.1068788692355156, 0.1070564016699791, 0.5705407857894897, -0.08447820693254471, 0.12566044926643372, 0.019710147753357887, -0.2561226785182953, -0.28186166286468506], [0.41647759079933167, -0.28456518054008484, 0.10832454264163971, 0.10612079501152039, 0.570704460144043, -0.08475843816995621, 0.12575480341911316, 0.01951223984360695, -0.25570276379585266, -0.28140196204185486], [0.41592657566070557, -0.28457558155059814, 0.1077057346701622, 0.10634376853704453, 0.5709818005561829, -0.08474130183458328, 0.12623931467533112, 0.019438082352280617, -0.2559463381767273, -0.28182485699653625], [0.416256308555603, -0.2844822108745575, 0.1079828068614006, 0.10602863878011703, 0.5707818865776062, -0.0849137231707573, 0.12605315446853638, 0.019320497289299965, -0.2556631565093994, -0.2817310690879822], [0.4160836338996887, -0.28445541858673096, 0.10763054341077805, 0.10626839101314545, 0.5707867741584778, -0.08482810854911804, 0.12607470154762268, 0.019384585320949554, -0.25580278038978577, -0.2818448543548584], [0.41622671484947205, -0.28445878624916077, 0.10782159864902496, 0.10617803782224655, 0.5707273483276367, -0.08485299348831177, 0.1259714514017105, 0.019387036561965942, -0.25572291016578674, -0.28174281120300293], [0.4161338806152344, -0.28448233008384705, 0.10771732032299042, 0.1062583476305008, 0.5707797408103943, -0.08481249213218689, 0.12603527307510376, 0.019420156255364418, -0.2557973861694336, -0.28177526593208313], [0.41618603467941284, -0.28448954224586487, 0.10780617594718933, 0.10619468241930008, 0.5707719922065735, -0.08484652638435364, 0.12602493166923523, 0.019408805295825005, -0.2557511329650879, -0.28174692392349243], [0.4161439836025238, -0.28449001908302307, 0.10775406658649445, 0.10622964799404144, 0.5707883238792419, -0.08484213799238205, 0.12604579329490662, 0.01940975897014141, -0.25577500462532043, -0.28178033232688904], [0.4161720871925354, -0.28448882699012756, 0.10778159648180008, 0.10620515793561935, 0.5707764029502869, -0.08485028892755508, 0.1260315328836441, 0.019407903775572777, -0.2557578682899475, -0.28176283836364746], [0.4161541163921356, -0.28448739647865295, 0.10776523500680923, 0.10622440278530121, 0.5707815289497375, -0.08484671264886856, 0.12603402137756348, 0.01940762996673584, -0.25576817989349365, -0.2817775011062622], [0.41616544127464294, -0.2844852805137634, 0.10778197646141052, 0.10621477663516998, 0.5707765817642212, -0.08484505116939545, 0.12602487206459045, 0.019402796402573586, -0.2557637095451355, -0.281769335269928], [0.416159987449646, -0.2844870686531067, 0.10776784271001816, 0.10621750354766846, 0.5707796216011047, -0.08483941853046417, 0.12603415548801422, 0.019408470019698143, -0.2557696998119354, -0.2817671298980713], [0.41616329550743103, -0.28448766469955444, 0.10777446627616882, 0.10621368885040283, 0.5707787871360779, -0.08484595268964767, 0.12603390216827393, 0.019407756626605988, -0.25576329231262207, -0.28176793456077576], [0.4161589741706848, -0.2844844460487366, 0.10777635127305984, 0.10621986538171768, 0.570778489112854, -0.08484553545713425, 0.12602798640727997, 0.019401663914322853, -0.25576531887054443, -0.28177565336227417], [0.4161631762981415, -0.28448355197906494, 0.10777601599693298, 0.1062159314751625, 0.5707764029502869, -0.08483920991420746, 0.12602683901786804, 0.01940249837934971, -0.2557675838470459, -0.2817681133747101], [0.4161613881587982, -0.28448203206062317, 0.1077779158949852, 0.10621678084135056, 0.5707764625549316, -0.0848395898938179, 0.12602700293064117, 0.01940050907433033, -0.2557665705680847, -0.2817704379558563], [0.4161628782749176, -0.2844834625720978, 0.10777270048856735, 0.10621464997529984, 0.5707764029502869, -0.08483770489692688, 0.12603065371513367, 0.019403614103794098, -0.2557673752307892, -0.281766414642334], [0.41616305708885193, -0.28448671102523804, 0.10776785761117935, 0.10621377825737, 0.5707777738571167, -0.08484166115522385, 0.1260361671447754, 0.019409311935305595, -0.25576549768447876, -0.28176525235176086], [0.4161617159843445, -0.2844890356063843, 0.10776790231466293, 0.10621610283851624, 0.5707793831825256, -0.08484743535518646, 0.12603667378425598, 0.01941087655723095, -0.25576353073120117, -0.28176915645599365], [0.4161613881587982, -0.28449001908302307, 0.10776926577091217, 0.10621759295463562, 0.5707801580429077, -0.08484871685504913, 0.12603473663330078, 0.019410988315939903, -0.25576427578926086, -0.28177040815353394], [0.41616159677505493, -0.28449133038520813, 0.10776900500059128, 0.10621703416109085, 0.5707810521125793, -0.0848483294248581, 0.12603574991226196, 0.019412657245993614, -0.25576522946357727, -0.2817687690258026], [0.4161589741706848, -0.2844853699207306, 0.10778308659791946, 0.1062208041548729, 0.57077956199646, -0.08484961837530136, 0.12602479755878448, 0.0194005835801363, -0.2557637095451355, -0.28177836537361145], [0.4161609709262848, -0.2844805419445038, 0.107782743871212, 0.10621878504753113, 0.5707763433456421, -0.08483706414699554, 0.12602047622203827, 0.01939573511481285, -0.25576967000961304, -0.2817724049091339], [0.4161651134490967, -0.2844853103160858, 0.10776766389608383, 0.10621031373739243, 0.5707768797874451, -0.08483287692070007, 0.12603576481342316, 0.01940876804292202, -0.2557699680328369, -0.2817581295967102], [0.4161606729030609, -0.2844851016998291, 0.10777446627616882, 0.10621549934148788, 0.5707780718803406, -0.08484694361686707, 0.12603411078453064, 0.01940467208623886, -0.25576159358024597, -0.2817723751068115], [0.41616091132164, -0.2844831645488739, 0.10777473449707031, 0.10621894896030426, 0.5707765221595764, -0.08484293520450592, 0.1260267049074173, 0.01940103806555271, -0.25576579570770264, -0.28177356719970703], [0.4161636531352997, -0.28448420763015747, 0.10777270048856735, 0.1062154695391655, 0.5707762837409973, -0.08483868837356567, 0.1260291039943695, 0.019405290484428406, -0.2557676434516907, -0.28176602721214294], [0.4161624014377594, -0.2844873070716858, 0.10776948928833008, 0.10621486604213715, 0.5707785487174988, -0.08484212309122086, 0.12603534758090973, 0.01940927468240261, -0.2557658851146698, -0.28176602721214294], [0.41616034507751465, -0.28448471426963806, 0.10777787119150162, 0.10621834546327591, 0.5707781314849854, -0.08484670519828796, 0.12602856755256653, 0.01940223015844822, -0.2557635009288788, -0.281774640083313], [0.41616183519363403, -0.284483402967453, 0.10777529329061508, 0.10621745884418488, 0.5707768201828003, -0.08483961969614029, 0.12602674961090088, 0.01940191723406315, -0.2557678818702698, -0.2817699611186981], [0.4161631166934967, -0.28448450565338135, 0.10777333378791809, 0.10621459037065506, 0.5707769393920898, -0.08483920991420746, 0.12603095173835754, 0.019405238330364227, -0.25576695799827576, -0.2817661166191101], [0.4161608815193176, -0.2844828963279724, 0.1077774316072464, 0.10621725767850876, 0.5707769393920898, -0.0848425105214119, 0.12602819502353668, 0.019400985911488533, -0.25576499104499817, -0.28177234530448914], [0.4161626696586609, -0.2844834327697754, 0.10777305066585541, 0.10621575266122818, 0.5707763433456421, -0.08483855426311493, 0.12602925300598145, 0.019403204321861267, -0.25576746463775635, -0.28176772594451904], [0.4161633849143982, -0.28448688983917236, 0.10776792466640472, 0.10621371865272522, 0.5707778334617615, -0.08484101295471191, 0.12603576481342316, 0.019409744068980217, -0.2557660937309265, -0.281764417886734], [0.4161607027053833, -0.28448641300201416, 0.10777398198843002, 0.1062176376581192, 0.5707786083221436, -0.08484745770692825, 0.12603192031383514, 0.019405722618103027, -0.25576314330101013, -0.28177282214164734], [0.4161617159843445, -0.2844863533973694, 0.10777232050895691, 0.10621753334999084, 0.5707781910896301, -0.08484324812889099, 0.12603026628494263, 0.019405968487262726, -0.2557665705680847, -0.28176987171173096], [0.41616156697273254, -0.28448450565338135, 0.10777744650840759, 0.10621730238199234, 0.5707777142524719, -0.08484318852424622, 0.12602783739566803, 0.01940310001373291, -0.2557656764984131, -0.28177112340927124], [0.4161602556705475, -0.284479558467865, 0.10778402537107468, 0.10621917247772217, 0.5707758069038391, -0.08483981341123581, 0.12602093815803528, 0.019394677132368088, -0.25576674938201904, -0.28177502751350403], [0.41616329550743103, -0.2844785749912262, 0.10777844488620758, 0.1062149703502655, 0.5707739591598511, -0.0848316177725792, 0.12602367997169495, 0.01939677819609642, -0.25576990842819214, -0.28176653385162354], [0.4161636233329773, -0.2844805419445038, 0.10777371376752853, 0.10621287673711777, 0.5707745552062988, -0.08483429253101349, 0.12603020668029785, 0.019401440396904945, -0.25576719641685486, -0.2817647457122803], [0.4161616861820221, -0.28447967767715454, 0.10777710378170013, 0.10621646046638489, 0.570774495601654, -0.08483939617872238, 0.12602683901786804, 0.019398139789700508, -0.2557646632194519, -0.28177177906036377], [0.4161619246006012, -0.2844763994216919, 0.10778176039457321, 0.10621843487024307, 0.570772647857666, -0.08483582735061646, 0.12601947784423828, 0.019392920657992363, -0.25576698780059814, -0.281773179769516], [0.4161631166934967, -0.28447383642196655, 0.1077834963798523, 0.10621684044599533, 0.5707711577415466, -0.08482971042394638, 0.12601745128631592, 0.01939074508845806, -0.2557693123817444, -0.28176960349082947], [0.41616448760032654, -0.28447604179382324, 0.1077762320637703, 0.10621307045221329, 0.5707716345787048, -0.08482732623815536, 0.12602514028549194, 0.019396241754293442, -0.2557696998119354, -0.28176334500312805], [0.4161640405654907, -0.2844797968864441, 0.10777124017477036, 0.10621251165866852, 0.5707734227180481, -0.08483390510082245, 0.12603171169757843, 0.019401783123612404, -0.2557661235332489, -0.2817642390727997], [0.4161628782749176, -0.2844826281070709, 0.1077696830034256, 0.1062152087688446, 0.570775032043457, -0.08484011143445969, 0.12603230774402618, 0.019404329359531403, -0.25576451420783997, -0.2817680537700653], [0.4161614179611206, -0.2844802141189575, 0.10777901858091354, 0.10621927678585052, 0.5707746148109436, -0.08484216779470444, 0.12602344155311584, 0.01939801312983036, -0.2557644546031952, -0.28177449107170105], [0.41616305708885193, -0.28448060154914856, 0.10777567327022552, 0.1062169149518013, 0.5707746148109436, -0.08483463525772095, 0.12602466344833374, 0.019400017336010933, -0.25576916337013245, -0.2817673981189728], [0.41616272926330566, -0.28448012471199036, 0.1077788844704628, 0.10621540248394012, 0.5707748532295227, -0.08483663201332092, 0.12602604925632477, 0.019398996606469154, -0.2557666599750519, -0.28176847100257874], [0.41616225242614746, -0.2844805121421814, 0.10777529329061508, 0.10621557384729385, 0.570775032043457, -0.08483604341745377, 0.12602776288986206, 0.01939958520233631, -0.25576725602149963, -0.2817683517932892], [0.41616344451904297, -0.2844822108745575, 0.10777232050895691, 0.10621421784162521, 0.5707752108573914, -0.08483752608299255, 0.12603050470352173, 0.01940319687128067, -0.2557663917541504, -0.28176626563072205], [0.41616228222846985, -0.28448358178138733, 0.10777218639850616, 0.1062159612774849, 0.5707762241363525, -0.0848410427570343, 0.1260310560464859, 0.019404254853725433, -0.25576522946357727, -0.28176888823509216], [0.41616159677505493, -0.2844821512699127, 0.10777711868286133, 0.10621795058250427, 0.5707759261131287, -0.0848417654633522, 0.1260262280702591, 0.01940053142607212, -0.25576531887054443, -0.2817722260951996], [0.41616111993789673, -0.2844773232936859, 0.10778480768203735, 0.1062193438410759, 0.5707740187644958, -0.08483736962080002, 0.12601833045482635, 0.019392697140574455, -0.25576716661453247, -0.2817745804786682], [0.41616201400756836, -0.2844715416431427, 0.10778968036174774, 0.10621806234121323, 0.5707708597183228, -0.08482898771762848, 0.12601278722286224, 0.0193854421377182, -0.255769819021225, -0.28177276253700256], [0.4161633849143982, -0.2844671308994293, 0.10778988897800446, 0.10621542483568192, 0.5707679390907288, -0.08482182025909424, 0.12601186335086823, 0.019381726160645485, -0.25577104091644287, -0.28176936507225037], [0.4161635637283325, -0.2844623029232025, 0.10779233276844025, 0.10621513426303864, 0.57076495885849, -0.08481864631175995, 0.1260087788105011, 0.01937621459364891, -0.2557702362537384, -0.28177061676979065], [0.4161660075187683, -0.28446295857429504, 0.10778302699327469, 0.10621213912963867, 0.5707636475563049, -0.08481357991695404, 0.12601390480995178, 0.019381070509552956, -0.2557719349861145, -0.28176331520080566], [0.41616737842559814, -0.28446969389915466, 0.10777156800031662, 0.10620938986539841, 0.5707659721374512, -0.08481908589601517, 0.12602604925632477, 0.01939341053366661, -0.2557689845561981, -0.28175821900367737], [0.4161648154258728, -0.2844756245613098, 0.10776941478252411, 0.10621315985918045, 0.570769727230072, -0.08483172208070755, 0.12603001296520233, 0.019399011507630348, -0.2557644248008728, -0.2817649245262146], [0.4161638617515564, -0.28447961807250977, 0.1077696681022644, 0.10621634125709534, 0.5707722902297974, -0.08483704924583435, 0.12602879106998444, 0.019401969388127327, -0.2557649314403534, -0.28176775574684143], [0.4161633253097534, -0.284481942653656, 0.10777250677347183, 0.10621721297502518, 0.570774495601654, -0.0848391205072403, 0.12602795660495758, 0.019403353333473206, -0.25576579570770264, -0.2817682921886444], [0.4161633551120758, -0.28448617458343506, 0.1077684760093689, 0.10621538758277893, 0.5707772374153137, -0.08483985811471939, 0.12603367865085602, 0.019408775493502617, -0.2557668089866638, -0.2817648649215698], [0.41616129875183105, -0.28448596596717834, 0.1077747642993927, 0.1062171533703804, 0.5707783699035645, -0.08484581857919693, 0.12603136897087097, 0.01940552145242691, -0.25576382875442505, -0.2817714512348175], [0.41616150736808777, -0.284485787153244, 0.10777302086353302, 0.1062173843383789, 0.5707781910896301, -0.0848427563905716, 0.12603026628494263, 0.01940513402223587, -0.25576651096343994, -0.2817700505256653], [0.4161618649959564, -0.284484326839447, 0.10777672380208969, 0.10621681064367294, 0.570777416229248, -0.08484256267547607, 0.12602828443050385, 0.0194031223654747, -0.255765825510025, -0.2817704975605011], [0.4161623418331146, -0.2844860255718231, 0.10777077078819275, 0.10621534287929535, 0.5707780718803406, -0.08484027534723282, 0.12603271007537842, 0.019406825304031372, -0.255767285823822, -0.2817665934562683], [0.4161618947982788, -0.28448620438575745, 0.10777334868907928, 0.10621575266122818, 0.5707782506942749, -0.08484455943107605, 0.1260325014591217, 0.019406244158744812, -0.2557644546031952, -0.28176960349082947], [0.4161619246006012, -0.2844882309436798, 0.10776820778846741, 0.10621597617864609, 0.5707790851593018, -0.08484397083520889, 0.12603507936000824, 0.01940968446433544, -0.25576597452163696, -0.2817676365375519], [0.4161621332168579, -0.284490168094635, 0.10776866227388382, 0.10621567815542221, 0.5707800984382629, -0.08484755456447601, 0.12603658437728882, 0.019412001594901085, -0.2557642459869385, -0.2817680537700653], [0.4161607325077057, -0.28449082374572754, 0.10776969790458679, 0.10621759295463562, 0.5707810521125793, -0.08484958857297897, 0.126035675406456, 0.01941140554845333, -0.2557642459869385, -0.28177082538604736], [0.4161613881587982, -0.28449147939682007, 0.10776962339878082, 0.10621694475412369, 0.5707813501358032, -0.08484894037246704, 0.1260356605052948, 0.01941223256289959, -0.25576502084732056, -0.28176939487457275], [0.4161604046821594, -0.28449001908302307, 0.10777368396520615, 0.10621802508831024, 0.5707812309265137, -0.08484961837530136, 0.1260330229997635, 0.01940910331904888, -0.25576454401016235, -0.2817722260951996], [0.4161607027053833, -0.28448811173439026, 0.1077749952673912, 0.10621783137321472, 0.5707801580429077, -0.08484632521867752, 0.12603068351745605, 0.019406430423259735, -0.25576597452163696, -0.28177163004875183], [0.41616174578666687, -0.28448787331581116, 0.1077728196978569, 0.10621591657400131, 0.5707796216011047, -0.08484379947185516, 0.12603257596492767, 0.019407637417316437, -0.2557666003704071, -0.28176844120025635], [0.41616037487983704, -0.2844843864440918, 0.10777931660413742, 0.10621792078018188, 0.5707783102989197, -0.0848451480269432, 0.12602746486663818, 0.019401418045163155, -0.25576481223106384, -0.2817739248275757], [0.4161613881587982, -0.2844814658164978, 0.10777907818555832, 0.10621759295463562, 0.5707762241363525, -0.08483872562646866, 0.1260242909193039, 0.019398408010601997, -0.2557677924633026, -0.2817714810371399], [0.41616278886795044, -0.2844802737236023, 0.10777813196182251, 0.10621526837348938, 0.570775032043457, -0.08483577519655228, 0.12602561712265015, 0.019398892298340797, -0.2557678520679474, -0.2817680239677429], [0.41616249084472656, -0.284480482339859, 0.10777588188648224, 0.10621505975723267, 0.5707749724388123, -0.08483627438545227, 0.12602782249450684, 0.019399764016270638, -0.25576698780059814, -0.2817680537700653], [0.4161625802516937, -0.28448042273521423, 0.10777577757835388, 0.10621558874845505, 0.5707746148109436, -0.08483751863241196, 0.1260274052619934, 0.019399674609303474, -0.25576621294021606, -0.2817690968513489], [0.41616204380989075, -0.28447872400283813, 0.10777889937162399, 0.10621718317270279, 0.5707738995552063, -0.08483728021383286, 0.12602367997169495, 0.01939668133854866, -0.2557663917541504, -0.28177136182785034], [0.41616225242614746, -0.284475713968277, 0.10778283327817917, 0.10621759295463562, 0.5707724690437317, -0.08483373373746872, 0.1260192096233368, 0.019392339512705803, -0.25576773285865784, -0.2817716896533966], [0.41616368293762207, -0.28447556495666504, 0.10777921229600906, 0.10621494054794312, 0.5707718133926392, -0.08482912182807922, 0.12602199614048004, 0.0193941630423069, -0.2557694613933563, -0.28176650404930115], [0.4161645770072937, -0.28447967767715454, 0.10777103900909424, 0.10621210187673569, 0.5707733035087585, -0.08483146876096725, 0.12603101134300232, 0.01940190978348255, -0.2557678520679474, -0.2817623019218445], [0.416162371635437, -0.28448083996772766, 0.10777389258146286, 0.10621549934148788, 0.5707745552062988, -0.08483996242284775, 0.12602992355823517, 0.019401120021939278, -0.2557639181613922, -0.28176987171173096], [0.41616177558898926, -0.2844790518283844, 0.10777808725833893, 0.10621856898069382, 0.5707738995552063, -0.08483889698982239, 0.1260230839252472, 0.019396912306547165, -0.2557659149169922, -0.2817729413509369], [0.4161623418331146, -0.2844754457473755, 0.10778424888849258, 0.1062183603644371, 0.5707722902297974, -0.08483374863862991, 0.12601733207702637, 0.01939178816974163, -0.2557680606842041, -0.2817721664905548], [0.41616395115852356, -0.2844763398170471, 0.10777802020311356, 0.10621439665555954, 0.5707722306251526, -0.08482801914215088, 0.12602320313453674, 0.019395533949136734, -0.2557702958583832, -0.2817647457122803], [0.41616278886795044, -0.2844749987125397, 0.1077817752957344, 0.10621488094329834, 0.5707718729972839, -0.08483266830444336, 0.12602269649505615, 0.019392726942896843, -0.2557663917541504, -0.28176963329315186], [0.4161619544029236, -0.28447094559669495, 0.10778551548719406, 0.10621780157089233, 0.5707697868347168, -0.08483017981052399, 0.1260155737400055, 0.019386127591133118, -0.25576773285865784, -0.28177353739738464], [0.41616424918174744, -0.2844683527946472, 0.10778551548719406, 0.10621576756238937, 0.5707675814628601, -0.08482334017753601, 0.12601348757743835, 0.01938486099243164, -0.2557702660560608, -0.2817685306072235], [0.41616424918174744, -0.28446701169013977, 0.10778556019067764, 0.10621469467878342, 0.570766806602478, -0.08482161909341812, 0.1260146051645279, 0.019384123384952545, -0.255769819021225, -0.28176748752593994], [0.41616398096084595, -0.28446489572525024, 0.10778731107711792, 0.1062152087688446, 0.5707656145095825, -0.08482097834348679, 0.1260126233100891, 0.01938091404736042, -0.2557692229747772, -0.28176936507225037], [0.41616687178611755, -0.2844702899456024, 0.10777277499437332, 0.10621076077222824, 0.570766806602478, -0.0848182886838913, 0.12602370977401733, 0.01939261518418789, -0.25577113032341003, -0.2817588448524475], [0.41616445779800415, -0.2844730019569397, 0.1077764704823494, 0.10621349513530731, 0.5707690119743347, -0.084830641746521, 0.12602514028549194, 0.019394058734178543, -0.2557646334171295, -0.28176698088645935], [0.4161628782749176, -0.28447332978248596, 0.10777796059846878, 0.10621766746044159, 0.570769727230072, -0.08483153581619263, 0.1260203868150711, 0.019391847774386406, -0.25576671957969666, -0.2817710340023041], [0.41616421937942505, -0.28447264432907104, 0.10778140276670456, 0.10621656477451324, 0.5707694292068481, -0.08482886850833893, 0.12601777911186218, 0.019391072914004326, -0.2557683289051056, -0.2817685604095459], [0.41616398096084595, -0.28447386622428894, 0.10777880996465683, 0.10621507465839386, 0.5707704424858093, -0.08482736349105835, 0.1260215938091278, 0.01939321681857109, -0.25576919317245483, -0.28176599740982056], [0.41616350412368774, -0.2844736576080322, 0.10778076946735382, 0.10621502995491028, 0.5707706212997437, -0.08483010530471802, 0.12602153420448303, 0.019391914829611778, -0.25576722621917725, -0.2817685008049011], [0.4161635935306549, -0.2844740152359009, 0.10777811706066132, 0.10621523857116699, 0.5707705616950989, -0.08482929319143295, 0.1260220855474472, 0.01939292810857296, -0.25576815009117126, -0.28176769614219666], [0.4161645174026489, -0.2844763994216919, 0.10777470469474792, 0.10621389746665955, 0.570771336555481, -0.08483047038316727, 0.1260257214307785, 0.019397292286157608, -0.2557676434516907, -0.28176507353782654], [0.4161624014377594, -0.284475177526474, 0.10778066515922546, 0.10621704906225204, 0.5707716345787048, -0.08483465760946274, 0.1260216236114502, 0.019393164664506912, -0.2557657063007355, -0.2817716598510742], [0.41616305708885193, -0.2844736874103546, 0.10778144747018814, 0.10621713846921921, 0.5707706809043884, -0.0848301351070404, 0.1260184496641159, 0.01939096860587597, -0.2557685971260071, -0.2817700505256653], [0.41616350412368774, -0.2844714820384979, 0.10778455436229706, 0.10621605813503265, 0.5707696676254272, -0.08482778817415237, 0.1260167807340622, 0.019388457760214806, -0.255768746137619, -0.2817693054676056], [0.41616353392601013, -0.2844701111316681, 0.10778377950191498, 0.10621538758277893, 0.5707688331604004, -0.08482509851455688, 0.1260169893503189, 0.019387103617191315, -0.25576940178871155, -0.28176844120025635], [0.41616567969322205, -0.2844741940498352, 0.10777333378791809, 0.10621156543493271, 0.570769727230072, -0.08482444286346436, 0.12602607905864716, 0.01939588412642479, -0.25576961040496826, -0.281761109828949], [0.4161640703678131, -0.2844778597354889, 0.10777203738689423, 0.10621327906847, 0.5707719922065735, -0.08483394235372543, 0.12602995336055756, 0.019399890676140785, -0.25576502084732056, -0.28176575899124146], [0.41616180539131165, -0.28447628021240234, 0.10777945816516876, 0.10621865093708038, 0.5707720518112183, -0.08483772724866867, 0.12602166831493378, 0.019393961876630783, -0.2557646930217743, -0.28177401423454285], [0.41616392135620117, -0.2844766676425934, 0.10777713358402252, 0.10621665418148041, 0.5707717537879944, -0.08483096957206726, 0.12602150440216064, 0.01939598098397255, -0.2557692527770996, -0.28176721930503845], [0.41616421937942505, -0.2844794988632202, 0.10777419060468674, 0.10621377825737, 0.5707734823226929, -0.08483259379863739, 0.12602822482585907, 0.019400903955101967, -0.2557677924633026, -0.28176406025886536], [0.41616302728652954, -0.28448307514190674, 0.10777009278535843, 0.10621412843465805, 0.5707756876945496, -0.08483809977769852, 0.12603333592414856, 0.019404850900173187, -0.25576573610305786, -0.2817658483982086], [0.4161626100540161, -0.28448542952537537, 0.1077694296836853, 0.10621554404497147, 0.5707769393920898, -0.0848429948091507, 0.1260336935520172, 0.019407041370868683, -0.2557643949985504, -0.28176820278167725], [0.4161618649959564, -0.2844863533973694, 0.10777122527360916, 0.1062173843383789, 0.5707778334617615, -0.08484487235546112, 0.1260318011045456, 0.01940707117319107, -0.25576475262641907, -0.28177013993263245], [0.41616198420524597, -0.2844873368740082, 0.10777164250612259, 0.10621701925992966, 0.5707786679267883, -0.08484425395727158, 0.1260319948196411, 0.019407911226153374, -0.255765825510025, -0.28176894783973694], [0.41616183519363403, -0.2844885587692261, 0.10777093470096588, 0.1062161773443222, 0.5707796216011047, -0.08484502136707306, 0.12603411078453064, 0.019409408792853355, -0.2557656466960907, -0.28176823258399963], [0.4161604940891266, -0.2844863533973694, 0.10777663439512253, 0.10621807724237442, 0.5707792043685913, -0.08484673500061035, 0.12602971494197845, 0.01940438151359558, -0.25576451420783997, -0.2817732095718384], [0.4161621034145355, -0.2844870090484619, 0.10777124017477036, 0.10621600598096848, 0.5707787275314331, -0.0848417803645134, 0.12603208422660828, 0.019407249987125397, -0.25576749444007874, -0.28176745772361755], [0.41616344451904297, -0.28449252247810364, 0.10776259750127792, 0.10621258616447449, 0.570780873298645, -0.08484505116939545, 0.1260424703359604, 0.019417177885770798, -0.25576555728912354, -0.28176212310791016], [0.4161602258682251, -0.2844942808151245, 0.10776644200086594, 0.1062169298529625, 0.5707830190658569, -0.08485537022352219, 0.12604133784770966, 0.019416090101003647, -0.25576120615005493, -0.28177163004875183], [0.41615939140319824, -0.2844913899898529, 0.10777345299720764, 0.10622061789035797, 0.570781946182251, -0.08485407382249832, 0.12603186070919037, 0.01940946839749813, -0.255763441324234, -0.2817761301994324], [0.416160523891449, -0.28448745608329773, 0.10777854919433594, 0.10621953755617142, 0.5707800388336182, -0.08484645187854767, 0.1260264664888382, 0.019404597580432892, -0.2557668089866638, -0.28177326917648315], [0.4161626696586609, -0.28448984026908875, 0.10776926577091217, 0.10621403157711029, 0.5707805156707764, -0.08484107255935669, 0.12603595852851868, 0.019411375746130943, -0.2557685971260071, -0.28176361322402954], [0.4161601662635803, -0.28448763489723206, 0.10777644068002701, 0.10621647536754608, 0.5707802772521973, -0.08484902232885361, 0.12603314220905304, 0.019405901432037354, -0.25576284527778625, -0.2817731201648712], [0.416159987449646, -0.2844833731651306, 0.10777876526117325, 0.1062193363904953, 0.5707777142524719, -0.08484383672475815, 0.12602511048316956, 0.019399428740143776, -0.2557661235332489, -0.28177517652511597], [0.4161638021469116, -0.28448486328125, 0.10777141898870468, 0.10621415823698044, 0.5707768797874451, -0.08483710885047913, 0.12603074312210083, 0.019406095147132874, -0.2557688057422638, -0.28176403045654297], [0.41616177558898926, -0.2844860255718231, 0.10777273029088974, 0.10621513426303864, 0.5707782506942749, -0.08484349399805069, 0.1260337382555008, 0.019406668841838837, -0.25576457381248474, -0.2817685306072235], [0.4161609709262848, -0.2844851016998291, 0.1077742725610733, 0.10621753334999084, 0.5707778930664062, -0.08484434336423874, 0.1260301023721695, 0.019403740763664246, -0.25576499104499817, -0.28177207708358765], [0.4161624610424042, -0.2844853103160858, 0.10777262598276138, 0.10621623694896698, 0.570777416229248, -0.08484151214361191, 0.12603026628494263, 0.019405528903007507, -0.2557666599750519, -0.2817682921886444], [0.4161621034145355, -0.28448641300201416, 0.1077721118927002, 0.10621588677167892, 0.5707782506942749, -0.08484284579753876, 0.1260325014591217, 0.01940702646970749, -0.25576579570770264, -0.28176817297935486], [0.4161610007286072, -0.28448495268821716, 0.10777601599693298, 0.10621750354766846, 0.5707780122756958, -0.08484438806772232, 0.12602931261062622, 0.019403457641601562, -0.25576502084732056, -0.28177204728126526], [0.4161619544029236, -0.2844844162464142, 0.10777449607849121, 0.10621671378612518, 0.5707773566246033, -0.08484086394309998, 0.1260288953781128, 0.019403547048568726, -0.25576695799827576, -0.281769335269928], [0.4161624014377594, -0.28448486328125, 0.10777357220649719, 0.10621549934148788, 0.570777416229248, -0.08484098315238953, 0.12603087723255157, 0.019404999911785126, -0.255766361951828, -0.28176793456077576], [0.4161622226238251, -0.2844867408275604, 0.10777013748884201, 0.10621525347232819, 0.5707783102989197, -0.08484251797199249, 0.12603415548801422, 0.019407888874411583, -0.25576579570770264, -0.281767338514328], [0.4161624610424042, -0.2844898998737335, 0.10776650160551071, 0.10621488094329834, 0.5707796812057495, -0.08484582602977753, 0.12603794038295746, 0.019412456080317497, -0.25576478242874146, -0.28176650404930115], [0.41616109013557434, -0.28449124097824097, 0.10776841640472412, 0.10621703416109085, 0.5707809925079346, -0.08485041558742523, 0.12603700160980225, 0.019412590190768242, -0.25576338171958923, -0.28177037835121155], [0.41616058349609375, -0.28449052572250366, 0.10777179896831512, 0.10621852427721024, 0.5707810521125793, -0.08485012501478195, 0.12603336572647095, 0.01941014640033245, -0.2557644248008728, -0.2817721664905548], [0.4161624610424042, -0.2844943404197693, 0.10776381939649582, 0.1062149703502655, 0.570782482624054, -0.08484744280576706, 0.12604062259197235, 0.019417667761445045, -0.25576648116111755, -0.2817643880844116], [0.4161607325077057, -0.2844965159893036, 0.1077658087015152, 0.10621590167284012, 0.5707844495773315, -0.08485537767410278, 0.12604303658008575, 0.019418926909565926, -0.2557622194290161, -0.2817692160606384], [0.41615912318229675, -0.2844952344894409, 0.10776951909065247, 0.1062193214893341, 0.570784330368042, -0.084856778383255, 0.12603773176670074, 0.019414681941270828, -0.25576284527778625, -0.2817744016647339], [0.41616091132164, -0.28449511528015137, 0.10776835680007935, 0.10621753334999084, 0.570783793926239, -0.08485240489244461, 0.12603740394115448, 0.019415881484746933, -0.2557653784751892, -0.28176966309547424], [0.41615983843803406, -0.2844933867454529, 0.10777292400598526, 0.10621806234121323, 0.5707836151123047, -0.0848531723022461, 0.12603561580181122, 0.019412605091929436, -0.25576409697532654, -0.2817723751068115], [0.41616106033325195, -0.28449496626853943, 0.10776641219854355, 0.10621588677167892, 0.5707837343215942, -0.08484996110200882, 0.12603995203971863, 0.019416306167840958, -0.25576600432395935, -0.2817673981189728], [0.41615939140319824, -0.2844913899898529, 0.10777588188648224, 0.10621841996908188, 0.5707826018333435, -0.08485428243875504, 0.12603358924388885, 0.019409304484725, -0.2557624876499176, -0.28177523612976074], [0.4161607325077057, -0.2844909131526947, 0.10777033120393753, 0.10621753334999084, 0.5707815289497375, -0.08484683185815811, 0.12603390216827393, 0.01941034011542797, -0.2557671070098877, -0.2817697525024414], [0.4161621034145355, -0.28449204564094543, 0.1077691912651062, 0.10621476173400879, 0.5707817077636719, -0.08484811335802078, 0.12603777647018433, 0.019413720816373825, -0.25576505064964294, -0.28176695108413696], [0.41615980863571167, -0.28449147939682007, 0.10777109861373901, 0.1062176525592804, 0.5707821249961853, -0.08485132455825806, 0.12603619694709778, 0.01941109262406826, -0.2557637095451355, -0.28177234530448914], [0.41616103053092957, -0.2844907343387604, 0.10777129977941513, 0.10621735453605652, 0.5707812309265137, -0.08484894037246704, 0.12603405117988586, 0.01941036246716976, -0.2557651400566101, -0.2817707359790802], [0.41616126894950867, -0.28449106216430664, 0.10777022689580917, 0.10621654987335205, 0.570781409740448, -0.08484794944524765, 0.12603551149368286, 0.01941174827516079, -0.25576549768447876, -0.2817689776420593], [0.41616031527519226, -0.2844892740249634, 0.10777463018894196, 0.10621780157089233, 0.570780873298645, -0.08484913408756256, 0.1260325014591217, 0.019407911226153374, -0.255764365196228, -0.28177255392074585], [0.41616153717041016, -0.2844898998737335, 0.1077699139714241, 0.10621620714664459, 0.5707805752754211, -0.08484536409378052, 0.1260347217321396, 0.019410310313105583, -0.2557666301727295, -0.28176814317703247], [0.4161613881587982, -0.2844898998737335, 0.10777159780263901, 0.10621604323387146, 0.5707807540893555, -0.08484805375337601, 0.1260351687669754, 0.0194102730602026, -0.2557643949985504, -0.28176963329315186], [0.4161606729030609, -0.28448954224586487, 0.10777146369218826, 0.10621736943721771, 0.5707806348800659, -0.08484791964292526, 0.1260339915752411, 0.019409185275435448, -0.25576502084732056, -0.2817710340023041], [0.41616129875183105, -0.28448864817619324, 0.10777302086353302, 0.10621706396341324, 0.5707800388336182, -0.0848468542098999, 0.12603238224983215, 0.019408194348216057, -0.25576528906822205, -0.2817705273628235], [0.41616150736808777, -0.28448930382728577, 0.10777069628238678, 0.10621629655361176, 0.5707802772521973, -0.08484560996294022, 0.12603436410427094, 0.019409796223044395, -0.25576597452163696, -0.2817685604095459], [0.416160523891449, -0.28448688983917236, 0.10777664929628372, 0.10621784627437592, 0.5707794427871704, -0.08484728634357452, 0.12603013217449188, 0.019404970109462738, -0.2557643949985504, -0.28177306056022644], [0.4161624014377594, -0.2844892144203186, 0.10776767879724503, 0.10621516406536102, 0.5707796812057495, -0.08484240621328354, 0.12603552639484406, 0.019410764798521996, -0.2557676434516907, -0.28176555037498474], [0.4161624014377594, -0.2844926416873932, 0.10776551067829132, 0.10621397197246552, 0.5707814693450928, -0.08484875410795212, 0.12604115903377533, 0.01941598579287529, -0.25576382875442505, -0.28176575899124146], [0.41616013646125793, -0.2844940721988678, 0.10776647180318832, 0.10621756315231323, 0.5707829594612122, -0.08485401421785355, 0.12603993713855743, 0.019415434449911118, -0.25576260685920715, -0.2817714512348175], [0.4161604642868042, -0.28449323773384094, 0.10777024179697037, 0.10621865093708038, 0.5707826018333435, -0.08485337346792221, 0.12603545188903809, 0.01941319927573204, -0.25576382875442505, -0.2817724049091339], [0.41616079211235046, -0.28449326753616333, 0.10776989907026291, 0.10621766746044159, 0.5707828402519226, -0.08485046774148941, 0.12603595852851868, 0.019413728266954422, -0.25576555728912354, -0.2817698121070862], [0.41616013646125793, -0.28449150919914246, 0.10777399688959122, 0.10621772706508636, 0.5707824230194092, -0.08485082536935806, 0.12603411078453064, 0.01941034011542797, -0.25576454401016235, -0.28177204728126526], [0.41616079211235046, -0.28449106216430664, 0.10777115076780319, 0.10621671378612518, 0.5707817673683167, -0.08484769612550735, 0.12603504955768585, 0.019410645589232445, -0.25576600432395935, -0.28176966309547424], [0.4161612093448639, -0.2844908833503723, 0.10777099430561066, 0.10621599107980728, 0.570781409740448, -0.08484850823879242, 0.12603583931922913, 0.01941114477813244, -0.25576484203338623, -0.28176945447921753], [0.41616079211235046, -0.2844909727573395, 0.10777009278535843, 0.10621679574251175, 0.570781409740448, -0.08484895527362823, 0.1260358989238739, 0.019411271438002586, -0.25576478242874146, -0.2817701995372772], [0.4161612391471863, -0.2844914197921753, 0.10776962339878082, 0.10621656477451324, 0.570781409740448, -0.08484908938407898, 0.1260361224412918, 0.01941211335361004, -0.25576478242874146, -0.2817695438861847], [0.41615983843803406, -0.2844882607460022, 0.10777664929628372, 0.10621899366378784, 0.5707805156707764, -0.08484965562820435, 0.1260301023721695, 0.01940596103668213, -0.2557641863822937, -0.2817745804786682], [0.41616153717041016, -0.2844875454902649, 0.10777337849140167, 0.1062169149518013, 0.5707794427871704, -0.08484309911727905, 0.12603074312210083, 0.01940663903951645, -0.2557675242424011, -0.2817690372467041], [0.4161624014377594, -0.28448933362960815, 0.10776957869529724, 0.1062142476439476, 0.5707800388336182, -0.08484410494565964, 0.1260363906621933, 0.019410980865359306, -0.25576600432395935, -0.281765878200531], [0.4161608815193176, -0.28449028730392456, 0.10776962339878082, 0.10621616244316101, 0.5707808136940002, -0.08484882116317749, 0.12603695690631866, 0.01941094361245632, -0.25576379895210266, -0.28177011013031006], [0.41616159677505493, -0.28449198603630066, 0.10776664316654205, 0.10621631145477295, 0.5707812905311584, -0.08484907448291779, 0.1260378360748291, 0.019413720816373825, -0.2557646930217743, -0.2817685306072235], [0.4161607027053833, -0.284491628408432, 0.10777100920677185, 0.1062178760766983, 0.5707816481590271, -0.08485157787799835, 0.12603525817394257, 0.01941191963851452, -0.25576359033584595, -0.2817716896533966], [0.41616091132164, -0.28449222445487976, 0.10776932537555695, 0.10621742904186249, 0.5707820057868958, -0.08484912663698196, 0.1260359287261963, 0.019412774592638016, -0.2557656168937683, -0.2817695736885071], [0.416161447763443, -0.28449374437332153, 0.10776776820421219, 0.10621576756238937, 0.5707827806472778, -0.0848502442240715, 0.1260390430688858, 0.019415389746427536, -0.25576478242874146, -0.2817678451538086], [0.4161602556705475, -0.2844941020011902, 0.10776860266923904, 0.10621712356805801, 0.5707833766937256, -0.08485311269760132, 0.12603889405727386, 0.01941480115056038, -0.25576359033584595, -0.28177088499069214], [0.416159063577652, -0.2844892740249634, 0.10777820646762848, 0.10622024536132812, 0.5707814693450928, -0.08485249429941177, 0.12602919340133667, 0.01940573751926422, -0.2557636499404907, -0.2817770540714264], [0.41616079211235046, -0.2844856381416321, 0.10777831077575684, 0.10621852427721024, 0.570779025554657, -0.084842748939991, 0.12602603435516357, 0.019402610138058662, -0.2557681202888489, -0.28177183866500854], [0.41616296768188477, -0.2844870388507843, 0.10777178406715393, 0.10621364414691925, 0.5707789063453674, -0.08483962714672089, 0.12603363394737244, 0.019407933577895164, -0.2557680010795593, -0.2817644476890564], [0.41616055369377136, -0.284485399723053, 0.10777613520622253, 0.1062164157629013, 0.5707786679267883, -0.08484569936990738, 0.12603150308132172, 0.019403785467147827, -0.25576382875442505, -0.28177234530448914], [0.4161613881587982, -0.28448382019996643, 0.10777503997087479, 0.1062174141407013, 0.5707771182060242, -0.08484181761741638, 0.1260279268026352, 0.01940205879509449, -0.2557664215564728, -0.28177136182785034], [0.4161635637283325, -0.2844867408275604, 0.10776855051517487, 0.10621403157711029, 0.5707777142524719, -0.08483986556529999, 0.12603417038917542, 0.01940917782485485, -0.25576722621917725, -0.28176406025886536], [0.4161619246006012, -0.28448987007141113, 0.10776755958795547, 0.10621502995491028, 0.5707799196243286, -0.08484679460525513, 0.1260383129119873, 0.01941225491464138, -0.2557638883590698, -0.2817673683166504], [0.4161601662635803, -0.2844884991645813, 0.10777334868907928, 0.10621872544288635, 0.5707799792289734, -0.0848500207066536, 0.1260322630405426, 0.019407376646995544, -0.25576329231262207, -0.28177404403686523], [0.41616109013557434, -0.28448614478111267, 0.10777610540390015, 0.10621872544288635, 0.5707786679267883, -0.08484476804733276, 0.12602756917476654, 0.019404232501983643, -0.2557664215564728, -0.281772255897522], [0.41616255044937134, -0.284487247467041, 0.1077718585729599, 0.10621526837348938, 0.5707789063453674, -0.08484116941690445, 0.1260325312614441, 0.019408008083701134, -0.2557676434516907, -0.2817660868167877], [0.41616109013557434, -0.2844865620136261, 0.10777483880519867, 0.10621622204780579, 0.5707791447639465, -0.08484531939029694, 0.12603230774402618, 0.019405744969844818, -0.25576457381248474, -0.2817707359790802], [0.4161614179611206, -0.2844862639904022, 0.1077725812792778, 0.1062166690826416, 0.570778489112854, -0.0848434790968895, 0.12603148818016052, 0.01940564066171646, -0.25576603412628174, -0.2817699611186981], [0.4161621034145355, -0.2844862937927246, 0.10777289420366287, 0.10621603578329086, 0.5707781910896301, -0.08484348654747009, 0.12603157758712769, 0.019406437873840332, -0.2557656764984131, -0.28176894783973694], [0.41616207361221313, -0.2844884395599365, 0.10776891559362411, 0.10621554404497147, 0.5707792639732361, -0.0848439410328865, 0.12603525817394257, 0.019409937784075737, -0.2557659447193146, -0.2817671597003937], [0.4161616265773773, -0.28448957204818726, 0.10776994377374649, 0.10621611773967743, 0.5707800984382629, -0.08484768122434616, 0.12603577971458435, 0.01941065303981304, -0.2557641565799713, -0.2817692458629608], [0.4161609411239624, -0.2844897210597992, 0.10777072608470917, 0.10621750354766846, 0.5707805156707764, -0.08484835177659988, 0.12603424489498138, 0.019409893080592155, -0.2557646632194519, -0.28177088499069214], [0.4161611795425415, -0.28448909521102905, 0.10777268558740616, 0.1062174141407013, 0.5707802176475525, -0.08484743535518646, 0.12603257596492767, 0.01940876804292202, -0.2557651996612549, -0.28177064657211304], [0.4161606729030609, -0.2844870984554291, 0.10777594149112701, 0.10621796548366547, 0.57077956199646, -0.08484595268964767, 0.1260298490524292, 0.01940540224313736, -0.2557656168937683, -0.28177201747894287], [0.4161619246006012, -0.28448739647865295, 0.10777229070663452, 0.10621581226587296, 0.5707792043685913, -0.08484260737895966, 0.12603241205215454, 0.01940733939409256, -0.25576701760292053, -0.2817678451538086], [0.41616296768188477, -0.28449198603630066, 0.10776372998952866, 0.1062130555510521, 0.570780873298645, -0.08484514057636261, 0.1260414868593216, 0.019415806978940964, -0.2557656764984131, -0.28176334500312805], [0.4161602854728699, -0.2844926416873932, 0.10776863247156143, 0.10621712356805801, 0.5707821846008301, -0.0848541334271431, 0.12603892385959625, 0.019413653761148453, -0.2557615637779236, -0.28177228569984436], [0.4161594808101654, -0.2844891846179962, 0.10777545720338821, 0.10622065514326096, 0.5707808136940002, -0.08485148102045059, 0.12602940201759338, 0.01940658688545227, -0.2557641863822937, -0.28177618980407715], [0.41616290807724, -0.28449171781539917, 0.10776704549789429, 0.1062152236700058, 0.5707810521125793, -0.08484368771314621, 0.12603622674942017, 0.0194140262901783, -0.2557683289051056, -0.28176403045654297], [0.4161607623100281, -0.28449249267578125, 0.10777075588703156, 0.10621575266122818, 0.570782482624054, -0.08485127985477448, 0.12603862583637238, 0.01941339299082756, -0.25576311349868774, -0.28176969289779663], [0.4161589741706848, -0.28448885679244995, 0.10777612030506134, 0.10621973127126694, 0.5707811713218689, -0.08485099673271179, 0.12603066861629486, 0.01940567046403885, -0.2557639479637146, -0.28177621960639954], [0.41616275906562805, -0.2844903767108917, 0.1077679991722107, 0.10621513426303864, 0.570780336856842, -0.0848434790968895, 0.1260351687669754, 0.01941194199025631, -0.25576791167259216, -0.28176525235176086], [0.41616126894950867, -0.284491628408432, 0.1077696830034256, 0.10621543973684311, 0.5707816481590271, -0.08484958112239838, 0.12603822350502014, 0.01941312476992607, -0.2557637095451355, -0.28176867961883545], [0.4161600172519684, -0.28449103236198425, 0.10777093470096588, 0.10621801018714905, 0.5707816481590271, -0.08485078811645508, 0.12603524327278137, 0.01941041462123394, -0.2557640075683594, -0.28177252411842346], [0.4161617159843445, -0.28449174761772156, 0.1077687218785286, 0.1062164455652237, 0.570781409740448, -0.08484833687543869, 0.12603604793548584, 0.019412819296121597, -0.25576555728912354, -0.28176844120025635], [0.4161621630191803, -0.2844964861869812, 0.10776147991418839, 0.10621435195207596, 0.5707836151123047, -0.08485052734613419, 0.1260444074869156, 0.01942085660994053, -0.255764901638031, -0.28176432847976685], [0.41616007685661316, -0.28449851274490356, 0.10776428878307343, 0.1062169149518013, 0.5707855820655823, -0.08485884219408035, 0.12604449689388275, 0.019420916214585304, -0.2557612657546997, -0.28177085518836975], [0.41615957021713257, -0.28449884057044983, 0.10776519030332565, 0.10621887445449829, 0.5707860589027405, -0.08485893905162811, 0.1260414719581604, 0.019419999793171883, -0.2557629942893982, -0.28177234530448914], [0.4161611497402191, -0.28450214862823486, 0.10776050388813019, 0.1062161922454834, 0.5707873106002808, -0.08485778421163559, 0.12604646384716034, 0.01942606270313263, -0.2557642459869385, -0.28176650404930115], [0.416157990694046, -0.28449973464012146, 0.10777078568935394, 0.10621985048055649, 0.5707877278327942, -0.0848635882139206, 0.12604062259197235, 0.019418904557824135, -0.2557608485221863, -0.28177621960639954], [0.41615983843803406, -0.2845001816749573, 0.10776463150978088, 0.10621790587902069, 0.5707871913909912, -0.08485627919435501, 0.12604206800460815, 0.01942111738026142, -0.25576576590538025, -0.2817695140838623], [0.41616010665893555, -0.2844999134540558, 0.10776744037866592, 0.10621653497219086, 0.5707871913909912, -0.08485903590917587, 0.12604309618473053, 0.019421184435486794, -0.25576287508010864, -0.281770259141922], [0.4161584675312042, -0.28449827432632446, 0.10776890069246292, 0.10621893405914307, 0.5707867741584778, -0.08485888689756393, 0.1260402649641037, 0.01941758021712303, -0.25576329231262207, -0.2817739248275757], [0.41615933179855347, -0.2844943404197693, 0.10777431726455688, 0.1062190979719162, 0.5707844495773315, -0.08485546708106995, 0.12603409588336945, 0.019412076100707054, -0.2557641863822937, -0.2817745804786682], [0.4161611795425415, -0.28449565172195435, 0.107766292989254, 0.1062157079577446, 0.5707842111587524, -0.08484957367181778, 0.12603986263275146, 0.019417207688093185, -0.255766898393631, -0.28176650404930115], [0.41615915298461914, -0.28449198603630066, 0.1077764555811882, 0.10621821135282516, 0.5707831382751465, -0.08485493063926697, 0.126034215092659, 0.019409677013754845, -0.2557622492313385, -0.2817753255367279], [0.4161592721939087, -0.2844872772693634, 0.10777799040079117, 0.1062198057770729, 0.5707804560661316, -0.084847092628479, 0.12602737545967102, 0.019403234124183655, -0.2557665705680847, -0.28177517652511597], [0.4161619544029236, -0.28448420763015747, 0.1077788844704628, 0.10621632635593414, 0.5707778334617615, -0.08484064042568207, 0.1260264366865158, 0.019401872530579567, -0.25576770305633545, -0.28176969289779663], [0.41616135835647583, -0.284482479095459, 0.10777787119150162, 0.10621599107980728, 0.5707769393920898, -0.08483897149562836, 0.1260276436805725, 0.019400449469685555, -0.25576719641685486, -0.28176984190940857], [0.4161631166934967, -0.28448447585105896, 0.10777075588703156, 0.10621361434459686, 0.5707768201828003, -0.08483821898698807, 0.12603293359279633, 0.019405461847782135, -0.2557671070098877, -0.28176525235176086], [0.41616326570510864, -0.2844897508621216, 0.10776309669017792, 0.10621295124292374, 0.570779025554657, -0.08484388142824173, 0.12604080140590668, 0.01941409334540367, -0.25576478242874146, -0.28176364302635193], [0.41616135835647583, -0.28449296951293945, 0.10776445269584656, 0.10621638596057892, 0.570781409740448, -0.08485256135463715, 0.12604080140590668, 0.019415970891714096, -0.25576192140579224, -0.2817695438861847], [0.4161606431007385, -0.2844940721988678, 0.10776694118976593, 0.10621875524520874, 0.5707826018333435, -0.0848538875579834, 0.12603759765625, 0.01941545680165291, -0.25576335191726685, -0.28177157044410706], [0.41616180539131165, -0.2844977378845215, 0.1077626571059227, 0.10621626675128937, 0.5707844495773315, -0.08485276997089386, 0.12604261934757233, 0.019421378150582314, -0.25576508045196533, -0.28176605701446533], [0.41615960001945496, -0.28449809551239014, 0.10776788741350174, 0.1062178760766983, 0.5707859396934509, -0.08485868573188782, 0.12604178488254547, 0.01941918022930622, -0.2557620704174042, -0.2817719876766205], [0.416159451007843, -0.2844976782798767, 0.1077675148844719, 0.10621853917837143, 0.5707858204841614, -0.08485668152570724, 0.12603992223739624, 0.019417772069573402, -0.25576409697532654, -0.2817719876766205], [0.4161604344844818, -0.28449761867523193, 0.10776758939027786, 0.10621701925992966, 0.5707855224609375, -0.0848555862903595, 0.12604045867919922, 0.019418613985180855, -0.2557642459869385, -0.28176987171173096], [0.4161582291126251, -0.2844926416873932, 0.10777738690376282, 0.1062202900648117, 0.5707839727401733, -0.0848560705780983, 0.12603223323822021, 0.019409185275435448, -0.25576311349868774, -0.28177741169929504], [0.4161597788333893, -0.2844875454902649, 0.1077793687582016, 0.10621930658817291, 0.5707806944847107, -0.08484625071287155, 0.12602657079696655, 0.01940334588289261, -0.2557673752307892, -0.28177404403686523], [0.41616153717041016, -0.28448450565338135, 0.10777903348207474, 0.10621599107980728, 0.5707784295082092, -0.08484043180942535, 0.12602728605270386, 0.01940196193754673, -0.25576794147491455, -0.2817695736885071], [0.41616225242614746, -0.28448542952537537, 0.10777217149734497, 0.10621386766433716, 0.5707780718803406, -0.08483941853046417, 0.1260332316160202, 0.019405663013458252, -0.255767285823822, -0.2817661166191101], [0.41616174578666687, -0.2844855487346649, 0.10777262598276138, 0.10621526837348938, 0.570777952671051, -0.0848439633846283, 0.1260329931974411, 0.0194055438041687, -0.25576433539390564, -0.2817697525024414], [0.416161447763443, -0.28448501229286194, 0.10777316987514496, 0.10621733218431473, 0.5707774758338928, -0.0848437026143074, 0.1260300576686859, 0.019404463469982147, -0.2557653486728668, -0.28177109360694885], [0.4161626100540161, -0.28448623418807983, 0.1077713742852211, 0.10621603578329086, 0.5707778334617615, -0.0848420187830925, 0.12603165209293365, 0.019407115876674652, -0.2557664215564728, -0.2817675471305847], [0.41616153717041016, -0.2844865024089813, 0.10777337849140167, 0.10621660947799683, 0.5707785487174988, -0.08484432101249695, 0.12603189051151276, 0.019406452775001526, -0.2557651698589325, -0.2817697823047638], [0.4161618649959564, -0.2844877243041992, 0.10777054727077484, 0.10621602088212967, 0.570779025554657, -0.08484382182359695, 0.1260336935520172, 0.0194083359092474, -0.25576597452163696, -0.28176820278167725], [0.4161621332168579, -0.2844897508621216, 0.10776844620704651, 0.10621532797813416, 0.5707799792289734, -0.08484607189893723, 0.1260366290807724, 0.019411547109484673, -0.25576499104499817, -0.2817673981189728], [0.4161612391471863, -0.28449130058288574, 0.10776813328266144, 0.10621653497219086, 0.5707811117172241, -0.08484935015439987, 0.1260373890399933, 0.019412709400057793, -0.25576409697532654, -0.28176939487457275], [0.41615983843803406, -0.2844879925251007, 0.10777692496776581, 0.10621961206197739, 0.5707802176475525, -0.08485033363103867, 0.126029372215271, 0.019405528903007507, -0.2557637095451355, -0.28177547454833984], [0.4161619544029236, -0.284488320350647, 0.10777144879102707, 0.10621665418148041, 0.5707796216011047, -0.08484256267547607, 0.12603183090686798, 0.019408350810408592, -0.2557681202888489, -0.2817675471305847], [0.4161616861820221, -0.284488320350647, 0.10777336359024048, 0.10621542483568192, 0.5707799196243286, -0.08484562486410141, 0.12603391706943512, 0.019408484920859337, -0.25576502084732056, -0.2817687690258026], [0.41616201400756836, -0.2844924330711365, 0.10776346921920776, 0.10621438175439835, 0.5707814693450928, -0.08484617620706558, 0.12604115903377533, 0.019415412098169327, -0.2557658553123474, -0.28176507353782654], [0.4161608815193176, -0.2844928801059723, 0.10776888579130173, 0.10621665418148041, 0.5707821249961853, -0.08485393971204758, 0.12603861093521118, 0.019414115697145462, -0.2557617425918579, -0.2817714214324951], [0.41615957021713257, -0.28449100255966187, 0.10777232050895691, 0.10621996223926544, 0.5707817077636719, -0.08485179394483566, 0.12603257596492767, 0.019409721717238426, -0.2557644248008728, -0.2817744016647339], [0.416161447763443, -0.2844897210597992, 0.10777386277914047, 0.10621748864650726, 0.5707807540893555, -0.08484682440757751, 0.12603147327899933, 0.019408999010920525, -0.2557663917541504, -0.2817699611186981], [0.41616153717041016, -0.2844913601875305, 0.10776906460523605, 0.10621526837348938, 0.5707816481590271, -0.08484595268964767, 0.1260373294353485, 0.019412649795413017, -0.255766361951828, -0.2817666530609131], [0.41616183519363403, -0.28449511528015137, 0.1077633947134018, 0.10621397197246552, 0.5707831382751465, -0.08485051989555359, 0.12604373693466187, 0.01941836066544056, -0.25576406717300415, -0.28176572918891907], [0.41615793108940125, -0.2844889461994171, 0.10777977108955383, 0.10622142255306244, 0.5707815289497375, -0.08485669642686844, 0.1260291337966919, 0.01940470188856125, -0.2557607889175415, -0.28178107738494873], [0.4161614775657654, -0.2844873070716858, 0.10777352750301361, 0.10621847957372665, 0.5707793235778809, -0.08484185487031937, 0.12602780759334564, 0.01940569281578064, -0.2557695209980011, -0.2817695438861847], [0.4161611795425415, -0.2844826281070709, 0.10778392106294632, 0.10621713846921921, 0.5707775950431824, -0.08484257012605667, 0.12602432072162628, 0.019399182870984077, -0.2557657063007355, -0.2817726731300354], [0.41616010665893555, -0.28447744250297546, 0.10778495669364929, 0.10621852427721024, 0.5707749724388123, -0.08483564108610153, 0.12601956725120544, 0.019391624256968498, -0.2557685673236847, -0.2817741930484772], [0.41616401076316833, -0.2844759523868561, 0.10778031498193741, 0.10621362924575806, 0.5707722902297974, -0.08482911437749863, 0.1260221302509308, 0.019393865019083023, -0.2557697296142578, -0.28176599740982056], [0.4161616861820221, -0.2844713628292084, 0.1077871024608612, 0.10621675103902817, 0.5707705616950989, -0.08483142405748367, 0.12601689994335175, 0.01938663423061371, -0.25576668977737427, -0.28177347779273987], [0.41616374254226685, -0.2844694256782532, 0.10778340697288513, 0.10621561855077744, 0.5707682371139526, -0.08482389152050018, 0.12601545453071594, 0.019385941326618195, -0.25577032566070557, -0.2817685306072235], [0.41616490483283997, -0.2844693064689636, 0.10778212547302246, 0.10621361434459686, 0.5707675814628601, -0.08482331782579422, 0.1260180026292801, 0.019387952983379364, -0.25576919317245483, -0.28176578879356384], [0.41616255044937134, -0.28446510434150696, 0.10779012739658356, 0.1062173992395401, 0.570766270160675, -0.08482491225004196, 0.12601085007190704, 0.019379617646336555, -0.2557676136493683, -0.28177371621131897], [0.4161645770072937, -0.2844618558883667, 0.1077895313501358, 0.10621604323387146, 0.5707637071609497, -0.08481636643409729, 0.12600736320018768, 0.019376862794160843, -0.2557716965675354, -0.2817690670490265], [0.4161660373210907, -0.28446149826049805, 0.1077868714928627, 0.10621296614408493, 0.5707628726959229, -0.08481359481811523, 0.12601099908351898, 0.01937909610569477, -0.2557714879512787, -0.2817644476890564], [0.41616466641426086, -0.28446003794670105, 0.10778900235891342, 0.10621447116136551, 0.5707623958587646, -0.08481589704751968, 0.1260097771883011, 0.019376132637262344, -0.25576937198638916, -0.28176864981651306], [0.4161659777164459, -0.2844604253768921, 0.10778489708900452, 0.10621365904808044, 0.5707617998123169, -0.08481330424547195, 0.12601083517074585, 0.019378097727894783, -0.2557709813117981, -0.2817654609680176], [0.4161665737628937, -0.2844628691673279, 0.1077815517783165, 0.1062125712633133, 0.5707626938819885, -0.08481539785861969, 0.12601493299007416, 0.01938267983496189, -0.2557697892189026, -0.2817634344100952], [0.4161655306816101, -0.2844655513763428, 0.107779860496521, 0.10621374845504761, 0.570764422416687, -0.08481982350349426, 0.12601739168167114, 0.01938547194004059, -0.25576841831207275, -0.281765341758728], [0.41616523265838623, -0.28446757793426514, 0.10777968168258667, 0.10621467977762222, 0.5707656741142273, -0.08482269942760468, 0.12601765990257263, 0.019387148320674896, -0.2557681202888489, -0.28176647424697876], [0.41616523265838623, -0.28447026014328003, 0.10777755826711655, 0.10621451586484909, 0.5707672238349915, -0.08482420444488525, 0.12602011859416962, 0.01939067803323269, -0.2557685077190399, -0.28176525235176086], [0.4161641299724579, -0.28447097539901733, 0.10778050869703293, 0.10621563345193863, 0.5707683563232422, -0.08482756465673447, 0.12601929903030396, 0.019389985129237175, -0.255767285823822, -0.281768262386322], [0.4161640703678131, -0.28447166085243225, 0.10777969658374786, 0.10621566325426102, 0.5707689523696899, -0.08482679724693298, 0.1260194182395935, 0.019390476867556572, -0.2557685375213623, -0.2817675471305847], [0.41616490483283997, -0.28447431325912476, 0.10777586698532104, 0.10621374845504761, 0.5707700252532959, -0.08482756465673447, 0.12602393329143524, 0.019395072013139725, -0.25576841831207275, -0.2817643880844116], [0.4161628484725952, -0.28447362780570984, 0.10778097808361053, 0.10621635615825653, 0.5707706212997437, -0.08483229577541351, 0.12602099776268005, 0.019391736015677452, -0.2557660639286041, -0.2817706763744354], [0.41616466641426086, -0.28447696566581726, 0.10777250677347183, 0.10621414333581924, 0.5707715153694153, -0.0848289430141449, 0.12602610886096954, 0.019398177042603493, -0.25576916337013245, -0.28176382184028625], [0.41616326570510864, -0.2844772934913635, 0.10777805745601654, 0.1062154546380043, 0.5707724690437317, -0.08483570069074631, 0.12602512538433075, 0.019397001713514328, -0.2557651698589325, -0.28176915645599365], [0.41616225242614746, -0.28447669744491577, 0.107778400182724, 0.10621750354766846, 0.5707725286483765, -0.08483400195837021, 0.1260223388671875, 0.01939472183585167, -0.2557673752307892, -0.2817706763744354], [0.416164755821228, -0.2844795882701874, 0.10777270048856735, 0.10621364414691925, 0.570773184299469, -0.08483198285102844, 0.12602798640727997, 0.01940116472542286, -0.25576844811439514, -0.2817634642124176], [0.41616302728652954, -0.28448259830474854, 0.10777126997709274, 0.10621445626020432, 0.5707754492759705, -0.08483855426311493, 0.126032292842865, 0.01940435916185379, -0.2557653486728668, -0.28176647424697876], [0.41616201400756836, -0.2844834625720978, 0.10777295380830765, 0.10621675103902817, 0.5707762241363525, -0.08484206348657608, 0.12603013217449188, 0.019403427839279175, -0.25576475262641907, -0.2817703187465668], [0.41616278886795044, -0.2844851315021515, 0.10777083039283752, 0.1062161773443222, 0.5707769393920898, -0.08484106510877609, 0.12603119015693665, 0.019406259059906006, -0.2557663917541504, -0.2817676067352295], [0.41616198420524597, -0.2844858467578888, 0.10777314007282257, 0.10621659457683563, 0.5707778930664062, -0.08484353870153427, 0.12603135406970978, 0.01940617710351944, -0.2557651996612549, -0.2817693054676056], [0.4161612391471863, -0.2844848930835724, 0.10777541249990463, 0.10621759295463562, 0.5707778334617615, -0.08484326303005219, 0.1260291188955307, 0.01940363645553589, -0.25576573610305786, -0.2817712724208832], [0.4161626994609833, -0.28448641300201416, 0.1077708750963211, 0.10621523857116699, 0.5707780718803406, -0.08484096080064774, 0.12603260576725006, 0.019407309591770172, -0.2557670474052429, -0.28176650404930115], [0.4161612391471863, -0.28448548913002014, 0.1077752485871315, 0.10621675103902817, 0.5707782506942749, -0.08484488725662231, 0.12603075802326202, 0.01940470188856125, -0.2557644546031952, -0.2817712724208832], [0.4161607325077057, -0.2844824492931366, 0.10777895897626877, 0.1062186136841774, 0.5707768201828003, -0.08484203368425369, 0.12602505087852478, 0.01939934678375721, -0.2557661533355713, -0.28177350759506226], [0.4161638021469116, -0.2844850718975067, 0.10776988416910172, 0.10621385276317596, 0.5707768797874451, -0.0848366841673851, 0.12603221833705902, 0.019406825304031372, -0.2557687759399414, -0.28176337480545044], [0.4161621332168579, -0.2844870984554291, 0.10777066648006439, 0.10621459037065506, 0.5707785487174988, -0.08484448492527008, 0.12603570520877838, 0.01940864883363247, -0.25576403737068176, -0.2817677855491638], [0.4161614775657654, -0.28448912501335144, 0.10776766389608383, 0.1062164306640625, 0.5707796216011047, -0.08484655618667603, 0.126036137342453, 0.019410422071814537, -0.2557646632194519, -0.28176915645599365], [0.4161621928215027, -0.28449130058288574, 0.10776706039905548, 0.10621605813503265, 0.5707805752754211, -0.08484853059053421, 0.12603725492954254, 0.019413594156503677, -0.2557643949985504, -0.28176790475845337], [0.4161604642868042, -0.2844913601875305, 0.10777077078819275, 0.10621819645166397, 0.5707815289497375, -0.08485107123851776, 0.1260351985692978, 0.01941167376935482, -0.25576382875442505, -0.2817717492580414], [0.4161611497402191, -0.28449195623397827, 0.10776971280574799, 0.10621719807386398, 0.5707817673683167, -0.08484888076782227, 0.1260356456041336, 0.01941247098147869, -0.25576552748680115, -0.28176936507225037], [0.41616132855415344, -0.2844933569431305, 0.1077679842710495, 0.1062159463763237, 0.5707826018333435, -0.08484990149736404, 0.12603868544101715, 0.01941487565636635, -0.255764901638031, -0.2817680835723877], [0.4161604940891266, -0.28449392318725586, 0.10776840150356293, 0.10621685534715652, 0.5707831978797913, -0.08485261350870132, 0.12603889405727386, 0.01941477134823799, -0.2557637095451355, -0.28177040815353394], [0.416159987449646, -0.284492164850235, 0.10777224600315094, 0.10621850937604904, 0.570782482624054, -0.08485259860754013, 0.12603455781936646, 0.019411204382777214, -0.2557639181613922, -0.281773179769516], [0.41616109013557434, -0.2844921350479126, 0.10776995867490768, 0.10621704906225204, 0.5707821249961853, -0.08484870195388794, 0.12603545188903809, 0.01941247098147869, -0.25576603412628174, -0.2817692160606384], [0.41616010665893555, -0.28448936343193054, 0.10777630656957626, 0.10621803253889084, 0.5707812309265137, -0.08484982699155807, 0.12603168189525604, 0.019407443702220917, -0.25576427578926086, -0.28177326917648315], [0.4161602854728699, -0.28448614478111267, 0.10777746140956879, 0.10621833056211472, 0.5707793831825256, -0.08484460413455963, 0.12602801620960236, 0.019403189420700073, -0.2557666599750519, -0.28177276253700256], [0.4161619544029236, -0.28448426723480225, 0.1077769547700882, 0.10621597617864609, 0.5707777738571167, -0.0848405659198761, 0.12602822482585907, 0.019402677193284035, -0.255767285823822, -0.2817692458629608], [0.41616111993789673, -0.2844814658164978, 0.10777969658374786, 0.10621688514947891, 0.5707764029502869, -0.08484003692865372, 0.1260257512331009, 0.019398638978600502, -0.255766361951828, -0.2817718982696533], [0.41616085171699524, -0.2844752073287964, 0.10778731107711792, 0.10621874034404755, 0.5707731246948242, -0.08483599871397018, 0.12601669132709503, 0.01938926987349987, -0.2557671070098877, -0.281775563955307], [0.41616493463516235, -0.28447768092155457, 0.10777339339256287, 0.10621272027492523, 0.5707724094390869, -0.08482635766267776, 0.12602601945400238, 0.019398437812924385, -0.25577157735824585, -0.2817613482475281], [0.4161633849143982, -0.28447914123535156, 0.1077757328748703, 0.10621321946382523, 0.5707736015319824, -0.08483617007732391, 0.12602953612804413, 0.019399816170334816, -0.25576475262641907, -0.28176695108413696], [0.41616174578666687, -0.2844790816307068, 0.10777527838945389, 0.10621722787618637, 0.5707738399505615, -0.08483762294054031, 0.12602616846561432, 0.019397784024477005, -0.255765825510025, -0.28177136182785034], [0.41616326570510864, -0.2844780683517456, 0.10777835547924042, 0.10621669888496399, 0.5707728862762451, -0.08483556658029556, 0.12602271139621735, 0.019396815448999405, -0.25576695799827576, -0.28176963329315186], [0.4161630868911743, -0.2844788730144501, 0.10777632147073746, 0.10621590167284012, 0.5707736015319824, -0.08483361452817917, 0.1260252594947815, 0.019398527219891548, -0.25576815009117126, -0.2817673087120056], [0.4161626696586609, -0.2844780683517456, 0.10777938365936279, 0.10621591657400131, 0.5707735419273376, -0.08483544737100601, 0.1260242909193039, 0.019396405667066574, -0.25576651096343994, -0.28176963329315186], [0.4161621928215027, -0.28447580337524414, 0.10778123140335083, 0.10621704906225204, 0.5707725286483765, -0.08483357727527618, 0.12602092325687408, 0.01939287595450878, -0.25576749444007874, -0.2817712426185608], [0.41616469621658325, -0.2844787538051605, 0.10777261108160019, 0.10621320456266403, 0.5707727670669556, -0.08483023941516876, 0.12602774798870087, 0.019400106742978096, -0.25576916337013245, -0.281762957572937], [0.4161628484725952, -0.2844800055027008, 0.10777503997087479, 0.10621486604213715, 0.5707741379737854, -0.08483774960041046, 0.12602895498275757, 0.019400404766201973, -0.255764901638031, -0.28176844120025635], [0.41616368293762207, -0.2844851016998291, 0.10776543617248535, 0.10621421784162521, 0.5707761645317078, -0.0848381295800209, 0.12603507936000824, 0.01940823160111904, -0.2557668089866638, -0.2817640006542206], [0.4161617159843445, -0.2844846844673157, 0.10777483880519867, 0.10621735453605652, 0.5707770586013794, -0.08484625071287155, 0.12603023648262024, 0.019404664635658264, -0.2557627260684967, -0.2817722260951996], [0.41616085171699524, -0.28448286652565, 0.10777698457241058, 0.10621949285268784, 0.5707767009735107, -0.0848415419459343, 0.12602511048316956, 0.0194005835801363, -0.2557668089866638, -0.2817729115486145], [0.41616347432136536, -0.28448373079299927, 0.10777431726455688, 0.1062149852514267, 0.5707764625549316, -0.0848373994231224, 0.1260288953781128, 0.019404038786888123, -0.2557681202888489, -0.2817656993865967], [0.41616153717041016, -0.28448349237442017, 0.1077757328748703, 0.1062159463763237, 0.5707771182060242, -0.0848410576581955, 0.1260301023721695, 0.019402706995606422, -0.2557655870914459, -0.2817697525024414], [0.41616103053092957, -0.2844799757003784, 0.10778085887432098, 0.10621804744005203, 0.5707753300666809, -0.08484021574258804, 0.12602341175079346, 0.019396360963582993, -0.255765825510025, -0.2817738652229309], [0.4161635935306549, -0.28448107838630676, 0.10777345299720764, 0.10621477663516998, 0.5707747340202332, -0.08483383804559708, 0.12602747976779938, 0.01940132863819599, -0.25576913356781006, -0.28176531195640564], [0.41616326570510864, -0.2844834625720978, 0.10777205228805542, 0.10621385276317596, 0.570776104927063, -0.0848388820886612, 0.12603244185447693, 0.01940499246120453, -0.2557656764984131, -0.281765878200531], [0.41616183519363403, -0.2844851016998291, 0.10777086019515991, 0.10621610283851624, 0.5707772374153137, -0.0848427265882492, 0.12603279948234558, 0.01940573751926422, -0.25576484203338623, -0.2817692458629608], [0.4161626696586609, -0.2844872772693634, 0.10776890069246292, 0.10621579736471176, 0.5707780718803406, -0.08484365791082382, 0.1260339766740799, 0.019409021362662315, -0.2557654082775116, -0.28176748752593994], [0.4161616861820221, -0.2844886779785156, 0.1077701523900032, 0.10621675103902817, 0.5707793831825256, -0.08484657108783722, 0.12603439390659332, 0.01940987817943096, -0.25576460361480713, -0.2817692458629608], [0.41616129875183105, -0.28448936343193054, 0.1077708899974823, 0.10621719807386398, 0.5707801580429077, -0.08484715968370438, 0.12603402137756348, 0.019409773871302605, -0.25576502084732056, -0.28176993131637573], [0.41616183519363403, -0.2844911217689514, 0.10776831209659576, 0.10621597617864609, 0.5707809925079346, -0.08484721183776855, 0.12603676319122314, 0.019412672147154808, -0.255765438079834, -0.28176766633987427], [0.41616055369377136, -0.2844904959201813, 0.10777221620082855, 0.10621745884418488, 0.5707812905311584, -0.0848502442240715, 0.1260347068309784, 0.01941024325788021, -0.25576382875442505, -0.2817717492580414], [0.41616085171699524, -0.2844899594783783, 0.10777167230844498, 0.10621754825115204, 0.570780873298645, -0.08484771102666855, 0.12603344023227692, 0.019409483298659325, -0.2557656168937683, -0.28177064657211304], [0.4161611795425415, -0.2844889163970947, 0.10777352750301361, 0.1062169149518013, 0.570780336856842, -0.08484700322151184, 0.12603262066841125, 0.019408388063311577, -0.2557653784751892, -0.28177040815353394], [0.4161612391471863, -0.2844890356063843, 0.1077716276049614, 0.10621647536754608, 0.5707802772521973, -0.08484574407339096, 0.12603390216827393, 0.01940898410975933, -0.2557659447193146, -0.2817692458629608], [0.4161609709262848, -0.2844875752925873, 0.10777463018894196, 0.10621701925992966, 0.5707796812057495, -0.0848466232419014, 0.12603165209293365, 0.01940646767616272, -0.25576484203338623, -0.2817714512348175], [0.41616299748420715, -0.28449246287345886, 0.10776232928037643, 0.10621367394924164, 0.5707810521125793, -0.0848442018032074, 0.12604103982448578, 0.019416358321905136, -0.2557670474052429, -0.2817627191543579], [0.41615986824035645, -0.2844906747341156, 0.10777417570352554, 0.10621801018714905, 0.5707815289497375, -0.08485451340675354, 0.1260349303483963, 0.019409960135817528, -0.25576087832450867, -0.2817748188972473], [0.4161599576473236, -0.2844884991645813, 0.10777372866868973, 0.10621986538171768, 0.570780336856842, -0.08484727144241333, 0.1260296255350113, 0.019406326115131378, -0.25576645135879517, -0.28177347779273987], [0.41616207361221313, -0.2844865620136261, 0.10777675360441208, 0.10621659457683563, 0.5707789659500122, -0.08484356850385666, 0.12602892518043518, 0.019405439496040344, -0.25576668977737427, -0.28176942467689514], [0.4161611497402191, -0.2844863533973694, 0.10777398198843002, 0.10621614754199982, 0.5707791447639465, -0.08484228700399399, 0.1260318011045456, 0.01940559595823288, -0.2557668089866638, -0.2817689776420593], [0.4161621034145355, -0.28448688983917236, 0.10777202248573303, 0.10621492564678192, 0.5707787275314331, -0.08484338968992233, 0.12603355944156647, 0.019407056272029877, -0.25576555728912354, -0.2817681133747101], [0.4161619544029236, -0.2844890058040619, 0.10776772350072861, 0.10621528327465057, 0.57077956199646, -0.08484522998332977, 0.12603658437728882, 0.019410794600844383, -0.2557651698589325, -0.28176748752593994], [0.41616079211235046, -0.2844877243041992, 0.10777411609888077, 0.10621799528598785, 0.5707793831825256, -0.08484876900911331, 0.12603163719177246, 0.019406862556934357, -0.2557634711265564, -0.28177300095558167], [0.41616174578666687, -0.28448858857154846, 0.10777018219232559, 0.10621701925992966, 0.57077956199646, -0.0848441794514656, 0.12603291869163513, 0.01940913312137127, -0.255766898393631, -0.2817683815956116], [0.4161624312400818, -0.2844911515712738, 0.1077679693698883, 0.10621476173400879, 0.5707808136940002, -0.08484651148319244, 0.12603795528411865, 0.019413482397794724, -0.2557651698589325, -0.2817660868167877], [0.4161592721939087, -0.2844879925251007, 0.10777691006660461, 0.1062193214893341, 0.5707805156707764, -0.08485092967748642, 0.12603074312210083, 0.01940542459487915, -0.2557629942893982, -0.2817760109901428], [0.41616231203079224, -0.2844892144203186, 0.10776897519826889, 0.10621607303619385, 0.5707798004150391, -0.08484289050102234, 0.12603366374969482, 0.019409945234656334, -0.2557680308818817, -0.2817665934562683], [0.4161626696586609, -0.2844928205013275, 0.10776549577713013, 0.10621361434459686, 0.5707816481590271, -0.08484774827957153, 0.12604118883609772, 0.019416432827711105, -0.2557646334171295, -0.2817646563053131], [0.4161595106124878, -0.284492552280426, 0.10777013748884201, 0.10621824115514755, 0.5707826018333435, -0.08485426008701324, 0.12603749334812164, 0.019412396475672722, -0.25576215982437134, -0.28177371621131897], [0.4161604642868042, -0.28449052572250366, 0.1077728196978569, 0.10621900856494904, 0.5707812309265137, -0.0848502516746521, 0.12603192031383514, 0.019409267231822014, -0.25576502084732056, -0.2817729711532593], [0.41616156697273254, -0.28449058532714844, 0.10777132958173752, 0.10621669888496399, 0.5707811117172241, -0.08484648168087006, 0.1260339468717575, 0.019411010667681694, -0.25576654076576233, -0.2817683517932892], [0.4161621034145355, -0.28449466824531555, 0.1077638640999794, 0.10621395707130432, 0.5707829594612122, -0.08484824746847153, 0.12604272365570068, 0.019418032839894295, -0.25576549768447876, -0.28176435828208923], [0.41616010665893555, -0.2844955623149872, 0.1077670007944107, 0.1062166839838028, 0.5707840919494629, -0.08485623449087143, 0.12604168057441711, 0.019416887313127518, -0.25576165318489075, -0.2817715108394623], [0.41616007685661316, -0.2844957709312439, 0.10776656121015549, 0.10621843487024307, 0.5707840323448181, -0.0848550945520401, 0.12603893876075745, 0.01941658928990364, -0.25576382875442505, -0.281771719455719], [0.4161604046821594, -0.2844947278499603, 0.10777060687541962, 0.10621827095746994, 0.570783793926239, -0.08485425263643265, 0.12603643536567688, 0.019414883106946945, -0.25576406717300415, -0.281771719455719], [0.4161596894264221, -0.2844927906990051, 0.10777324438095093, 0.10621865093708038, 0.5707833170890808, -0.08485187590122223, 0.12603425979614258, 0.019411420449614525, -0.25576508045196533, -0.28177258372306824], [0.41616111993789673, -0.28449276089668274, 0.10777021199464798, 0.10621611773967743, 0.5707827806472778, -0.08484873920679092, 0.12603668868541718, 0.019412923604249954, -0.25576603412628174, -0.2817685306072235], [0.4161599278450012, -0.2844902575016022, 0.1077747493982315, 0.10621753334999084, 0.5707817673683167, -0.08485068380832672, 0.12603354454040527, 0.019408663734793663, -0.255763977766037, -0.28177306056022644], [0.4161612391471863, -0.2844904363155365, 0.1077699139714241, 0.1062164455652237, 0.5707810521125793, -0.08484639972448349, 0.12603488564491272, 0.0194105114787817, -0.2557664215564728, -0.2817688286304474], [0.41616082191467285, -0.28448861837387085, 0.1077747642993927, 0.10621704906225204, 0.570780336856842, -0.08484836667776108, 0.12603232264518738, 0.01940765231847763, -0.2557642459869385, -0.28177177906036377], [0.41616010665893555, -0.2844852805137634, 0.10777800530195236, 0.10621882975101471, 0.5707787871360779, -0.08484494686126709, 0.12602722644805908, 0.01940223015844822, -0.25576597452163696, -0.28177380561828613], [0.4161619544029236, -0.28448307514190674, 0.10777805745601654, 0.10621659457683563, 0.5707769393920898, -0.08483944088220596, 0.1260262280702591, 0.01940097101032734, -0.2557676434516907, -0.2817697525024414], [0.4161606431007385, -0.28447747230529785, 0.10778607428073883, 0.10621828585863113, 0.5707746148109436, -0.08483802527189255, 0.12601958215236664, 0.019392317160964012, -0.2557666003704071, -0.2817748188972473], [0.4161626994609833, -0.2844747006893158, 0.10778255015611649, 0.10621602088212967, 0.5707720518112183, -0.08482924103736877, 0.12601904571056366, 0.019391020759940147, -0.25577011704444885, -0.2817690968513489], [0.41616377234458923, -0.2844734489917755, 0.10778168588876724, 0.10621395707130432, 0.570770800113678, -0.08482840657234192, 0.12602096796035767, 0.019391482695937157, -0.2557685375213623, -0.2817671597003937], [0.41616371273994446, -0.28447479009628296, 0.10777654498815536, 0.10621397197246552, 0.5707709789276123, -0.08482902497053146, 0.12602445483207703, 0.019394319504499435, -0.2557680904865265, -0.28176626563072205], [0.4161648154258728, -0.28447917103767395, 0.10776980221271515, 0.10621269047260284, 0.5707724690437317, -0.08483239263296127, 0.12603065371513367, 0.019401872530579567, -0.255766898393631, -0.2817632257938385], [0.4161634147167206, -0.28448355197906494, 0.10776782780885696, 0.10621462017297745, 0.5707752108573914, -0.08483990281820297, 0.1260339915752411, 0.019406631588935852, -0.25576454401016235, -0.2817661166191101], [0.4161634147167206, -0.2844896912574768, 0.10776225477457047, 0.10621485114097595, 0.570778489112854, -0.08484447002410889, 0.12603938579559326, 0.019414346665143967, -0.2557646632194519, -0.28176450729370117], [0.41616091132164, -0.2844904959201813, 0.10777037590742111, 0.10621839016675949, 0.5707804560661316, -0.08485198765993118, 0.1260351836681366, 0.01941153220832348, -0.25576215982437134, -0.2817723751068115], [0.4161611497402191, -0.28449180722236633, 0.10776841640472412, 0.10621815174818039, 0.5707814693450928, -0.08484850823879242, 0.1260351985692978, 0.01941271498799324, -0.2557659149169922, -0.28176945447921753], [0.4161614775657654, -0.284492552280426, 0.10777021199464798, 0.1062164157629013, 0.5707821846008301, -0.08484987914562225, 0.12603677809238434, 0.019413601607084274, -0.2557646930217743, -0.2817687392234802], [0.416159063577652, -0.2844887971878052, 0.10777752846479416, 0.10621953755617142, 0.5707813501358032, -0.08485071361064911, 0.1260303109884262, 0.019405722618103027, -0.25576406717300415, -0.28177574276924133], [0.4161618649959564, -0.28448837995529175, 0.10777220129966736, 0.10621623694896698, 0.5707798600196838, -0.08484309166669846, 0.12603196501731873, 0.019407844170928, -0.2557678520679474, -0.28176793456077576], [0.41616183519363403, -0.2844889163970947, 0.10777158290147781, 0.1062149703502655, 0.5707800984382629, -0.08484555035829544, 0.12603522837162018, 0.019409706816077232, -0.25576522946357727, -0.28176790475845337], [0.41616109013557434, -0.28449010848999023, 0.10776901990175247, 0.10621613264083862, 0.5707806348800659, -0.08484748005867004, 0.12603659927845, 0.019410839304327965, -0.2557647228240967, -0.2817693054676056], [0.4161609411239624, -0.2844890356063843, 0.10777271538972855, 0.10621753334999084, 0.5707801580429077, -0.08484891057014465, 0.12603294849395752, 0.01940852217376232, -0.25576409697532654, -0.2817719280719757], [0.4161611497402191, -0.2844885587692261, 0.10777238011360168, 0.10621757805347443, 0.5707799196243286, -0.08484599739313126, 0.1260320097208023, 0.01940813474357128, -0.25576603412628174, -0.2817703187465668], [0.4161609411239624, -0.28448623418807983, 0.10777716338634491, 0.1062176525592804, 0.570779025554657, -0.08484534174203873, 0.12602904438972473, 0.019404388964176178, -0.255765438079834, -0.2817719876766205], [0.4161616563796997, -0.28448596596717834, 0.10777361690998077, 0.10621623694896698, 0.5707785487174988, -0.08484148234128952, 0.1260307878255844, 0.019405268132686615, -0.255767285823822, -0.2817685902118683], [0.4161611497402191, -0.28448307514190674, 0.10777925699949265, 0.10621701925992966, 0.570777177810669, -0.08484282344579697, 0.1260269731283188, 0.019400576129555702, -0.2557651996612549, -0.2817723751068115], [0.41616159677505493, -0.2844812273979187, 0.10777757316827774, 0.10621707886457443, 0.5707758665084839, -0.084837906062603, 0.12602542340755463, 0.019398966804146767, -0.25576770305633545, -0.2817705273628235], [0.4161631166934967, -0.2844812572002411, 0.10777583718299866, 0.10621476173400879, 0.5707752108573914, -0.0848364382982254, 0.12602762877941132, 0.019400889053940773, -0.2557673454284668, -0.2817671000957489], [0.41616180539131165, -0.2844802439212799, 0.1077776625752449, 0.10621637105941772, 0.570775032043457, -0.08483830094337463, 0.1260264366865158, 0.019398661330342293, -0.25576603412628174, -0.28177058696746826], [0.4161626994609833, -0.2844799757003784, 0.10777615010738373, 0.1062159612774849, 0.5707743763923645, -0.08483617007732391, 0.12602598965168, 0.019398974254727364, -0.25576722621917725, -0.2817687690258026], [0.4161626994609833, -0.2844795286655426, 0.10777720808982849, 0.1062159314751625, 0.5707741975784302, -0.08483639359474182, 0.12602561712265015, 0.01939859427511692, -0.25576674938201904, -0.2817690372467041], [0.4161626696586609, -0.28447964787483215, 0.10777638107538223, 0.1062159314751625, 0.570774257183075, -0.08483584970235825, 0.12602604925632477, 0.019398780539631844, -0.2557671368122101, -0.2817686200141907], [0.4161626696586609, -0.2844793200492859, 0.10777734220027924, 0.1062159463763237, 0.5707740783691406, -0.08483616262674332, 0.12602552771568298, 0.019398221746087074, -0.25576674938201904, -0.2817690968513489], [0.41616272926330566, -0.28447937965393066, 0.10777648538351059, 0.10621587187051773, 0.5707740187644958, -0.08483550697565079, 0.12602581083774567, 0.019398504868149757, -0.25576716661453247, -0.2817685604095459], [0.41616255044937134, -0.2844783663749695, 0.10777876526117325, 0.10621631145477295, 0.5707736015319824, -0.08483583480119705, 0.12602411210536957, 0.019396696239709854, -0.25576668977737427, -0.28176993131637573], [0.4161618947982788, -0.2844749093055725, 0.10778379440307617, 0.10621777176856995, 0.5707721710205078, -0.08483380824327469, 0.126018688082695, 0.019391072914004326, -0.2557673156261444, -0.2817726731300354], [0.41616392135620117, -0.28447476029396057, 0.10777915269136429, 0.10621486604213715, 0.5707712769508362, -0.0848279818892479, 0.12602123618125916, 0.019393306225538254, -0.25576984882354736, -0.28176623582839966], [0.416163831949234, -0.2844756245613098, 0.10777802020311356, 0.10621389746665955, 0.5707715749740601, -0.08483061194419861, 0.12602455914020538, 0.019395191222429276, -0.2557674050331116, -0.281766414642334], [0.4161624014377594, -0.28447407484054565, 0.1077810674905777, 0.10621657967567444, 0.5707710981369019, -0.08483265340328217, 0.12602084875106812, 0.019391460344195366, -0.25576654076576233, -0.28177133202552795], [0.41616347432136536, -0.28447237610816956, 0.10778194665908813, 0.1062164306640625, 0.5707697868347168, -0.08482882380485535, 0.12601785361766815, 0.01938980631530285, -0.2557685375213623, -0.2817695736885071], [0.4161648750305176, -0.28447484970092773, 0.10777576267719269, 0.1062135249376297, 0.5707705616950989, -0.08482685685157776, 0.12602399289608002, 0.019395533949136734, -0.25576937198638916, -0.28176358342170715], [0.41616252064704895, -0.2844730019569397, 0.10778331756591797, 0.1062164157629013, 0.5707706212997437, -0.08483271300792694, 0.12601996958255768, 0.01939023844897747, -0.2557656466960907, -0.28177183866500854], [0.4161628186702728, -0.2844700813293457, 0.10778467357158661, 0.10621759295463562, 0.5707688331604004, -0.08482726663351059, 0.12601463496685028, 0.019385911524295807, -0.2557690739631653, -0.28177157044410706], [0.41616424918174744, -0.2844671905040741, 0.10778746008872986, 0.10621572285890579, 0.5707669854164124, -0.08482278138399124, 0.12601238489151, 0.019383393228054047, -0.25576990842819214, -0.28176891803741455], [0.41616392135620117, -0.28446486592292786, 0.10778794437646866, 0.10621534287929535, 0.5707658529281616, -0.08481983840465546, 0.12601187825202942, 0.019380757585167885, -0.2557702958583832, -0.2817687690258026], [0.4161653220653534, -0.2844647765159607, 0.10778430849313736, 0.10621332377195358, 0.57076495885849, -0.08481768518686295, 0.12601438164710999, 0.019382411614060402, -0.2557704448699951, -0.2817654609680176], [0.4161652624607086, -0.28446584939956665, 0.10778164118528366, 0.10621324926614761, 0.5707651376724243, -0.08481986820697784, 0.12601689994335175, 0.01938474178314209, -0.2557690143585205, -0.28176558017730713], [0.4161640405654907, -0.2844639718532562, 0.10778678208589554, 0.10621614754199982, 0.5707646012306213, -0.0848221629858017, 0.12601183354854584, 0.019380437210202217, -0.2557678818702698, -0.28177082538604736], [0.41616687178611755, -0.28446897864341736, 0.10777416080236435, 0.10621213912963867, 0.5707658529281616, -0.08481749147176743, 0.12602084875106812, 0.01939087174832821, -0.25577157735824585, -0.2817598879337311], [0.4161640703678131, -0.2844688892364502, 0.1077834963798523, 0.10621508955955505, 0.5707672238349915, -0.08482813835144043, 0.12601836025714874, 0.019387468695640564, -0.25576522946357727, -0.2817697823047638], [0.41616353392601013, -0.28446856141090393, 0.10778156667947769, 0.1062171533703804, 0.5707672238349915, -0.08482423424720764, 0.12601545453071594, 0.019385889172554016, -0.25576940178871155, -0.2817695736885071], [0.41616523265838623, -0.2844679057598114, 0.10778423398733139, 0.1062147468328476, 0.5707665681838989, -0.0848228856921196, 0.12601493299007416, 0.019386030733585358, -0.25576913356781006, -0.2817668318748474], [0.4161648452281952, -0.2844708263874054, 0.10777729749679565, 0.10621355473995209, 0.5707681775093079, -0.08482258021831512, 0.12602151930332184, 0.01939103566110134, -0.2557697892189026, -0.28176379203796387], [0.41616374254226685, -0.2844698429107666, 0.10778343677520752, 0.10621534287929535, 0.5707681179046631, -0.08482837677001953, 0.12601816654205322, 0.01938749849796295, -0.25576627254486084, -0.28177008032798767], [0.4161642789840698, -0.2844710052013397, 0.10777805745601654, 0.10621534287929535, 0.5707682967185974, -0.08482475578784943, 0.12601938843727112, 0.019390134140849113, -0.2557695806026459, -0.28176653385162354], [0.416164368391037, -0.2844705879688263, 0.10778257995843887, 0.10621513426303864, 0.5707682967185974, -0.08482732623815536, 0.12601810693740845, 0.019388994202017784, -0.2557674050331116, -0.281768262386322], [0.41616424918174744, -0.2844727039337158, 0.10777678340673447, 0.10621467977762222, 0.5707694292068481, -0.084825798869133, 0.12602196633815765, 0.019392548128962517, -0.255769282579422, -0.2817654609680176], [0.41616445779800415, -0.2844741940498352, 0.10777775198221207, 0.10621414333581924, 0.5707702040672302, -0.0848299190402031, 0.12602348625659943, 0.019394230097532272, -0.2557668089866638, -0.28176647424697876], [0.41616368293762207, -0.28447669744491577, 0.10777396708726883, 0.10621507465839386, 0.5707716345787048, -0.08483157306909561, 0.1260260045528412, 0.019397322088479996, -0.2557673752307892, -0.2817665636539459], [0.4161640703678131, -0.28447937965393066, 0.10777299106121063, 0.10621463507413864, 0.5707730054855347, -0.08483488857746124, 0.12602819502353668, 0.019400710240006447, -0.25576627254486084, -0.2817661166191101], [0.41616296768188477, -0.28448188304901123, 0.10777171701192856, 0.10621573776006699, 0.5707748532295227, -0.08483812212944031, 0.1260300725698471, 0.01940319687128067, -0.2557659447193146, -0.28176745772361755], [0.4161624312400818, -0.28448250889778137, 0.1077745109796524, 0.10621675103902817, 0.5707756280899048, -0.08484052121639252, 0.1260284185409546, 0.019402379170060158, -0.2557654082775116, -0.281769722700119], [0.4161626696586609, -0.2844841182231903, 0.10777199268341064, 0.10621608793735504, 0.5707765817642212, -0.08483956009149551, 0.12603040039539337, 0.019404835999011993, -0.2557668089866638, -0.28176748752593994], [0.4161611497402191, -0.2844812273979187, 0.10778062045574188, 0.10621809214353561, 0.5707759857177734, -0.08484198898077011, 0.12602461874485016, 0.019398460164666176, -0.2557649612426758, -0.28177353739738464], [0.4161638617515564, -0.28448551893234253, 0.10776680707931519, 0.10621371865272522, 0.5707768797874451, -0.08483552187681198, 0.1260339617729187, 0.019408104941248894, -0.2557694613933563, -0.2817620635032654], [0.41616228222846985, -0.28448694944381714, 0.10777179896831512, 0.10621466487646103, 0.5707784295082092, -0.08484605699777603, 0.12603528797626495, 0.019408440217375755, -0.25576287508010864, -0.28176867961883545], [0.4161601662635803, -0.28448572754859924, 0.10777389258146286, 0.10621914267539978, 0.5707784295082092, -0.0848461166024208, 0.12602968513965607, 0.019404083490371704, -0.25576475262641907, -0.2817738652229309], [0.41616231203079224, -0.2844841182231903, 0.10777653008699417, 0.10621731728315353, 0.5707770586013794, -0.08484157919883728, 0.1260266751050949, 0.019402876496315002, -0.25576677918434143, -0.28177013993263245], [0.4161624312400818, -0.28448566794395447, 0.10777197778224945, 0.10621528327465057, 0.570777952671051, -0.08483972400426865, 0.1260320097208023, 0.019406475126743317, -0.2557675242424011, -0.28176626563072205], [0.4161609709262848, -0.2844833433628082, 0.10777880996465683, 0.10621712356805801, 0.5707773566246033, -0.08484375476837158, 0.1260279417037964, 0.019400985911488533, -0.2557643949985504, -0.2817728817462921], [0.4161614179611206, -0.2844808101654053, 0.10777835547924042, 0.10621772706508636, 0.5707756876945496, -0.08483842760324478, 0.12602435052394867, 0.019398080185055733, -0.2557675540447235, -0.2817716598510742], [0.41616296768188477, -0.28447940945625305, 0.10777895897626877, 0.10621564835309982, 0.5707743763923645, -0.0848354920744896, 0.1260242909193039, 0.019397851079702377, -0.25576770305633545, -0.2817685604095459], [0.41616228222846985, -0.2844786047935486, 0.10777844488620758, 0.10621585696935654, 0.5707740783691406, -0.0848349779844284, 0.12602487206459045, 0.019396919757127762, -0.2557674050331116, -0.2817692160606384], [0.4161626696586609, -0.28447720408439636, 0.10777965188026428, 0.1062159314751625, 0.5707730054855347, -0.08483435213565826, 0.12602315843105316, 0.01939507946372032, -0.2557671070098877, -0.28176984190940857], [0.41616374254226685, -0.28447893261909485, 0.1077738031744957, 0.10621435195207596, 0.5707732439041138, -0.08483260124921799, 0.12602722644805908, 0.019399458542466164, -0.25576820969581604, -0.28176552057266235], [0.41616249084472656, -0.28447818756103516, 0.10777871310710907, 0.10621613264083862, 0.5707734227180481, -0.08483706414699554, 0.12602484226226807, 0.01939685270190239, -0.2557653784751892, -0.28177058696746826], [0.4161624014377594, -0.2844770550727844, 0.10777883976697922, 0.10621722787618637, 0.5707727670669556, -0.08483406156301498, 0.12602218985557556, 0.019394945353269577, -0.2557676434516907, -0.28177040815353394], [0.4161626100540161, -0.28447335958480835, 0.10778545588254929, 0.10621735453605652, 0.5707710981369019, -0.08483194559812546, 0.12601691484451294, 0.019389500841498375, -0.2557676434516907, -0.2817719578742981], [0.4161640703678131, -0.28447410464286804, 0.10777835547924042, 0.10621444135904312, 0.570770800113678, -0.08482614159584045, 0.1260216385126114, 0.019393060356378555, -0.2557704448699951, -0.2817651331424713], [0.4161643981933594, -0.2844761312007904, 0.10777615010738373, 0.10621289163827896, 0.5707715153694153, -0.08483049273490906, 0.1260264664888382, 0.019396644085645676, -0.2557671070098877, -0.28176501393318176], [0.41616180539131165, -0.2844736874103546, 0.10778219997882843, 0.10621759295463562, 0.5707710981369019, -0.08483429253101349, 0.12601996958255768, 0.019390499219298363, -0.25576555728912354, -0.28177350759506226], [0.4161643087863922, -0.2844740152359009, 0.10777803510427475, 0.10621560364961624, 0.5707702040672302, -0.08482784032821655, 0.12602029740810394, 0.019392963498830795, -0.25576961040496826, -0.2817666828632355], [0.416164755821228, -0.2844771146774292, 0.1077742725610733, 0.10621318966150284, 0.5707718133926392, -0.08483010530471802, 0.1260269582271576, 0.019398750737309456, -0.25576794147491455, -0.28176355361938477], [0.41616255044937134, -0.2844780385494232, 0.10777650028467178, 0.10621582716703415, 0.5707730650901794, -0.08483598381280899, 0.1260264366865158, 0.019397418946027756, -0.2557654082775116, -0.28176960349082947], [0.4161621928215027, -0.2844754457473755, 0.10778162628412247, 0.10621803253889084, 0.5707719326019287, -0.08483487367630005, 0.126019686460495, 0.0193923469632864, -0.2557666301727295, -0.2817727029323578], [0.41616442799568176, -0.2844772934913635, 0.10777503997087479, 0.10621456056833267, 0.5707721710205078, -0.08482933789491653, 0.12602446973323822, 0.019397731870412827, -0.2557697594165802, -0.28176432847976685], [0.4161628484725952, -0.28447699546813965, 0.10777971148490906, 0.10621537268161774, 0.5707727670669556, -0.08483478426933289, 0.12602438032627106, 0.019395750015974045, -0.2557658851146698, -0.2817693054676056], [0.4161625802516937, -0.28447672724723816, 0.10777763277292252, 0.10621634125709534, 0.5707725286483765, -0.08483295142650604, 0.12602344155311584, 0.01939508691430092, -0.25576770305633545, -0.28176936507225037], [0.41616392135620117, -0.2844773530960083, 0.10777679085731506, 0.10621477663516998, 0.5707722902297974, -0.08483265340328217, 0.12602466344833374, 0.019397106021642685, -0.25576749444007874, -0.2817668318748474], [0.4161635935306549, -0.284480482339859, 0.1077716276049614, 0.10621427744626999, 0.5707740187644958, -0.08483442664146423, 0.12602989375591278, 0.019402043893933296, -0.25576719641685486, -0.2817651927471161], [0.41616153717041016, -0.28447768092155457, 0.10778185725212097, 0.10621802508831024, 0.5707734823226929, -0.08483953028917313, 0.1260223239660263, 0.01939469203352928, -0.25576433539390564, -0.28177422285079956], [0.41616255044937134, -0.28447574377059937, 0.10778038948774338, 0.10621772706508636, 0.5707721710205078, -0.0848316177725792, 0.12601938843727112, 0.019392913207411766, -0.2557693123817444, -0.2817702293395996], [0.4161633849143982, -0.28447309136390686, 0.10778491199016571, 0.10621584206819534, 0.570770800113678, -0.08482969552278519, 0.12601777911186218, 0.019389977678656578, -0.255768358707428, -0.28176942467689514], [0.4161628186702728, -0.2844710052013397, 0.10778411477804184, 0.1062159463763237, 0.570769727230072, -0.08482658863067627, 0.12601730227470398, 0.01938743144273758, -0.2557693123817444, -0.2817695438861847], [0.4161643981933594, -0.2844703495502472, 0.10778212547302246, 0.1062140017747879, 0.5707685351371765, -0.08482471108436584, 0.1260184347629547, 0.0193882267922163, -0.25576916337013245, -0.28176677227020264], [0.4161641597747803, -0.2844708561897278, 0.10777981579303741, 0.10621423274278641, 0.5707685351371765, -0.08482575416564941, 0.12602023780345917, 0.01938975416123867, -0.2557683289051056, -0.2817668616771698], [0.4161646068096161, -0.284472793340683, 0.10777688026428223, 0.10621409118175507, 0.570769190788269, -0.08482728898525238, 0.1260225921869278, 0.019392868503928185, -0.25576791167259216, -0.2817658483982086], [0.4161645174026489, -0.28447604179382324, 0.10777348279953003, 0.10621410608291626, 0.5707708597183228, -0.08483041822910309, 0.12602628767490387, 0.019397463649511337, -0.25576722621917725, -0.2817651033401489], [0.41616326570510864, -0.2844772934913635, 0.10777604579925537, 0.10621600598096848, 0.5707721710205078, -0.08483488857746124, 0.1260252594947815, 0.019397322088479996, -0.25576576590538025, -0.28176888823509216], [0.41616275906562805, -0.2844768166542053, 0.10777857899665833, 0.10621724277734756, 0.5707724094390869, -0.08483439683914185, 0.12602229416370392, 0.01939532533288002, -0.25576695799827576, -0.281770259141922], [0.4161634147167206, -0.2844768166542053, 0.10777847468852997, 0.1062159463763237, 0.5707724094390869, -0.08483217656612396, 0.12602274119853973, 0.019395742565393448, -0.2557681202888489, -0.2817678451538086], [0.4161624312400818, -0.28447455167770386, 0.10778312385082245, 0.10621675103902817, 0.5707717537879944, -0.0848325788974762, 0.12601979076862335, 0.01939149759709835, -0.25576722621917725, -0.28177106380462646], [0.4161628186702728, -0.2844717800617218, 0.10778439790010452, 0.1062166839838028, 0.5707701444625854, -0.08482836931943893, 0.12601672112941742, 0.01938796043395996, -0.25576892495155334, -0.2817705571651459], [0.41616523265838623, -0.28447428345680237, 0.10777565836906433, 0.1062125414609909, 0.5707702040672302, -0.08482515066862106, 0.12602412700653076, 0.01939491555094719, -0.2557700574398041, -0.2817624509334564], [0.4161636531352997, -0.28447598218917847, 0.10777627676725388, 0.10621395707130432, 0.5707715153694153, -0.084832563996315, 0.12602640688419342, 0.01939627155661583, -0.25576573610305786, -0.28176721930503845], [0.41616278886795044, -0.28447604179382324, 0.1077771782875061, 0.1062166839838028, 0.5707716345787048, -0.08483395725488663, 0.12602326273918152, 0.019394833594560623, -0.2557663917541504, -0.2817702889442444], [0.41616353392601013, -0.28447550535202026, 0.10777921229600906, 0.10621653497219086, 0.570771336555481, -0.08483220636844635, 0.12602102756500244, 0.019394230097532272, -0.2557676434516907, -0.2817690372467041], [0.41616305708885193, -0.28447455167770386, 0.10778126865625381, 0.10621650516986847, 0.570771336555481, -0.08483090996742249, 0.1260201334953308, 0.01939248852431774, -0.2557680904865265, -0.2817692756652832], [0.4161633253097534, -0.28447356820106506, 0.10778170078992844, 0.10621567815542221, 0.570770800113678, -0.08482919633388519, 0.1260198950767517, 0.019391177222132683, -0.25576844811439514, -0.28176864981651306], [0.4161640703678131, -0.2844744622707367, 0.10777770727872849, 0.10621412843465805, 0.570770800113678, -0.08482836186885834, 0.12602317333221436, 0.019393932074308395, -0.25576862692832947, -0.281765878200531], [0.4161628782749176, -0.28447285294532776, 0.10778236389160156, 0.10621613264083862, 0.5707703232765198, -0.08483140915632248, 0.12601977586746216, 0.019390298053622246, -0.25576648116111755, -0.28177085518836975], [0.41616448760032654, -0.2844752371311188, 0.1077745258808136, 0.10621429234743118, 0.5707706809043884, -0.08482759445905685, 0.12602411210536957, 0.01939569041132927, -0.25576940178871155, -0.28176453709602356], [0.4161648154258728, -0.28447961807250977, 0.10777086019515991, 0.10621273517608643, 0.5707728862762451, -0.08483331650495529, 0.126030832529068, 0.019402431324124336, -0.2557663917541504, -0.2817632853984833], [0.4161614775657654, -0.2844788730144501, 0.10777776688337326, 0.1062178909778595, 0.5707738399505615, -0.08483997732400894, 0.12602537870407104, 0.01939735934138298, -0.2557641267776489, -0.2817731201648712], [0.41616302728652954, -0.28447848558425903, 0.10777701437473297, 0.10621727257966995, 0.570773184299469, -0.08483456820249557, 0.12602287530899048, 0.01939718797802925, -0.2557680904865265, -0.2817692160606384], [0.41616326570510864, -0.2844783365726471, 0.10777845978736877, 0.10621567815542221, 0.5707734227180481, -0.0848340392112732, 0.12602414190769196, 0.019397560507059097, -0.2557676136493683, -0.2817677855491638], [0.4161626100540161, -0.28447842597961426, 0.10777760297060013, 0.10621567815542221, 0.570773720741272, -0.08483433723449707, 0.12602537870407104, 0.019397225230932236, -0.2557673454284668, -0.2817685306072235], [0.41616305708885193, -0.28447839617729187, 0.10777701437473297, 0.10621531307697296, 0.5707734227180481, -0.08483467251062393, 0.1260254979133606, 0.01939745619893074, -0.25576695799827576, -0.2817683815956116], [0.4161629378795624, -0.28447863459587097, 0.10777624696493149, 0.10621566325426102, 0.5707734227180481, -0.0848350077867508, 0.12602569162845612, 0.019398042932152748, -0.25576695799827576, -0.28176847100257874], [0.4161624014377594, -0.2844770550727844, 0.1077801063656807, 0.1062169000506401, 0.5707728862762451, -0.08483538776636124, 0.1260223090648651, 0.0193948857486248, -0.2557665705680847, -0.2817709743976593], [0.41616323590278625, -0.2844769358634949, 0.10777802020311356, 0.10621587187051773, 0.5707725286483765, -0.08483194559812546, 0.1260230541229248, 0.019395682960748672, -0.25576847791671753, -0.281767874956131], [0.4161638021469116, -0.2844785749912262, 0.1077752634882927, 0.10621414333581924, 0.5707731246948242, -0.08483292162418365, 0.1260269582271576, 0.019398944452404976, -0.2557675242424011, -0.28176575899124146], [0.4161626398563385, -0.28447920083999634, 0.10777580738067627, 0.10621560364961624, 0.5707738399505615, -0.08483637869358063, 0.12602704763412476, 0.019398728385567665, -0.25576597452163696, -0.2817689776420593], [0.4161634147167206, -0.2844814360141754, 0.10777181386947632, 0.10621504485607147, 0.570774495601654, -0.08483638614416122, 0.12602941691875458, 0.019402453675866127, -0.255766898393631, -0.28176644444465637], [0.4161624014377594, -0.28448161482810974, 0.10777547210454941, 0.10621649026870728, 0.5707752108573914, -0.08484000712633133, 0.1260278970003128, 0.01940138079226017, -0.2557651996612549, -0.28176993131637573], [0.4161624014377594, -0.2844824194908142, 0.10777389258146286, 0.10621659457683563, 0.5707756876945496, -0.08483850210905075, 0.12602822482585907, 0.019402192905545235, -0.25576692819595337, -0.28176864981651306], [0.41616255044937134, -0.28448250889778137, 0.10777535289525986, 0.10621597617864609, 0.5707759261131287, -0.08483944833278656, 0.1260283887386322, 0.01940225251019001, -0.2557661533355713, -0.28176870942115784], [0.41616129875183105, -0.28448012471199036, 0.10777987539768219, 0.10621783137321472, 0.5707752704620361, -0.0848393663764, 0.12602414190769196, 0.01939743384718895, -0.2557661235332489, -0.28177255392074585], [0.4161628484725952, -0.28447943925857544, 0.10777752846479416, 0.10621597617864609, 0.570774257183075, -0.0848345160484314, 0.126024529337883, 0.019397923722863197, -0.25576838850975037, -0.28176820278167725], [0.41616296768188477, -0.2844794988632202, 0.10777688026428223, 0.10621492564678192, 0.570774257183075, -0.0848352238535881, 0.12602657079696655, 0.019398899748921394, -0.2557671368122101, -0.2817676365375519], [0.4161626398563385, -0.28448015451431274, 0.10777515918016434, 0.10621535778045654, 0.570774495601654, -0.08483636379241943, 0.12602771818637848, 0.019399704411625862, -0.2557666301727295, -0.281768262386322], [0.4161631166934967, -0.2844814658164978, 0.10777319967746735, 0.10621517896652222, 0.5707748532295227, -0.08483747392892838, 0.1260291337966919, 0.019401999190449715, -0.2557663917541504, -0.28176745772361755], [0.4161616265773773, -0.28447943925857544, 0.10777956247329712, 0.10621783137321472, 0.570774495601654, -0.08483951538801193, 0.12602387368679047, 0.019397150725126266, -0.2557653784751892, -0.2817727029323578], [0.4161617159843445, -0.2844753861427307, 0.1077844649553299, 0.10621864348649979, 0.5707725286483765, -0.0848340392112732, 0.12601743638515472, 0.01939099095761776, -0.2557680606842041, -0.2817731499671936], [0.41616255044937134, -0.28447026014328003, 0.10778944939374924, 0.10621736943721771, 0.5707697868347168, -0.0848274677991867, 0.1260126531124115, 0.019384704530239105, -0.25576961040496826, -0.2817719280719757], [0.4161624014377594, -0.28446295857429504, 0.10779604315757751, 0.10621744394302368, 0.570766031742096, -0.08482096344232559, 0.12600572407245636, 0.01937497779726982, -0.2557704746723175, -0.28177374601364136], [0.41616588830947876, -0.28446221351623535, 0.1077861487865448, 0.10621228814125061, 0.5707637071609497, -0.08481161296367645, 0.1260114461183548, 0.019379006698727608, -0.2557735741138458, -0.2817631959915161], [0.4161672294139862, -0.2844676971435547, 0.10777471959590912, 0.10620877146720886, 0.5707653164863586, -0.08481677621603012, 0.126024067401886, 0.019390230998396873, -0.25576961040496826, -0.2817583978176117], [0.4161651134490967, -0.28447356820106506, 0.1077699288725853, 0.10621221363544464, 0.5707685351371765, -0.08482874929904938, 0.1260291337966919, 0.019396718591451645, -0.2557651400566101, -0.28176409006118774], [0.4161633551120758, -0.28447455167770386, 0.10777626186609268, 0.10621756315231323, 0.5707697868347168, -0.08483505249023438, 0.12602229416370392, 0.01939437910914421, -0.2557643949985504, -0.2817715108394623], [0.4161648154258728, -0.28447869420051575, 0.10777097940444946, 0.10621576756238937, 0.5707718729972839, -0.08483131974935532, 0.12602610886096954, 0.019401000812649727, -0.2557687759399414, -0.2817641496658325], [0.41616466641426086, -0.28448525071144104, 0.10776644200086594, 0.10621295124292374, 0.5707759857177734, -0.08483763784170151, 0.1260361671447754, 0.01940985582768917, -0.2557661235332489, -0.2817615866661072], [0.41616132855415344, -0.28448763489723206, 0.10776951909065247, 0.1062166839838028, 0.5707787275314331, -0.08484716713428497, 0.12603579461574554, 0.01940900646150112, -0.25576284527778625, -0.2817702889442444], [0.41616153717041016, -0.28448817133903503, 0.10777047276496887, 0.1062178760766983, 0.570779025554657, -0.08484675735235214, 0.12603259086608887, 0.01940855197608471, -0.25576484203338623, -0.2817706763744354], [0.4161611497402191, -0.28448644280433655, 0.10777603089809418, 0.10621843487024307, 0.5707787871360779, -0.08484575897455215, 0.12602874636650085, 0.019405215978622437, -0.2557653784751892, -0.28177204728126526], [0.4161607027053833, -0.2844829857349396, 0.1077805906534195, 0.10621862858533859, 0.5707774758338928, -0.08484175056219101, 0.126024529337883, 0.01939956285059452, -0.2557668387889862, -0.28177303075790405], [0.4161622226238251, -0.28448110818862915, 0.1077788695693016, 0.1062159463763237, 0.5707759261131287, -0.08483639359474182, 0.12602530419826508, 0.019398855045437813, -0.25576844811439514, -0.2817688286304474], [0.41616183519363403, -0.28447821736335754, 0.10778158158063889, 0.10621607303619385, 0.5707743763923645, -0.08483618497848511, 0.12602335214614868, 0.01939518377184868, -0.2557668685913086, -0.2817710340023041], [0.41616201400756836, -0.2844747006893158, 0.10778337717056274, 0.10621694475412369, 0.5707721710205078, -0.08483259379863739, 0.1260191798210144, 0.01939070038497448, -0.25576791167259216, -0.2817718982696533], [0.4161645174026489, -0.28447622060775757, 0.10777561366558075, 0.10621341317892075, 0.5707715749740601, -0.08482816070318222, 0.12602463364601135, 0.0193963460624218, -0.25576964020729065, -0.2817640006542206], [0.4161643981933594, -0.28448089957237244, 0.10776947438716888, 0.10621224343776703, 0.5707737803459167, -0.08483409136533737, 0.12603293359279633, 0.019403882324695587, -0.2557663917541504, -0.2817629277706146], [0.41616085171699524, -0.28447842597961426, 0.10778022557497025, 0.10621862858533859, 0.5707738399505615, -0.0848417803645134, 0.1260237842798233, 0.019395653158426285, -0.25576311349868774, -0.28177565336227417], [0.4161631166934967, -0.2844778895378113, 0.1077769547700882, 0.10621745884418488, 0.5707727670669556, -0.08483283221721649, 0.12602174282073975, 0.019396420568227768, -0.255769282579422, -0.2817687690258026], [0.41616398096084595, -0.28447890281677246, 0.10777701437473297, 0.10621442645788193, 0.5707734227180481, -0.08483319729566574, 0.12602584064006805, 0.019399160519242287, -0.25576773285865784, -0.2817656695842743], [0.41616156697273254, -0.2844773530960083, 0.10778049379587173, 0.1062169149518013, 0.5707736015319824, -0.08483589440584183, 0.12602348625659943, 0.019394677132368088, -0.25576624274253845, -0.2817716598510742], [0.41616350412368774, -0.2844773828983307, 0.10777691006660461, 0.10621519386768341, 0.570772647857666, -0.08483213186264038, 0.1260240525007248, 0.019396331161260605, -0.25576838850975037, -0.281767338514328], [0.41616371273994446, -0.2844791114330292, 0.10777434706687927, 0.10621418803930283, 0.5707733631134033, -0.08483394235372543, 0.12602777779102325, 0.01939988322556019, -0.2557670772075653, -0.2817659378051758], [0.41616290807724, -0.28448110818862915, 0.10777289420366287, 0.1062152236700058, 0.5707745552062988, -0.08483738452196121, 0.12602956593036652, 0.019401760771870613, -0.2557659149169922, -0.28176766633987427], [0.4161622226238251, -0.28448066115379333, 0.10777635127305984, 0.10621701925992966, 0.5707747340202332, -0.0848393514752388, 0.12602634727954865, 0.019399704411625862, -0.25576549768447876, -0.281770795583725], [0.4161614179611206, -0.2844766676425934, 0.10778380185365677, 0.10621900856494904, 0.5707732439041138, -0.08483676612377167, 0.12601877748966217, 0.0193925928324461, -0.2557668089866638, -0.2817740738391876], [0.41616353392601013, -0.28447583317756653, 0.10778016597032547, 0.10621563345193863, 0.5707721710205078, -0.08482913672924042, 0.12602074444293976, 0.01939379796385765, -0.25577017664909363, -0.28176698088645935], [0.41616302728652954, -0.2844740152359009, 0.10778298228979111, 0.10621502995491028, 0.5707714557647705, -0.08483074605464935, 0.1260208636522293, 0.019391467794775963, -0.2557675242424011, -0.28176915645599365], [0.41616344451904297, -0.28447437286376953, 0.10777802020311356, 0.1062147244811058, 0.5707709789276123, -0.08482876420021057, 0.12602268159389496, 0.019392941147089005, -0.25576862692832947, -0.28176721930503845], [0.41616442799568176, -0.28447622060775757, 0.10777520388364792, 0.10621361434459686, 0.5707712769508362, -0.08483085036277771, 0.12602576613426208, 0.019396867603063583, -0.255767285823822, -0.2817654609680176], [0.41616198420524597, -0.28447386622428894, 0.10778260976076126, 0.10621781647205353, 0.5707710385322571, -0.08483435213565826, 0.1260194629430771, 0.019390856847167015, -0.2557656764984131, -0.28177326917648315], [0.4161635935306549, -0.28447267413139343, 0.10778144747018814, 0.1062166690826416, 0.5707699060440063, -0.0848277285695076, 0.1260175257921219, 0.01939011923968792, -0.2557695806026459, -0.2817687690258026], [0.41616398096084595, -0.28447166085243225, 0.1077829971909523, 0.10621501505374908, 0.5707694888114929, -0.08482685685157776, 0.1260184496641159, 0.01938963495194912, -0.2557687759399414, -0.2817676067352295], [0.41616401076316833, -0.28447291254997253, 0.10777842998504639, 0.10621412098407745, 0.5707699060440063, -0.0848264992237091, 0.12602214515209198, 0.019391989335417747, -0.25576889514923096, -0.28176596760749817], [0.4161635637283325, -0.2844720184803009, 0.10778147727251053, 0.10621523857116699, 0.5707694888114929, -0.08482960611581802, 0.12602001428604126, 0.019390089437365532, -0.2557668089866638, -0.28176942467689514], [0.4161622226238251, -0.2844669818878174, 0.107789546251297, 0.10621869564056396, 0.5707674026489258, -0.0848272517323494, 0.12601053714752197, 0.01938125677406788, -0.25576797127723694, -0.28177475929260254], [0.4161648750305176, -0.28446486592292786, 0.10778723657131195, 0.10621542483568192, 0.5707653164863586, -0.08481772989034653, 0.1260102093219757, 0.019381018355488777, -0.25577208399772644, -0.2817670702934265], [0.41616517305374146, -0.28446435928344727, 0.10778620839118958, 0.10621321946382523, 0.5707650184631348, -0.0848175585269928, 0.12601377069950104, 0.01938186027109623, -0.2557702958583832, -0.28176552057266235], [0.4161636233329773, -0.2844608426094055, 0.10779109597206116, 0.10621588677167892, 0.5707634687423706, -0.08481881767511368, 0.12600859999656677, 0.01937536522746086, -0.2557688057422638, -0.2817716598510742], [0.41616594791412354, -0.2844600975513458, 0.10778636485338211, 0.10621403157711029, 0.5707618594169617, -0.08481255918741226, 0.1260090321302414, 0.019377049058675766, -0.2557719349861145, -0.28176572918891907], [0.4161664545536041, -0.28446149826049805, 0.10778418928384781, 0.1062125414609909, 0.5707622766494751, -0.0848141685128212, 0.12601296603679657, 0.019380422309041023, -0.255770206451416, -0.2817639112472534], [0.41616445779800415, -0.2844598889350891, 0.10778898745775223, 0.1062157079577446, 0.5707621574401855, -0.08481734991073608, 0.12600892782211304, 0.01937592402100563, -0.2557685673236847, -0.281770259141922], [0.4161660969257355, -0.28446000814437866, 0.10778576135635376, 0.10621441155672073, 0.570761501789093, -0.08481281250715256, 0.12600912153720856, 0.019377443939447403, -0.2557715177536011, -0.28176572918891907], [0.4161677360534668, -0.28446587920188904, 0.10777561366558075, 0.10621044784784317, 0.570763885974884, -0.08481442928314209, 0.12602035701274872, 0.019388487562537193, -0.25577080249786377, -0.2817584276199341], [0.4161641299724579, -0.2844669222831726, 0.10778217017650604, 0.1062149852514267, 0.5707658529281616, -0.08482582122087479, 0.12601816654205322, 0.019385740160942078, -0.2557653486728668, -0.2817695438861847], [0.4161645770072937, -0.28446781635284424, 0.10777996480464935, 0.10621629655361176, 0.570766031742096, -0.08482294529676437, 0.12601585686206818, 0.01938634365797043, -0.25576919317245483, -0.28176799416542053], [0.41616788506507874, -0.28447696566581726, 0.1077653244137764, 0.10620994865894318, 0.5707696676254272, -0.08482356369495392, 0.12603135406970978, 0.01940315216779709, -0.2557699382305145, -0.2817552089691162], [0.41616103053092957, -0.28447476029396057, 0.1077837347984314, 0.10621853917837143, 0.5707717537879944, -0.08484041690826416, 0.12602177262306213, 0.01939200423657894, -0.2557612657546997, -0.28177669644355774], [0.41616320610046387, -0.2844744324684143, 0.10777776688337326, 0.10621825605630875, 0.5707706809043884, -0.08482874929904938, 0.12601852416992188, 0.019392160698771477, -0.2557704746723175, -0.28176918625831604], [0.4161647856235504, -0.28447380661964417, 0.10778224468231201, 0.10621451586484909, 0.5707704424858093, -0.08482909947633743, 0.1260198950767517, 0.019392861053347588, -0.2557681202888489, -0.281766414642334], [0.41616296768188477, -0.2844753563404083, 0.10777707397937775, 0.10621501505374908, 0.5707717537879944, -0.08482926338911057, 0.12602432072162628, 0.019394520670175552, -0.2557685971260071, -0.2817668318748474], [0.41616424918174744, -0.28447675704956055, 0.10777594149112701, 0.10621374845504761, 0.5707718133926392, -0.08483221381902695, 0.12602598965168, 0.01939687505364418, -0.25576668977737427, -0.28176629543304443], [0.41616329550743103, -0.2844790816307068, 0.10777247697114944, 0.10621510446071625, 0.5707731246948242, -0.08483469486236572, 0.12602828443050385, 0.019400151446461678, -0.2557666301727295, -0.28176695108413696], [0.41616344451904297, -0.2844812870025635, 0.10777267068624496, 0.10621541738510132, 0.5707743167877197, -0.08483777940273285, 0.1260291039943695, 0.01940234936773777, -0.2557657063007355, -0.28176742792129517], [0.4161617159843445, -0.28448012471199036, 0.10777808725833893, 0.10621802508831024, 0.5707746744155884, -0.08483956009149551, 0.1260247379541397, 0.01939847506582737, -0.25576555728912354, -0.28177207708358765], [0.41616353392601013, -0.2844822108745575, 0.10777240246534348, 0.1062152087688446, 0.5707752108573914, -0.08483537286520004, 0.12602877616882324, 0.019402973353862762, -0.25576841831207275, -0.2817654311656952], [0.41616296768188477, -0.28448450565338135, 0.10777167230844498, 0.10621439665555954, 0.5707767605781555, -0.0848403200507164, 0.12603294849395752, 0.019406020641326904, -0.25576549768447876, -0.281766414642334], [0.41616153717041016, -0.2844853401184082, 0.10777205228805542, 0.1062166690826416, 0.5707775950431824, -0.08484365791082382, 0.1260320246219635, 0.019405417144298553, -0.25576475262641907, -0.2817702293395996], [0.4161624014377594, -0.2844865620136261, 0.10777069628238678, 0.10621623694896698, 0.570777952671051, -0.0848432183265686, 0.12603230774402618, 0.019407466053962708, -0.25576579570770264, -0.281768262386322], [0.4161614775657654, -0.2844862937927246, 0.10777393728494644, 0.10621727257966995, 0.5707784295082092, -0.08484487235546112, 0.12603090703487396, 0.019405998289585114, -0.25576505064964294, -0.28177061676979065], [0.41616126894950867, -0.2844850420951843, 0.10777576267719269, 0.10621760785579681, 0.5707780718803406, -0.08484308421611786, 0.12602871656417847, 0.019403591752052307, -0.2557661235332489, -0.28177112340927124], [0.41616198420524597, -0.284484326839447, 0.10777539759874344, 0.10621631145477295, 0.570777416229248, -0.08484082669019699, 0.12602895498275757, 0.019403405487537384, -0.2557668089866638, -0.28176912665367126], [0.4161619246006012, -0.28448405861854553, 0.10777488350868225, 0.10621591657400131, 0.5707772374153137, -0.08484074473381042, 0.12602977454662323, 0.0194033682346344, -0.255766361951828, -0.2817690670490265], [0.4161616563796997, -0.28448283672332764, 0.10777644068002701, 0.10621660947799683, 0.5707765817642212, -0.08484092354774475, 0.12602795660495758, 0.01940138079226017, -0.2557659447193146, -0.2817706763744354], [0.416162371635437, -0.28448283672332764, 0.1077745109796524, 0.10621599107980728, 0.5707761645317078, -0.08483888953924179, 0.12602852284908295, 0.01940229721367359, -0.25576695799827576, -0.2817685604095459], [0.4161621034145355, -0.2844821512699127, 0.10777635127305984, 0.10621625185012817, 0.5707759857177734, -0.08483976125717163, 0.12602771818637848, 0.01940120942890644, -0.25576603412628174, -0.2817698121070862], [0.4161624014377594, -0.2844826877117157, 0.10777399688959122, 0.10621588677167892, 0.5707759857177734, -0.08483856916427612, 0.12602898478507996, 0.01940244622528553, -0.25576692819595337, -0.28176820278167725], [0.41616290807724, -0.28448450565338135, 0.10777156800031662, 0.10621488094329834, 0.5707767009735107, -0.08484002202749252, 0.1260320246219635, 0.019405581057071686, -0.2557661235332489, -0.281766802072525], [0.4161612391471863, -0.28448328375816345, 0.10777632147073746, 0.10621747374534607, 0.5707768201828003, -0.08484315127134323, 0.12602829933166504, 0.01940190978348255, -0.2557646930217743, -0.2817722260951996], [0.41616225242614746, -0.28448301553726196, 0.1077747493982315, 0.10621682554483414, 0.5707762241363525, -0.08483923971652985, 0.12602759897708893, 0.019402185454964638, -0.25576725602149963, -0.28176915645599365], [0.41616326570510864, -0.28448548913002014, 0.10777045786380768, 0.10621432214975357, 0.5707772374153137, -0.08483950793743134, 0.12603311240673065, 0.019407249987125397, -0.2557668387889862, -0.2817651331424713], [0.41616201400756836, -0.28448790311813354, 0.10776904970407486, 0.1062152236700058, 0.5707789063453674, -0.08484482765197754, 0.12603607773780823, 0.01940958760678768, -0.2557644844055176, -0.2817678153514862], [0.4161604940891266, -0.28448575735092163, 0.10777595639228821, 0.10621872544288635, 0.5707784295082092, -0.08484742045402527, 0.12602916359901428, 0.019403904676437378, -0.25576379895210266, -0.28177428245544434], [0.4161621034145355, -0.2844855785369873, 0.10777321457862854, 0.10621712356805801, 0.5707778334617615, -0.08484120666980743, 0.12602916359901428, 0.019405215978622437, -0.2557676136493683, -0.2817687392234802], [0.41616177558898926, -0.2844843864440918, 0.10777702927589417, 0.10621646046638489, 0.5707777142524719, -0.0848422423005104, 0.12602880597114563, 0.01940327137708664, -0.255765825510025, -0.2817700505256653], [0.41616058349609375, -0.2844807207584381, 0.1077812984585762, 0.10621827095746994, 0.5707761645317078, -0.08484027534723282, 0.12602365016937256, 0.019396867603063583, -0.2557664215564728, -0.28177374601364136], [0.4161628782749176, -0.28447937965393066, 0.10777819156646729, 0.10621557384729385, 0.5707743763923645, -0.08483415096998215, 0.1260242611169815, 0.019397545605897903, -0.255768746137619, -0.2817680239677429], [0.41616296768188477, -0.28447943925857544, 0.10777675360441208, 0.10621460527181625, 0.570774257183075, -0.08483496308326721, 0.1260269284248352, 0.019398869946599007, -0.25576716661453247, -0.28176742792129517], [0.4161636531352997, -0.2844833433628082, 0.10776861757040024, 0.10621338337659836, 0.5707756280899048, -0.08483659476041794, 0.12603355944156647, 0.01940557360649109, -0.255766898393631, -0.2817641496658325], [0.4161622226238251, -0.28448450565338135, 0.10777205228805542, 0.1062159463763237, 0.5707767009735107, -0.08484381437301636, 0.12603220343589783, 0.01940535008907318, -0.25576362013816833, -0.28176987171173096], [0.4161607325077057, -0.28448164463043213, 0.10777883976697922, 0.10621970146894455, 0.5707759857177734, -0.08484289050102234, 0.12602399289608002, 0.019398869946599007, -0.25576525926589966, -0.2817747890949249], [0.4161631166934967, -0.2844814658164978, 0.10777636617422104, 0.10621640086174011, 0.5707752704620361, -0.08483567833900452, 0.1260252594947815, 0.01940060593187809, -0.25576892495155334, -0.281767338514328], [0.41616299748420715, -0.28448307514190674, 0.10777381807565689, 0.10621420294046402, 0.5707763433456421, -0.08483745902776718, 0.12603087723255157, 0.01940375566482544, -0.25576698780059814, -0.28176581859588623], [0.41616132855415344, -0.2844819724559784, 0.10777686536312103, 0.10621663928031921, 0.5707762241363525, -0.0848412960767746, 0.12602825462818146, 0.019400300458073616, -0.2557649314403534, -0.2817716598510742], [0.4161621630191803, -0.2844805121421814, 0.10777702927589417, 0.10621701925992966, 0.5707749724388123, -0.08483809977769852, 0.12602511048316956, 0.019398795440793037, -0.25576695799827576, -0.28177058696746826], [0.4161633849143982, -0.28448185324668884, 0.10777358710765839, 0.10621491074562073, 0.5707751512527466, -0.0848361924290657, 0.1260286569595337, 0.01940249092876911, -0.2557676434516907, -0.2817660868167877], [0.4161623418331146, -0.28448283672332764, 0.10777408629655838, 0.10621554404497147, 0.570776104927063, -0.08483979851007462, 0.12603016197681427, 0.019402936100959778, -0.2557656168937683, -0.2817685306072235], [0.4161616861820221, -0.2844817042350769, 0.10777672380208969, 0.10621725767850876, 0.5707757472991943, -0.08484048396348953, 0.12602674961090088, 0.0194000992923975, -0.2557657063007355, -0.2817714214324951], [0.41616255044937134, -0.28448113799095154, 0.10777629166841507, 0.10621650516986847, 0.5707752108573914, -0.08483748883008957, 0.12602604925632477, 0.01940016634762287, -0.2557673156261444, -0.2817690372467041], [0.41616252064704895, -0.2844808101654053, 0.10777698457241058, 0.1062159463763237, 0.5707750916481018, -0.08483730256557465, 0.12602657079696655, 0.019399860873818398, -0.2557668685913086, -0.2817688286304474], [0.4161626100540161, -0.284481406211853, 0.10777480900287628, 0.10621543973684311, 0.5707752704620361, -0.08483710139989853, 0.12602831423282623, 0.01940104551613331, -0.25576698780059814, -0.28176793456077576], [0.4161626100540161, -0.2844819724559784, 0.10777439177036285, 0.1062154695391655, 0.5707754492759705, -0.08483865112066269, 0.12602896988391876, 0.019401879981160164, -0.2557660937309265, -0.28176841139793396], [0.4161614179611206, -0.28447940945625305, 0.10778004676103592, 0.10621793568134308, 0.5707746148109436, -0.0848393514752388, 0.12602350115776062, 0.019396696239709854, -0.2557657063007355, -0.28177300095558167], [0.41616225242614746, -0.2844763994216919, 0.10778230428695679, 0.10621762275695801, 0.5707728862762451, -0.08483368903398514, 0.12601947784423828, 0.01939300075173378, -0.255768358707428, -0.28177130222320557], [0.4161626100540161, -0.2844725549221039, 0.10778634995222092, 0.10621678084135056, 0.5707709193229675, -0.08482969552278519, 0.1260162889957428, 0.019388271495699883, -0.255768746137619, -0.28177106380462646], [0.4161633849143982, -0.2844703793525696, 0.10778458416461945, 0.10621525347232819, 0.5707692503929138, -0.08482497185468674, 0.12601660192012787, 0.019386813044548035, -0.2557699680328369, -0.28176844120025635], [0.4161642789840698, -0.2844696342945099, 0.10778260976076126, 0.10621385276317596, 0.5707681775093079, -0.0848241075873375, 0.1260182410478592, 0.01938745379447937, -0.25576910376548767, -0.2817668616771698], [0.41616353392601013, -0.2844676375389099, 0.10778495669364929, 0.10621560364961624, 0.5707671642303467, -0.08482491225004196, 0.1260153204202652, 0.01938433200120926, -0.2557680904865265, -0.28177011013031006], [0.4161642789840698, -0.2844659090042114, 0.10778539627790451, 0.1062157079577446, 0.5707657933235168, -0.08482153713703156, 0.12601284682750702, 0.019382620230317116, -0.25576961040496826, -0.28176888823509216], [0.416164755821228, -0.28446459770202637, 0.1077863797545433, 0.10621501505374908, 0.5707650184631348, -0.08481944352388382, 0.1260121464729309, 0.01938151754438877, -0.25576990842819214, -0.2817677855491638], [0.41616538166999817, -0.2844657897949219, 0.10778209567070007, 0.10621343553066254, 0.5707652568817139, -0.08481831848621368, 0.12601593136787415, 0.019384481012821198, -0.2557702958583832, -0.2817647457122803], [0.4161660969257355, -0.2844703793525696, 0.10777468979358673, 0.10621165484189987, 0.5707671046257019, -0.08482183516025543, 0.12602369487285614, 0.01939222775399685, -0.2557687759399414, -0.28176167607307434], [0.4161638617515564, -0.284471720457077, 0.10777834057807922, 0.1062152236700058, 0.5707685947418213, -0.08483000099658966, 0.12602192163467407, 0.019391370937228203, -0.25576546788215637, -0.2817690372467041], [0.4161635637283325, -0.2844712734222412, 0.10778069496154785, 0.10621733963489532, 0.5707685947418213, -0.0848287045955658, 0.12601742148399353, 0.019389284774661064, -0.2557677626609802, -0.281770259141922], [0.4161652624607086, -0.2844740152359009, 0.10777609050273895, 0.10621412843465805, 0.5707696676254272, -0.08482606709003448, 0.12602241337299347, 0.019394878298044205, -0.2557695209980011, -0.28176361322402954], [0.41616368293762207, -0.28447583317756653, 0.10777710378170013, 0.10621460527181625, 0.5707715153694153, -0.08483166247606277, 0.12602519989013672, 0.019395973533391953, -0.2557665705680847, -0.28176695108413696], [0.4161635637283325, -0.28447818756103516, 0.10777348279953003, 0.10621495544910431, 0.570772647857666, -0.08483327925205231, 0.12602725625038147, 0.01939871348440647, -0.25576701760292053, -0.28176674246788025], [0.41616320610046387, -0.2844788432121277, 0.10777579247951508, 0.10621587187051773, 0.570773184299469, -0.08483640849590302, 0.12602607905864716, 0.01939878799021244, -0.255765825510025, -0.2817688584327698], [0.41616398096084595, -0.28448352217674255, 0.10776757448911667, 0.1062142476439476, 0.5707753300666809, -0.08483610302209854, 0.12603288888931274, 0.01940649002790451, -0.2557675242424011, -0.28176355361938477], [0.41616106033325195, -0.28448086977005005, 0.10778070986270905, 0.10621840506792068, 0.5707755088806152, -0.0848439559340477, 0.12602505087852478, 0.019398408010601997, -0.2557630240917206, -0.2817749083042145], [0.4161616563796997, -0.2844785153865814, 0.10777957737445831, 0.10621875524520874, 0.5707741379737854, -0.08483515679836273, 0.12602093815803528, 0.019395355135202408, -0.25576892495155334, -0.28177157044410706], [0.4161643385887146, -0.2844795286655426, 0.10777639597654343, 0.10621364414691925, 0.5707738399505615, -0.08483229577541351, 0.12602637708187103, 0.019399793818593025, -0.2557687759399414, -0.28176426887512207], [0.4161614179611206, -0.28447774052619934, 0.10778063535690308, 0.10621653497219086, 0.5707740187644958, -0.08483688533306122, 0.12602438032627106, 0.01939517632126808, -0.2557656764984131, -0.2817718982696533], [0.41616326570510864, -0.2844778001308441, 0.10777626186609268, 0.10621541738510132, 0.5707728862762451, -0.08483276516199112, 0.1260245144367218, 0.01939668133854866, -0.2557682394981384, -0.28176772594451904], [0.4161641001701355, -0.28448033332824707, 0.10777247697114944, 0.10621374845504761, 0.5707738399505615, -0.08483447879552841, 0.126029372215271, 0.01940193958580494, -0.2557670772075653, -0.28176483511924744], [0.4161630868911743, -0.28448402881622314, 0.10776904970407486, 0.10621457546949387, 0.5707759857177734, -0.08483953773975372, 0.1260336935520172, 0.019406266510486603, -0.255765438079834, -0.2817661166191101], [0.41616180539131165, -0.2844843864440918, 0.10777336359024048, 0.10621722787618637, 0.5707768201828003, -0.08484406024217606, 0.12603029608726501, 0.019404344260692596, -0.25576406717300415, -0.281771183013916], [0.41616225242614746, -0.2844853401184082, 0.10777188837528229, 0.10621707886457443, 0.5707772970199585, -0.08484166860580444, 0.12603023648262024, 0.019405722618103027, -0.2557665705680847, -0.2817687392234802], [0.4161623418331146, -0.28448641300201416, 0.10777247697114944, 0.1062159463763237, 0.5707781910896301, -0.08484284579753876, 0.12603208422660828, 0.019407115876674652, -0.255765825510025, -0.28176799416542053], [0.41616103053092957, -0.28448548913002014, 0.10777520388364792, 0.10621736943721771, 0.5707783102989197, -0.08484428375959396, 0.12603016197681427, 0.019404292106628418, -0.25576522946357727, -0.2817714512348175], [0.41616249084472656, -0.28448688983917236, 0.10777048766613007, 0.1062154695391655, 0.5707784295082092, -0.08484179526567459, 0.1260329931974411, 0.01940770447254181, -0.2557668387889862, -0.28176695108413696], [0.4161621332168579, -0.28448882699012756, 0.10776932537555695, 0.10621516406536102, 0.57077956199646, -0.08484546095132828, 0.12603606283664703, 0.019410504028201103, -0.25576481223106384, -0.28176748752593994], [0.41616109013557434, -0.2844896912574768, 0.10776981711387634, 0.1062169149518013, 0.5707802772521973, -0.08484827727079391, 0.1260354220867157, 0.01941034011542797, -0.2557642161846161, -0.28177034854888916], [0.41616126894950867, -0.28448978066444397, 0.10777091979980469, 0.10621733218431473, 0.570780336856842, -0.0848480835556984, 0.12603387236595154, 0.019410042092204094, -0.2557648718357086, -0.28177037835121155], [0.41616103053092957, -0.2844892144203186, 0.10777274519205093, 0.10621748864650726, 0.5707803964614868, -0.08484737575054169, 0.126032754778862, 0.01940888725221157, -0.25576528906822205, -0.2817706763744354], [0.41616111993789673, -0.28448861837387085, 0.10777312517166138, 0.10621698945760727, 0.5707801580429077, -0.08484605699777603, 0.12603259086608887, 0.019408075138926506, -0.25576576590538025, -0.28177008032798767], [0.416161447763443, -0.28448864817619324, 0.10777200758457184, 0.1062161922454834, 0.5707800388336182, -0.08484550565481186, 0.1260336935520172, 0.019408633932471275, -0.25576573610305786, -0.28176912665367126], [0.4161621034145355, -0.28449124097824097, 0.10776667296886444, 0.10621485114097595, 0.570780873298645, -0.08484639972448349, 0.12603852152824402, 0.019413400441408157, -0.25576549768447876, -0.2817663550376892], [0.4161612391471863, -0.28449326753616333, 0.10776644200086594, 0.1062159463763237, 0.5707821846008301, -0.08485153317451477, 0.12603998184204102, 0.01941538229584694, -0.25576329231262207, -0.28176894783973694], [0.4161597192287445, -0.28449150919914246, 0.10777252167463303, 0.10621926188468933, 0.570781946182251, -0.08485326915979385, 0.12603382766246796, 0.019410451874136925, -0.2557631731033325, -0.2817744314670563], [0.4161607623100281, -0.28448981046676636, 0.10777371376752853, 0.10621846467256546, 0.5707809329032898, -0.08484768122434616, 0.12603114545345306, 0.019408581778407097, -0.25576627254486084, -0.2817714214324951], [0.4161609709262848, -0.2844878137111664, 0.10777617990970612, 0.1062171533703804, 0.5707801580429077, -0.08484547585248947, 0.1260305494070053, 0.019406288862228394, -0.2557661533355713, -0.2817707359790802], [0.41616010665893555, -0.28448331356048584, 0.10778138786554337, 0.10621827095746994, 0.5707780718803406, -0.08484332263469696, 0.12602533400058746, 0.019399205222725868, -0.25576603412628174, -0.28177422285079956], [0.4161616265773773, -0.2844794690608978, 0.10778158158063889, 0.10621701925992966, 0.5707752704620361, -0.08483648300170898, 0.1260223090648651, 0.019395705312490463, -0.2557682991027832, -0.28177130222320557], [0.416162371635437, -0.28447631001472473, 0.10778281837701797, 0.10621590167284012, 0.5707731246948242, -0.08483301103115082, 0.1260208934545517, 0.019392970949411392, -0.25576820969581604, -0.2817701995372772], [0.4161624610424042, -0.2844732701778412, 0.10778390616178513, 0.10621610283851624, 0.5707712173461914, -0.08483016490936279, 0.12601862847805023, 0.01938948594033718, -0.25576838850975037, -0.28177064657211304], [0.4161643981933594, -0.28447413444519043, 0.10777752846479416, 0.10621355473995209, 0.5707705616950989, -0.08482690900564194, 0.1260228157043457, 0.01939353719353676, -0.25576940178871155, -0.28176501393318176], [0.4161642789840698, -0.28447696566581726, 0.10777375847101212, 0.10621314495801926, 0.5707716941833496, -0.08483128994703293, 0.12602777779102325, 0.01939825899899006, -0.2557668685913086, -0.2817648649215698], [0.4161641299724579, -0.28448235988616943, 0.10776670277118683, 0.10621345043182373, 0.570774257183075, -0.08483617007732391, 0.1260339766740799, 0.019405759871006012, -0.25576600432395935, -0.28176382184028625], [0.4161626696586609, -0.28448498249053955, 0.10776972770690918, 0.10621613264083862, 0.5707764029502869, -0.08484385162591934, 0.12603315711021423, 0.01940702646970749, -0.255763441324234, -0.28176894783973694], [0.41616031527519226, -0.28448137640953064, 0.10778070986270905, 0.10622081905603409, 0.5707759261131287, -0.0848442018032074, 0.12602250277996063, 0.019397946074604988, -0.25576457381248474, -0.2817765772342682], [0.4161631166934967, -0.284481018781662, 0.10777686536312103, 0.10621671378612518, 0.5707750916481018, -0.08483429253101349, 0.12602415680885315, 0.01939987577497959, -0.25576990842819214, -0.2817670404911041], [0.41616255044937134, -0.28448015451431274, 0.1077793538570404, 0.10621502995491028, 0.5707752108573914, -0.08483648300170898, 0.12602640688419342, 0.019398817792534828, -0.2557668387889862, -0.2817683815956116], [0.41616249084472656, -0.2844812572002411, 0.10777358710765839, 0.10621480643749237, 0.5707753300666809, -0.08483613282442093, 0.12602950632572174, 0.01940091885626316, -0.255767285823822, -0.281767338514328], [0.41616296768188477, -0.28448182344436646, 0.10777395218610764, 0.10621504485607147, 0.5707752108573914, -0.08483916521072388, 0.1260293871164322, 0.0194020364433527, -0.25576546788215637, -0.2817683815956116], [0.4161611795425415, -0.2844790816307068, 0.10778019577264786, 0.10621862858533859, 0.570774495601654, -0.08483967185020447, 0.12602277100086212, 0.019396211951971054, -0.25576555728912354, -0.2817738652229309], [0.4161631166934967, -0.2844782769680023, 0.107778400182724, 0.1062164455652237, 0.5707734227180481, -0.08483315259218216, 0.12602262198925018, 0.019396644085645676, -0.25576895475387573, -0.28176820278167725], [0.41616398096084595, -0.2844809591770172, 0.10777293890714645, 0.10621330887079239, 0.5707745552062988, -0.08483365178108215, 0.12602993845939636, 0.01940232701599598, -0.25576794147491455, -0.28176385164260864], [0.4161616861820221, -0.2844802439212799, 0.10777746140956879, 0.10621635615825653, 0.5707749724388123, -0.08483988046646118, 0.1260274052619934, 0.019398817792534828, -0.25576457381248474, -0.2817714810371399], [0.41616255044937134, -0.28447994589805603, 0.10777556896209717, 0.10621672868728638, 0.570774257183075, -0.08483652770519257, 0.1260254681110382, 0.019398855045437813, -0.255767285823822, -0.28176945447921753], [0.41616231203079224, -0.28447726368904114, 0.1077820360660553, 0.10621731728315353, 0.5707732439041138, -0.08483617007732391, 0.12602108716964722, 0.01939460262656212, -0.2557666003704071, -0.2817716598510742], [0.41616347432136536, -0.28447866439819336, 0.10777517408132553, 0.10621492564678192, 0.5707734227180481, -0.08483133465051651, 0.12602578103542328, 0.01939842291176319, -0.25576937198638916, -0.28176555037498474], [0.41616445779800415, -0.28448328375816345, 0.10776867717504501, 0.1062120571732521, 0.5707753300666809, -0.08483599126338959, 0.12603457272052765, 0.01940641552209854, -0.25576651096343994, -0.28176239132881165], [0.41616156697273254, -0.28448477387428284, 0.10777119547128677, 0.10621632635593414, 0.5707769989967346, -0.08484449982643127, 0.12603320181369781, 0.019405566155910492, -0.2557632327079773, -0.28177061676979065], [0.4161621630191803, -0.28448569774627686, 0.10777099430561066, 0.1062173843383789, 0.5707772970199585, -0.0848434641957283, 0.1260307878255844, 0.019406214356422424, -0.25576552748680115, -0.2817697525024414], [0.41616228222846985, -0.28448668122291565, 0.107772096991539, 0.10621669888496399, 0.5707781910896301, -0.08484350144863129, 0.1260315477848053, 0.01940753310918808, -0.2557658553123474, -0.28176847100257874], [0.41616085171699524, -0.2844851315021515, 0.1077769547700882, 0.10621802508831024, 0.5707782506942749, -0.08484435081481934, 0.12602859735488892, 0.01940334588289261, -0.25576531887054443, -0.2817722260951996], [0.41616156697273254, -0.2844833731651306, 0.10777713358402252, 0.10621710866689682, 0.570777177810669, -0.08484037220478058, 0.1260269582271576, 0.01940140314400196, -0.25576716661453247, -0.2817704677581787], [0.4161619544029236, -0.2844814956188202, 0.10777853429317474, 0.10621628165245056, 0.5707759857177734, -0.08483868837356567, 0.12602607905864716, 0.01939954049885273, -0.25576692819595337, -0.2817700505256653], [0.41616252064704895, -0.28448164463043213, 0.10777509957551956, 0.10621529817581177, 0.5707756280899048, -0.08483688533306122, 0.12602822482585907, 0.01940097101032734, -0.25576743483543396, -0.2817678153514862], [0.4161619246006012, -0.28447970747947693, 0.10777919739484787, 0.10621652007102966, 0.5707747340202332, -0.08483860641717911, 0.12602508068084717, 0.019397635012865067, -0.25576573610305786, -0.28177130222320557], [0.41616207361221313, -0.2844775915145874, 0.10777997970581055, 0.10621719807386398, 0.5707734227180481, -0.08483494818210602, 0.12602202594280243, 0.019394908100366592, -0.25576767325401306, -0.2817709743976593], [0.41616392135620117, -0.2844787538051605, 0.10777553915977478, 0.1062142625451088, 0.5707732439041138, -0.08483213186264038, 0.12602609395980835, 0.019398802891373634, -0.2557685375213623, -0.2817654013633728], [0.4161621332168579, -0.2844773828983307, 0.10778000205755234, 0.10621625185012817, 0.5707732439041138, -0.08483614772558212, 0.12602394819259644, 0.019395429641008377, -0.25576579570770264, -0.2817709445953369], [0.41616326570510864, -0.28447815775871277, 0.10777536779642105, 0.10621548444032669, 0.5707730054855347, -0.08483278006315231, 0.1260252296924591, 0.019397560507059097, -0.25576820969581604, -0.2817672789096832], [0.41616296768188477, -0.28447720408439636, 0.10777944326400757, 0.10621588677167892, 0.5707727670669556, -0.08483508229255676, 0.12602350115776062, 0.019395869225263596, -0.2557663023471832, -0.28176963329315186], [0.4161624610424042, -0.2844761610031128, 0.1077796071767807, 0.10621684044599533, 0.5707724094390869, -0.08483289182186127, 0.12602178752422333, 0.019393961876630783, -0.2557677924633026, -0.28177008032798767], [0.4161638021469116, -0.28447622060775757, 0.1077783852815628, 0.10621495544910431, 0.5707719326019287, -0.0848311260342598, 0.126023069024086, 0.01939527317881584, -0.25576817989349365, -0.2817670702934265], [0.4161628782749176, -0.2844756245613098, 0.1077796220779419, 0.10621576756238937, 0.5707719922065735, -0.08483247458934784, 0.12602268159389496, 0.019394006580114365, -0.25576716661453247, -0.2817692160606384], [0.4161631464958191, -0.28447484970092773, 0.10777987539768219, 0.10621591657400131, 0.570771336555481, -0.08483127504587173, 0.1260213702917099, 0.019392933696508408, -0.2557677626609802, -0.28176915645599365], [0.41616445779800415, -0.28447750210762024, 0.10777363181114197, 0.10621370375156403, 0.570772111415863, -0.08483031392097473, 0.12602674961090088, 0.01939857192337513, -0.25576847791671753, -0.2817641794681549], [0.416162371635437, -0.28447628021240234, 0.10778043419122696, 0.10621656477451324, 0.5707724094390869, -0.08483607321977615, 0.12602294981479645, 0.01939437910914421, -0.2557651102542877, -0.28177160024642944], [0.4161621332168579, -0.2844730019569397, 0.10778389126062393, 0.10621839016675949, 0.570770800113678, -0.08483143895864487, 0.12601648271083832, 0.019388912245631218, -0.2557681202888489, -0.28177276253700256], [0.4161646366119385, -0.2844730019569397, 0.10778038948774338, 0.10621451586484909, 0.5707699060440063, -0.08482570946216583, 0.12601950764656067, 0.01939171366393566, -0.255770206451416, -0.2817653715610504], [0.41616350412368774, -0.28447291254997253, 0.10778097808361053, 0.10621451586484909, 0.570770263671875, -0.08482858538627625, 0.12602147459983826, 0.0193913783878088, -0.25576770305633545, -0.28176772594451904], [0.4161641299724579, -0.28447502851486206, 0.10777520388364792, 0.10621389746665955, 0.5707707405090332, -0.08482880890369415, 0.12602493166923523, 0.019395139068365097, -0.2557681202888489, -0.28176552057266235], [0.41616353392601013, -0.2844754457473755, 0.10777773708105087, 0.10621532797813416, 0.5707711577415466, -0.08483301103115082, 0.12602367997169495, 0.01939493790268898, -0.25576603412628174, -0.281768798828125], [0.41616296768188477, -0.28447502851486206, 0.10777903348207474, 0.10621694475412369, 0.5707712173461914, -0.08483219891786575, 0.126021146774292, 0.019393417984247208, -0.2557674050331116, -0.28176993131637573], [0.4161643087863922, -0.28447678685188293, 0.10777588188648224, 0.10621469467878342, 0.5707717537879944, -0.08483042567968369, 0.12602442502975464, 0.0193970687687397, -0.25576847791671753, -0.2817654311656952], [0.41616395115852356, -0.28448033332824707, 0.10777171701192856, 0.10621374845504761, 0.5707737803459167, -0.08483421802520752, 0.1260303556919098, 0.019402170553803444, -0.2557668387889862, -0.2817646265029907], [0.4161624014377594, -0.284481406211853, 0.10777398198843002, 0.10621607303619385, 0.5707749128341675, -0.08483981341123581, 0.12602922320365906, 0.01940152235329151, -0.2557647228240967, -0.28176966309547424], [0.41616299748420715, -0.2844836711883545, 0.10777051746845245, 0.1062159314751625, 0.5707758665084839, -0.08483915030956268, 0.12603068351745605, 0.01940491795539856, -0.2557665705680847, -0.2817671597003937], [0.4161611795425415, -0.2844805121421814, 0.1077812984585762, 0.10621868073940277, 0.5707754492759705, -0.08484218269586563, 0.12602342665195465, 0.019397731870412827, -0.25576460361480713, -0.2817743122577667], [0.4161616861820221, -0.2844774127006531, 0.10778218507766724, 0.10621841996908188, 0.570773720741272, -0.08483421802520752, 0.12601955235004425, 0.01939353719353676, -0.25576895475387573, -0.281771719455719], [0.41616353392601013, -0.28447583317756653, 0.10778168588876724, 0.10621479153633118, 0.5707724094390869, -0.08483026176691055, 0.12602132558822632, 0.019393663853406906, -0.2557690739631653, -0.2817673087120056], [0.4161625802516937, -0.28447434306144714, 0.10778150707483292, 0.10621525347232819, 0.5707716941833496, -0.08483071625232697, 0.1260216236114502, 0.01939174346625805, -0.2557677924633026, -0.28176936507225037], [0.4161631464958191, -0.28447234630584717, 0.10778236389160156, 0.1062157079577446, 0.5707700252532959, -0.08482935279607773, 0.1260189563035965, 0.01938938908278942, -0.25576791167259216, -0.28176993131637573], [0.4161640405654907, -0.28447213768959045, 0.10777997970581055, 0.10621494054794312, 0.5707694292068481, -0.08482688665390015, 0.12601971626281738, 0.019390715286135674, -0.25576892495155334, -0.28176721930503845], [0.4161641001701355, -0.2844727337360382, 0.10777948796749115, 0.10621464997529984, 0.5707696676254272, -0.0848279744386673, 0.1260211318731308, 0.019391803070902824, -0.25576797127723694, -0.2817670702934265], [0.41616371273994446, -0.2844732403755188, 0.10777901858091354, 0.10621526837348938, 0.5707699656486511, -0.08482901006937027, 0.12602141499519348, 0.019392138347029686, -0.25576767325401306, -0.28176793456077576], [0.4161641299724579, -0.284474641084671, 0.10777692496776581, 0.1062147468328476, 0.5707705616950989, -0.0848294124007225, 0.12602315843105316, 0.019394468516111374, -0.2557678818702698, -0.28176647424697876], [0.4161636233329773, -0.2844756245613098, 0.10777734220027924, 0.10621528327465057, 0.5707712769508362, -0.08483176678419113, 0.12602373957633972, 0.01939525082707405, -0.25576698780059814, -0.2817677855491638], [0.41616296768188477, -0.2844749391078949, 0.10777994990348816, 0.10621660947799683, 0.5707712769508362, -0.08483240008354187, 0.12602123618125916, 0.019393105059862137, -0.2557670474052429, -0.2817700207233429], [0.41616228222846985, -0.28447043895721436, 0.10778782516717911, 0.10621831566095352, 0.5707694888114929, -0.08482997864484787, 0.12601357698440552, 0.019385457038879395, -0.2557677924633026, -0.2817736268043518], [0.4161643981933594, -0.2844693660736084, 0.1077834963798523, 0.10621510446071625, 0.5707681775093079, -0.08482193946838379, 0.12601545453071594, 0.019386596977710724, -0.25577136874198914, -0.281766414642334], [0.416166216135025, -0.28447458148002625, 0.10777241736650467, 0.10621028393507004, 0.5707699060440063, -0.08482372760772705, 0.1260279268026352, 0.019397292286157608, -0.2557695209980011, -0.2817591726779938], [0.41616255044937134, -0.2844749093055725, 0.10777826607227325, 0.1062154695391655, 0.5707711577415466, -0.08483528345823288, 0.1260250210762024, 0.019393984228372574, -0.2557637691497803, -0.28177115321159363], [0.41616353392601013, -0.28447583317756653, 0.1077752336859703, 0.10621673613786697, 0.5707710385322571, -0.08483182638883591, 0.1260225921869278, 0.019395258277654648, -0.2557678520679474, -0.28176864981651306], [0.4161641597747803, -0.28447675704956055, 0.10777738690376282, 0.1062154695391655, 0.5707717537879944, -0.08483254909515381, 0.12602341175079346, 0.019396979361772537, -0.2557673156261444, -0.28176695108413696], [0.4161624312400818, -0.28447648882865906, 0.10777951776981354, 0.10621681064367294, 0.5707725286483765, -0.08483346551656723, 0.12602268159389496, 0.01939474418759346, -0.25576719641685486, -0.28176990151405334], [0.4161631166934967, -0.2844753563404083, 0.10778065025806427, 0.10621604323387146, 0.5707717537879944, -0.08483169227838516, 0.126021146774292, 0.019393112510442734, -0.25576791167259216, -0.2817692160606384], [0.41616353392601013, -0.2844753563404083, 0.10777868330478668, 0.10621507465839386, 0.5707715749740601, -0.08483031392097473, 0.12602265179157257, 0.01939418539404869, -0.2557683289051056, -0.2817673981189728], [0.4161635935306549, -0.284476101398468, 0.10777728259563446, 0.10621467977762222, 0.5707718133926392, -0.08483152836561203, 0.12602441012859344, 0.019395601004362106, -0.25576743483543396, -0.2817671597003937], [0.4161636531352997, -0.2844780385494232, 0.10777433216571808, 0.10621466487646103, 0.5707725882530212, -0.08483312278985977, 0.12602686882019043, 0.01939849741756916, -0.2557670474052429, -0.2817665636539459], [0.41616228222846985, -0.2844764292240143, 0.10778038948774338, 0.10621721297502518, 0.5707724094390869, -0.08483601361513138, 0.12602205574512482, 0.01939428225159645, -0.2557656764984131, -0.2817718982696533], [0.4161645472049713, -0.2844806909561157, 0.10776947438716888, 0.10621385276317596, 0.5707736015319824, -0.08483141660690308, 0.12602965533733368, 0.019402913749217987, -0.25576937198638916, -0.2817624509334564], [0.4161619544029236, -0.284479022026062, 0.10778050869703293, 0.10621673613786697, 0.5707741379737854, -0.08484037965536118, 0.12602508068084717, 0.01939733698964119, -0.2557636499404907, -0.2817724943161011], [0.41616174578666687, -0.28447726368904114, 0.10777918249368668, 0.10621831566095352, 0.5707732439041138, -0.08483421802520752, 0.12602123618125916, 0.019394319504499435, -0.25576838850975037, -0.28177154064178467], [0.4161638617515564, -0.2844759225845337, 0.10778111219406128, 0.1062152236700058, 0.5707719922065735, -0.08483143150806427, 0.1260211169719696, 0.019394222646951675, -0.2557682991027832, -0.28176775574684143], [0.4161625802516937, -0.28447508811950684, 0.1077803447842598, 0.10621581226587296, 0.5707719922065735, -0.08483100682497025, 0.12602205574512482, 0.019393008202314377, -0.2557681202888489, -0.2817690074443817], [0.41616305708885193, -0.2844727635383606, 0.10778334736824036, 0.10621597617864609, 0.5707704424858093, -0.08483029901981354, 0.126018688082695, 0.019389552995562553, -0.2557675838470459, -0.2817704677581787], [0.4161629378795624, -0.28446945548057556, 0.1077859103679657, 0.10621684044599533, 0.5707687139511108, -0.0848267525434494, 0.12601453065872192, 0.019385337829589844, -0.25576889514923096, -0.281771183013916], [0.4161643385887146, -0.28446781635284424, 0.10778512805700302, 0.10621505975723267, 0.5707671642303467, -0.08482221513986588, 0.1260143667459488, 0.019384652376174927, -0.25577014684677124, -0.28176769614219666], [0.41616517305374146, -0.2844696044921875, 0.10777931660413742, 0.10621284693479538, 0.5707675218582153, -0.0848216563463211, 0.12602008879184723, 0.019389210268855095, -0.2557697892189026, -0.28176382184028625], [0.416163831949234, -0.28446921706199646, 0.10778239369392395, 0.10621492564678192, 0.5707677006721497, -0.08482666313648224, 0.1260184794664383, 0.01938720792531967, -0.2557668685913086, -0.28176918625831604], [0.41616469621658325, -0.2844708561897278, 0.10777760297060013, 0.1062147319316864, 0.5707679390907288, -0.08482467383146286, 0.12601995468139648, 0.019390402361750603, -0.25576910376548767, -0.28176599740982056], [0.41616472601890564, -0.2844725251197815, 0.10777822136878967, 0.10621438175439835, 0.5707689523696899, -0.08482775837182999, 0.1260216385126114, 0.01939263753592968, -0.25576749444007874, -0.28176620602607727], [0.41616278886795044, -0.2844710052013397, 0.10778328776359558, 0.10621727257966995, 0.570769190788269, -0.08482950180768967, 0.12601730227470398, 0.01938810758292675, -0.2557671070098877, -0.2817715108394623], [0.41616562008857727, -0.28447484970092773, 0.10777337849140167, 0.10621311515569687, 0.5707699656486511, -0.08482503145933151, 0.12602461874485016, 0.01939631626009941, -0.2557702660560608, -0.2817617952823639], [0.4161636233329773, -0.2844763398170471, 0.10777702927589417, 0.10621444135904312, 0.5707717537879944, -0.08483371883630753, 0.12602604925632477, 0.019396718591451645, -0.25576528906822205, -0.28176772594451904], [0.41616204380989075, -0.28447481989860535, 0.10778044909238815, 0.10621803253889084, 0.5707715153694153, -0.08483395725488663, 0.12602031230926514, 0.01939200423657894, -0.2557665705680847, -0.28177252411842346], [0.41616350412368774, -0.2844723165035248, 0.10778383165597916, 0.10621697455644608, 0.5707699060440063, -0.08482909947633743, 0.1260162889957428, 0.01938922517001629, -0.255768746137619, -0.28177008032798767], [0.4161641597747803, -0.2844727635383606, 0.10778015106916428, 0.10621459037065506, 0.5707699656486511, -0.08482573926448822, 0.12602026760578156, 0.019391564652323723, -0.25576987862586975, -0.28176575899124146], [0.4161638021469116, -0.28447312116622925, 0.10778003185987473, 0.10621417313814163, 0.5707702040672302, -0.08482857048511505, 0.1260220855474472, 0.01939184032380581, -0.2557675838470459, -0.28176724910736084], [0.41616305708885193, -0.284471720457077, 0.10778181999921799, 0.10621613264083862, 0.5707695484161377, -0.08482935279607773, 0.1260189563035965, 0.019389135763049126, -0.2557673752307892, -0.28177037835121155], [0.4161633551120758, -0.2844686210155487, 0.107786163687706, 0.10621700435876846, 0.5707678198814392, -0.08482642471790314, 0.12601353228092194, 0.019384659826755524, -0.2557685375213623, -0.2817712724208832], [0.4161643981933594, -0.28446725010871887, 0.10778506845235825, 0.10621538758277893, 0.570766806602478, -0.08482132107019424, 0.12601375579833984, 0.01938430219888687, -0.2557705342769623, -0.28176748752593994], [0.41616523265838623, -0.2844685912132263, 0.10778093338012695, 0.10621301084756851, 0.5707671046257019, -0.08482106775045395, 0.1260187327861786, 0.019387729465961456, -0.2557697892189026, -0.28176429867744446], [0.41616466641426086, -0.28447064757347107, 0.10777805745601654, 0.10621339827775955, 0.5707680583000183, -0.08482515066862106, 0.12602189183235168, 0.01939048431813717, -0.2557677626609802, -0.2817656993865967], [0.4161653220653534, -0.2844756245613098, 0.10777054727077484, 0.10621287673711777, 0.5707700252532959, -0.08482836931943893, 0.12602786719799042, 0.019398251548409462, -0.2557675838470459, -0.28176289796829224], [0.4161635637283325, -0.2844778895378113, 0.10777416080236435, 0.10621563345193863, 0.5707720518112183, -0.08483613282442093, 0.12602701783180237, 0.019398989155888557, -0.2557646632194519, -0.2817685306072235], [0.41616326570510864, -0.284480482339859, 0.10777208209037781, 0.10621652007102966, 0.570773720741272, -0.08483613282442093, 0.1260276883840561, 0.019401485100388527, -0.2557668387889862, -0.28176748752593994], [0.41616290807724, -0.2844810485839844, 0.10777606070041656, 0.10621650516986847, 0.5707747340202332, -0.08483850955963135, 0.12602674961090088, 0.01940089650452137, -0.2557658553123474, -0.2817690372467041], [0.41616159677505493, -0.2844792306423187, 0.10777974128723145, 0.10621793568134308, 0.5707745552062988, -0.08483760803937912, 0.12602335214614868, 0.019396763294935226, -0.25576677918434143, -0.28177177906036377], [0.4161628186702728, -0.28447771072387695, 0.10778015106916428, 0.10621626675128937, 0.5707734227180481, -0.08483364433050156, 0.1260223388671875, 0.019395392388105392, -0.25576820969581604, -0.28176918625831604], [0.41616252064704895, -0.2844754457473755, 0.10778211057186127, 0.10621611773967743, 0.5707724094390869, -0.08483241498470306, 0.12602093815803528, 0.01939265988767147, -0.2557677924633026, -0.28177011013031006], [0.41616368293762207, -0.28447601199150085, 0.10777735710144043, 0.10621442645788193, 0.5707718729972839, -0.0848298892378807, 0.12602387368679047, 0.01939510926604271, -0.255768746137619, -0.2817663550376892], [0.4161635637283325, -0.2844769060611725, 0.10777657479047775, 0.10621439665555954, 0.5707722306251526, -0.0848328024148941, 0.12602561712265015, 0.01939673349261284, -0.25576677918434143, -0.28176718950271606], [0.4161628782749176, -0.28447726368904114, 0.10777673870325089, 0.10621599107980728, 0.5707724690437317, -0.08483432978391647, 0.12602466344833374, 0.019396457821130753, -0.2557665705680847, -0.28176915645599365], [0.4161631464958191, -0.28447699546813965, 0.10777811706066132, 0.10621629655361176, 0.5707723498344421, -0.08483383804559708, 0.1260230839252472, 0.019395839422941208, -0.2557671368122101, -0.28176915645599365], [0.41616326570510864, -0.28447747230529785, 0.10777716338634491, 0.1062156930565834, 0.5707727074623108, -0.08483287692070007, 0.12602421641349792, 0.0193968303501606, -0.2557677626609802, -0.28176769614219666], [0.41616353392601013, -0.2844792306423187, 0.10777467489242554, 0.10621462017297745, 0.5707734823226929, -0.08483397215604782, 0.1260274052619934, 0.01939958520233631, -0.25576722621917725, -0.28176629543304443], [0.4161619246006012, -0.2844773232936859, 0.10778055340051651, 0.10621721297502518, 0.570773184299469, -0.08483695983886719, 0.1260228157043457, 0.01939484104514122, -0.2557655870914459, -0.281772255897522], [0.4161628484725952, -0.2844759225845337, 0.10777981579303741, 0.10621681064367294, 0.5707721710205078, -0.08483196049928665, 0.12602078914642334, 0.01939362660050392, -0.2557685375213623, -0.2817695736885071], [0.41616329550743103, -0.28447428345680237, 0.1077822744846344, 0.10621575266122818, 0.5707712769508362, -0.08483065664768219, 0.1260199397802353, 0.01939195953309536, -0.2557680904865265, -0.2817689776420593], [0.41616326570510864, -0.28447380661964417, 0.10778031498193741, 0.10621534287929535, 0.5707709193229675, -0.08482885360717773, 0.12602102756500244, 0.0193918626755476, -0.25576862692832947, -0.2817680537700653], [0.4161628782749176, -0.2844705283641815, 0.10778594017028809, 0.10621647536754608, 0.5707693099975586, -0.08482911437749863, 0.1260160505771637, 0.019386500120162964, -0.25576743483543396, -0.281771719455719], [0.41616350412368774, -0.2844678461551666, 0.10778582096099854, 0.10621635615825653, 0.5707674622535706, -0.08482350409030914, 0.12601338326931, 0.019383825361728668, -0.2557700276374817, -0.2817697823047638], [0.4161655902862549, -0.28446927666664124, 0.10778006166219711, 0.10621277987957001, 0.570767343044281, -0.08482081443071365, 0.1260189563035965, 0.019388733431696892, -0.25577038526535034, -0.28176337480545044], [0.41616424918174744, -0.2844705581665039, 0.1077796071767807, 0.10621380805969238, 0.5707682967185974, -0.08482608199119568, 0.12602125108242035, 0.019389865919947624, -0.2557673454284668, -0.281766802072525], [0.41616353392601013, -0.2844696044921875, 0.1077822595834732, 0.10621626675128937, 0.570767879486084, -0.08482740074396133, 0.12601715326309204, 0.019387073814868927, -0.2557673454284668, -0.28177037835121155], [0.4161648750305176, -0.28447046875953674, 0.10777954757213593, 0.1062149852514267, 0.5707678198814392, -0.0848243236541748, 0.12601831555366516, 0.01938965730369091, -0.2557694613933563, -0.2817660868167877], [0.4161650240421295, -0.2844735383987427, 0.1077759861946106, 0.10621345043182373, 0.5707695484161377, -0.08482663333415985, 0.12602387368679047, 0.01939457282423973, -0.2557682991027832, -0.2817640006542206], [0.41616520285606384, -0.28448063135147095, 0.10776600241661072, 0.10621193796396255, 0.5707729458808899, -0.08483198285102844, 0.12603414058685303, 0.019405007362365723, -0.25576701760292053, -0.2817608118057251], [0.4161635935306549, -0.2844865322113037, 0.107764333486557, 0.10621403157711029, 0.5707765817642212, -0.08484327793121338, 0.1260383129119873, 0.019410988315939903, -0.25576311349868774, -0.2817654311656952], [0.41616201400756836, -0.28449052572250366, 0.10776442289352417, 0.10621722787618637, 0.5707795023918152, -0.0848490297794342, 0.12603794038295746, 0.019413787871599197, -0.2557632029056549, -0.28176888823509216], [0.41616126894950867, -0.284491628408432, 0.10776931047439575, 0.10621856898069382, 0.5707810521125793, -0.08485117554664612, 0.12603501975536346, 0.019412893801927567, -0.2557637095451355, -0.2817710041999817], [0.4161607027053833, -0.28449156880378723, 0.10777156800031662, 0.10621843487024307, 0.5707818269729614, -0.08484960347414017, 0.12603400647640228, 0.019411517307162285, -0.25576531887054443, -0.28177082538604736], [0.4161607027053833, -0.28449031710624695, 0.10777389258146286, 0.10621744394302368, 0.5707815289497375, -0.08484838157892227, 0.12603317201137543, 0.019409386441111565, -0.25576546788215637, -0.28177088499069214], [0.4161616265773773, -0.28449198603630066, 0.10776790231466293, 0.1062152087688446, 0.5707818865776062, -0.08484674245119095, 0.126038059592247, 0.01941331848502159, -0.25576621294021606, -0.281766802072525], [0.4161592721939087, -0.2844870686531067, 0.10777987539768219, 0.10621917247772217, 0.5707802772521973, -0.08485125005245209, 0.12602882087230682, 0.019403517246246338, -0.25576263666152954, -0.2817770838737488], [0.41616126894950867, -0.2844853103160858, 0.10777486860752106, 0.10621781647205353, 0.5707783102989197, -0.0848408192396164, 0.12602762877941132, 0.019403353333473206, -0.25576862692832947, -0.28177008032798767], [0.4161624014377594, -0.28448405861854553, 0.1077771931886673, 0.1062152236700058, 0.5707773566246033, -0.08484075963497162, 0.12602883577346802, 0.01940317451953888, -0.2557663917541504, -0.2817685008049011], [0.41616055369377136, -0.2844814658164978, 0.10777916759252548, 0.10621754825115204, 0.5707764625549316, -0.084840327501297, 0.12602593004703522, 0.019398445263504982, -0.25576627254486084, -0.2817726731300354], [0.4161626696586609, -0.28447988629341125, 0.10777810215950012, 0.10621584206819534, 0.5707746148109436, -0.08483603596687317, 0.1260247528553009, 0.019397975876927376, -0.25576770305633545, -0.2817690968513489], [0.41616225242614746, -0.2844780683517456, 0.10777981579303741, 0.10621622204780579, 0.5707737803459167, -0.08483540266752243, 0.126023530960083, 0.019395995885133743, -0.2557671368122101, -0.28177013993263245], [0.4161628782749176, -0.2844774127006531, 0.10777847468852997, 0.10621567815542221, 0.5707730054855347, -0.08483321219682693, 0.12602367997169495, 0.01939575746655464, -0.2557678818702698, -0.2817686200141907], [0.41616275906562805, -0.28447583317756653, 0.10778069496154785, 0.10621603578329086, 0.5707722306251526, -0.08483314514160156, 0.1260218322277069, 0.01939362660050392, -0.25576719641685486, -0.28176993131637573], [0.41616344451904297, -0.2844761610031128, 0.10777757316827774, 0.10621516406536102, 0.5707719326019287, -0.0848308652639389, 0.12602338194847107, 0.01939515396952629, -0.25576838850975037, -0.2817672789096832], [0.4161643087863922, -0.2844792902469635, 0.10777230560779572, 0.10621332377195358, 0.5707731246948242, -0.08483266830444336, 0.12602919340133667, 0.01940091885626316, -0.2557674050331116, -0.2817641496658325], [0.4161618947982788, -0.28447821736335754, 0.10777878016233444, 0.10621707886457443, 0.5707734823226929, -0.08483856916427612, 0.12602472305297852, 0.019396524876356125, -0.25576460361480713, -0.28177228569984436], [0.41616296768188477, -0.28447815775871277, 0.1077764704823494, 0.10621678084135056, 0.5707730054855347, -0.08483380079269409, 0.12602350115776062, 0.0193970687687397, -0.25576820969581604, -0.2817687392234802], [0.41616326570510864, -0.2844776511192322, 0.10777918249368668, 0.10621573776006699, 0.5707730054855347, -0.08483413606882095, 0.12602351605892181, 0.019396569579839706, -0.25576716661453247, -0.28176847100257874], [0.4161626398563385, -0.2844775915145874, 0.10777788609266281, 0.1062159314751625, 0.570773184299469, -0.08483339846134186, 0.12602433562278748, 0.019396226853132248, -0.25576767325401306, -0.28176864981651306], [0.4161629378795624, -0.28447628021240234, 0.10778018087148666, 0.10621588677167892, 0.5707724094390869, -0.08483357727527618, 0.12602238357067108, 0.019394267350435257, -0.25576701760292053, -0.281769722700119], [0.41616398096084595, -0.28447890281677246, 0.10777268558740616, 0.10621406137943268, 0.5707730650901794, -0.08483163267374039, 0.12602780759334564, 0.019399913027882576, -0.2557685375213623, -0.28176453709602356], [0.41616296768188477, -0.28447970747947693, 0.10777582228183746, 0.1062152087688446, 0.5707738995552063, -0.08483758568763733, 0.12602771818637848, 0.01939971186220646, -0.2557651102542877, -0.2817687690258026], [0.41616198420524597, -0.2844790518283844, 0.10777707397937775, 0.10621747374534607, 0.5707738995552063, -0.08483710139989853, 0.126024529337883, 0.019397486001253128, -0.25576651096343994, -0.2817710340023041], [0.4161633849143982, -0.28447917103767395, 0.10777685046195984, 0.10621581226587296, 0.5707736015319824, -0.08483470976352692, 0.12602481245994568, 0.01939854957163334, -0.25576767325401306, -0.28176775574684143], [0.4161626696586609, -0.28447937965393066, 0.10777692496776581, 0.10621575266122818, 0.5707741379737854, -0.08483553677797318, 0.12602606415748596, 0.01939866878092289, -0.25576701760292053, -0.28176841139793396], [0.41616204380989075, -0.28447720408439636, 0.10778114199638367, 0.10621701925992966, 0.5707732439041138, -0.08483582735061646, 0.12602214515209198, 0.019394326955080032, -0.25576654076576233, -0.2817716896533966], [0.41616228222846985, -0.2844736576080322, 0.10778424888849258, 0.10621745884418488, 0.570771336555481, -0.08483143895864487, 0.12601739168167114, 0.019389664754271507, -0.2557683289051056, -0.28177180886268616], [0.4161628186702728, -0.28446900844573975, 0.10778895765542984, 0.10621701925992966, 0.5707688331604004, -0.08482642471790314, 0.12601256370544434, 0.019383788108825684, -0.2557693123817444, -0.2817717492580414], [0.41616255044937134, -0.28446164727211, 0.10779660195112228, 0.10621778666973114, 0.5707650780677795, -0.08482027053833008, 0.12600433826446533, 0.019373532384634018, -0.25577032566070557, -0.28177425265312195], [0.4161648154258728, -0.28445640206336975, 0.10779580473899841, 0.10621510446071625, 0.5707612037658691, -0.08480992913246155, 0.12600190937519073, 0.019369376823306084, -0.2557734251022339, -0.28176891803741455], [0.41616764664649963, -0.28445860743522644, 0.107784204185009, 0.10620978474617004, 0.5707606673240662, -0.08480630815029144, 0.1260121464729309, 0.019377578049898148, -0.2557733356952667, -0.28175950050354004], [0.4161668121814728, -0.28446322679519653, 0.10777793079614639, 0.10621020942926407, 0.5707626342773438, -0.08481547981500626, 0.1260199397802353, 0.019384577870368958, -0.2557682991027832, -0.28176164627075195], [0.4161665141582489, -0.2844702899456024, 0.10776947438716888, 0.10621199756860733, 0.5707658529281616, -0.08482296019792557, 0.12602604925632477, 0.019393976777791977, -0.2557671070098877, -0.2817617952823639], [0.41616392135620117, -0.28447118401527405, 0.10777916759252548, 0.10621725767850876, 0.5707677006721497, -0.08483197540044785, 0.1260194182395935, 0.019390886649489403, -0.255764365196228, -0.2817712426185608], [0.4161636531352997, -0.2844710052013397, 0.10778126120567322, 0.10621841996908188, 0.570768415927887, -0.08482720702886581, 0.1260155737400055, 0.019389016553759575, -0.2557690739631653, -0.28176984190940857], [0.416166752576828, -0.2844778001308441, 0.10776951909065247, 0.10621127486228943, 0.5707712769508362, -0.08482518047094345, 0.12602931261062622, 0.019401872530579567, -0.2557704448699951, -0.2817574739456177], [0.4161626696586609, -0.2844804525375366, 0.10777387768030167, 0.10621451586484909, 0.5707743167877197, -0.0848391130566597, 0.12603141367435455, 0.019401559606194496, -0.25576335191726685, -0.2817685008049011], [0.41616255044937134, -0.2844826281070709, 0.1077701523900032, 0.10621660947799683, 0.5707752108573914, -0.08483939617872238, 0.12603023648262024, 0.01940333843231201, -0.2557659447193146, -0.2817688286304474], [0.41616320610046387, -0.28448396921157837, 0.10777240246534348, 0.10621613264083862, 0.5707759857177734, -0.08484119176864624, 0.12602989375591278, 0.01940523087978363, -0.25576546788215637, -0.28176799416542053], [0.41616255044937134, -0.28448763489723206, 0.10776785761117935, 0.10621566325426102, 0.5707783699035645, -0.08484216779470444, 0.12603506445884705, 0.019409997388720512, -0.2557663023471832, -0.28176599740982056], [0.41616183519363403, -0.2844892740249634, 0.10777007788419724, 0.10621605813503265, 0.5707798004150391, -0.0848473608493805, 0.12603574991226196, 0.019410548731684685, -0.2557638883590698, -0.2817689776420593], [0.416160523891449, -0.28448837995529175, 0.10777290910482407, 0.1062183603644371, 0.5707799196243286, -0.0848480686545372, 0.12603212893009186, 0.019407570362091064, -0.25576460361480713, -0.2817724347114563], [0.41616177558898926, -0.28448811173439026, 0.10777267068624496, 0.10621697455644608, 0.57077956199646, -0.08484496176242828, 0.12603171169757843, 0.01940791867673397, -0.25576624274253845, -0.28176936507225037], [0.4161617159843445, -0.2844892144203186, 0.1077706515789032, 0.10621575266122818, 0.5707801580429077, -0.08484520763158798, 0.1260349005460739, 0.019410056993365288, -0.2557658553123474, -0.2817678451538086], [0.4161604344844818, -0.284487247467041, 0.1077757179737091, 0.10621771216392517, 0.5707796812057495, -0.08484755456447601, 0.1260310709476471, 0.0194055438041687, -0.2557642459869385, -0.2817729711532593], [0.4161602556705475, -0.28448227047920227, 0.10778167098760605, 0.10621938854455948, 0.570777177810669, -0.08484292030334473, 0.12602299451828003, 0.019397908821702003, -0.2557663023471832, -0.28177517652511597], [0.41616368293762207, -0.28448402881622314, 0.10777179896831512, 0.10621397197246552, 0.5707765817642212, -0.08483505249023438, 0.1260303407907486, 0.019404910504817963, -0.2557697594165802, -0.28176349401474], [0.41616153717041016, -0.28448301553726196, 0.10777738690376282, 0.10621552914381027, 0.5707768797874451, -0.08484240621328354, 0.1260298490524292, 0.01940193958580494, -0.2557641565799713, -0.281770795583725], [0.41616111993789673, -0.28448107838630676, 0.10777711868286133, 0.10621783137321472, 0.5707756876945496, -0.08483948558568954, 0.12602558732032776, 0.019398512318730354, -0.2557666301727295, -0.28177228569984436], [0.41616398096084595, -0.28448277711868286, 0.10777217149734497, 0.10621421784162521, 0.5707754492759705, -0.08483631163835526, 0.12602968513965607, 0.01940397173166275, -0.2557678818702698, -0.2817648649215698], [0.41616290807724, -0.28448671102523804, 0.10776779800653458, 0.10621403157711029, 0.5707777738571167, -0.08484151214361191, 0.1260363608598709, 0.01940952055156231, -0.255765438079834, -0.2817651629447937], [0.41616228222846985, -0.2844908535480499, 0.10776457190513611, 0.10621502995491028, 0.5707800388336182, -0.08484746515750885, 0.12603983283042908, 0.019414033740758896, -0.2557637691497803, -0.2817668318748474], [0.4161606431007385, -0.28449082374572754, 0.10777030140161514, 0.10621844977140427, 0.570780873298645, -0.08485210686922073, 0.12603503465652466, 0.01941126398742199, -0.25576266646385193, -0.28177279233932495], [0.41616079211235046, -0.2844899296760559, 0.10777243226766586, 0.10621890425682068, 0.5707807540893555, -0.08484850078821182, 0.1260317713022232, 0.019409341737627983, -0.2557656168937683, -0.2817716896533966], [0.4161616265773773, -0.2844902575016022, 0.10777179896831512, 0.10621646046638489, 0.5707809925079346, -0.08484624326229095, 0.12603402137756348, 0.01941060833632946, -0.25576627254486084, -0.281768262386322], [0.41616079211235046, -0.2844901382923126, 0.10777203738689423, 0.1062164157629013, 0.5707812309265137, -0.08484777808189392, 0.1260351687669754, 0.01940990798175335, -0.25576499104499817, -0.28176993131637573], [0.416159987449646, -0.28448641300201416, 0.10777802020311356, 0.10621853917837143, 0.57077956199646, -0.0848475769162178, 0.1260286569595337, 0.019403383135795593, -0.25576460361480713, -0.2817746698856354], [0.41616225242614746, -0.28448665142059326, 0.10777175426483154, 0.10621579736471176, 0.5707785487174988, -0.08484090864658356, 0.12603138387203217, 0.019406713545322418, -0.2557680308818817, -0.2817671597003937], [0.41616204380989075, -0.2844873070716858, 0.10777240246534348, 0.10621507465839386, 0.5707789659500122, -0.08484434336423874, 0.12603387236595154, 0.019407955929636955, -0.25576502084732056, -0.28176817297935486], [0.41616055369377136, -0.28448599576950073, 0.10777460038661957, 0.10621774196624756, 0.5707787275314331, -0.08484553545713425, 0.12603060901165009, 0.019404537975788116, -0.25576484203338623, -0.2817724645137787], [0.41616153717041016, -0.2844836115837097, 0.10777746140956879, 0.10621766746044159, 0.5707771182060242, -0.08484216034412384, 0.1260264813899994, 0.0194015521556139, -0.2557663321495056, -0.2817716598510742], [0.41616228222846985, -0.28448328375816345, 0.10777532309293747, 0.10621605813503265, 0.5707767009735107, -0.08483867347240448, 0.12602825462818146, 0.01940261758863926, -0.2557676434516907, -0.28176820278167725], [0.4161618649959564, -0.2844821810722351, 0.10777735710144043, 0.10621607303619385, 0.5707763433456421, -0.0848398432135582, 0.12602771818637848, 0.019400740042328835, -0.25576603412628174, -0.2817700207233429], [0.4161619544029236, -0.2844812870025635, 0.1077764704823494, 0.10621635615825653, 0.5707756280899048, -0.08483822643756866, 0.12602688372135162, 0.019399838522076607, -0.2557668685913086, -0.2817698121070862], [0.41616272926330566, -0.28448110818862915, 0.10777591168880463, 0.10621560364961624, 0.5707750916481018, -0.08483743667602539, 0.1260271817445755, 0.019400397315621376, -0.2557668089866638, -0.28176847100257874], [0.4161624014377594, -0.28448113799095154, 0.10777553915977478, 0.1062159314751625, 0.5707752108573914, -0.08483786135911942, 0.12602756917476654, 0.019400591030716896, -0.2557665705680847, -0.28176888823509216], [0.41616225242614746, -0.2844802141189575, 0.10777755826711655, 0.10621657967567444, 0.5707747936248779, -0.08483798056840897, 0.12602566182613373, 0.019398780539631844, -0.255766361951828, -0.281770259141922], [0.41616278886795044, -0.28448036313056946, 0.10777576267719269, 0.10621587187051773, 0.5707746148109436, -0.08483606576919556, 0.1260264664888382, 0.01939971186220646, -0.25576746463775635, -0.28176820278167725], [0.4161626994609833, -0.2844804525375366, 0.10777635127305984, 0.10621564835309982, 0.5707747340202332, -0.08483704924583435, 0.1260269433259964, 0.01939980871975422, -0.25576654076576233, -0.2817685902118683], [0.41616302728652954, -0.2844824194908142, 0.1077721118927002, 0.10621494054794312, 0.5707754492759705, -0.08483722060918808, 0.12603028118610382, 0.019403189420700073, -0.25576695799827576, -0.28176653385162354], [0.4161621332168579, -0.2844821512699127, 0.10777567327022552, 0.1062164306640625, 0.5707757472991943, -0.08484086394309998, 0.12602832913398743, 0.019401544705033302, -0.25576505064964294, -0.28177034854888916], [0.41616255044937134, -0.284483402967453, 0.10777238011360168, 0.10621616244316101, 0.5707761645317078, -0.08483894914388657, 0.1260296255350113, 0.01940370351076126, -0.25576698780059814, -0.281767874956131], [0.41616278886795044, -0.28448495268821716, 0.107772096991539, 0.10621529817581177, 0.5707770586013794, -0.08484117686748505, 0.12603183090686798, 0.01940598338842392, -0.25576573610305786, -0.2817673683166504], [0.41616103053092957, -0.2844836115837097, 0.1077764555811882, 0.10621781647205353, 0.5707771182060242, -0.08484330028295517, 0.12602820992469788, 0.019402073696255684, -0.25576499104499817, -0.28177234530448914], [0.41616174578666687, -0.284481406211853, 0.10777860879898071, 0.10621769726276398, 0.5707758665084839, -0.08483926206827164, 0.126024529337883, 0.019399011507630348, -0.2557670474052429, -0.28177136182785034], [0.4161640703678131, -0.28448542952537537, 0.10776805877685547, 0.1062130406498909, 0.5707768797874451, -0.08483622968196869, 0.1260342001914978, 0.019408179447054863, -0.2557685673236847, -0.2817619740962982], [0.41616183519363403, -0.2844873368740082, 0.10777056217193604, 0.10621492564678192, 0.5707786679267883, -0.08484597504138947, 0.12603610754013062, 0.01940879039466381, -0.25576311349868774, -0.2817688286304474], [0.4161612391471863, -0.2844885587692261, 0.10776882618665695, 0.10621731728315353, 0.5707793235778809, -0.08484677970409393, 0.12603449821472168, 0.019409222528338432, -0.2557646930217743, -0.28177037835121155], [0.4161628186702728, -0.28449177742004395, 0.1077655702829361, 0.10621538758277893, 0.5707805752754211, -0.08484716713428497, 0.1260381042957306, 0.019414860755205154, -0.25576522946357727, -0.2817659378051758], [0.4161613881587982, -0.28449559211730957, 0.10776353627443314, 0.10621588677167892, 0.5707833170890808, -0.08485236018896103, 0.1260426789522171, 0.019419075921177864, -0.25576356053352356, -0.2817672789096832], [0.4161594808101654, -0.284494549036026, 0.10777068138122559, 0.106219083070755, 0.570783793926239, -0.08485671132802963, 0.12603721022605896, 0.019414152950048447, -0.25576213002204895, -0.2817743122577667], [0.41616109013557434, -0.2844960689544678, 0.10776536911725998, 0.10621713846921921, 0.5707840919494629, -0.08485163748264313, 0.1260395348072052, 0.019417816773056984, -0.25576597452163696, -0.2817680537700653], [0.4161592721939087, -0.2844923138618469, 0.1077766939997673, 0.106219083070755, 0.5707833170890808, -0.08485522866249084, 0.12603315711021423, 0.019410138949751854, -0.25576263666152954, -0.28177544474601746], [0.4161599576473236, -0.28449001908302307, 0.10777396708726883, 0.10621852427721024, 0.5707817077636719, -0.0848471075296402, 0.12603144347667694, 0.019407829269766808, -0.25576722621917725, -0.28177180886268616], [0.41616085171699524, -0.28448572754859924, 0.10778030008077621, 0.10621721297502518, 0.5707793235778809, -0.08484530448913574, 0.1260274350643158, 0.01940261758863926, -0.2557656466960907, -0.2817726731300354], [0.4161596894264221, -0.2844793200492859, 0.10778551548719406, 0.10621929168701172, 0.5707761645317078, -0.08483966439962387, 0.12602004408836365, 0.01939334347844124, -0.2557673156261444, -0.28177595138549805], [0.416163831949234, -0.2844789922237396, 0.10777704417705536, 0.10621374845504761, 0.5707740187644958, -0.08483060449361801, 0.12602499127388, 0.0193977989256382, -0.25577038526535034, -0.2817647457122803], [0.41616272926330566, -0.2844788730144501, 0.10777738690376282, 0.1062140166759491, 0.5707740187644958, -0.08483553677797318, 0.12602759897708893, 0.019398236647248268, -0.25576603412628174, -0.28176799416542053], [0.4161614775657654, -0.28447604179382324, 0.1077813133597374, 0.1062176376581192, 0.570772647857666, -0.08483598381280899, 0.12602123618125916, 0.01939251832664013, -0.2557660639286041, -0.2817734479904175], [0.4161645770072937, -0.28447794914245605, 0.10777365416288376, 0.10621420294046402, 0.5707722902297974, -0.0848301500082016, 0.1260255128145218, 0.019398683682084084, -0.25576943159103394, -0.2817641794681549], [0.41616329550743103, -0.2844795882701874, 0.10777518898248672, 0.10621457546949387, 0.570773720741272, -0.08483605831861496, 0.12602831423282623, 0.01940029300749302, -0.2557657063007355, -0.2817671597003937], [0.41616132855415344, -0.2844773232936859, 0.10778066515922546, 0.10621827095746994, 0.5707733631134033, -0.08483748883008957, 0.1260220855474472, 0.019394252449274063, -0.25576573610305786, -0.28177353739738464], [0.41616374254226685, -0.2844773232936859, 0.10777731239795685, 0.1062157079577446, 0.5707724690437317, -0.08483143895864487, 0.1260228157043457, 0.019396331161260605, -0.2557690739631653, -0.28176698088645935], [0.4161626398563385, -0.2844754755496979, 0.10778222978115082, 0.1062161773443222, 0.5707722306251526, -0.0848333090543747, 0.12602123618125916, 0.01939314231276512, -0.255766898393631, -0.281770259141922], [0.4161628484725952, -0.2844744026660919, 0.10778062045574188, 0.10621608793735504, 0.5707713961601257, -0.08483000844717026, 0.12602059543132782, 0.019391847774386406, -0.2557685971260071, -0.28176915645599365], [0.41616302728652954, -0.2844710648059845, 0.10778571665287018, 0.10621634125709534, 0.5707696080207825, -0.08482912927865982, 0.1260162889957428, 0.019387252628803253, -0.255767822265625, -0.28177112340927124], [0.4161638021469116, -0.2844700217247009, 0.10778255015611649, 0.10621537268161774, 0.5707685351371765, -0.08482418954372406, 0.12601692974567413, 0.01938740164041519, -0.2557700574398041, -0.28176769614219666], [0.4161657691001892, -0.28447383642196655, 0.10777433216571808, 0.10621165484189987, 0.5707694888114929, -0.08482472598552704, 0.1260254979133606, 0.01939546689391136, -0.2557692229747772, -0.2817614674568176], [0.4161631464958191, -0.2844749689102173, 0.1077771931886673, 0.10621502995491028, 0.5707709193229675, -0.08483324199914932, 0.12602496147155762, 0.01939469203352928, -0.2557651102542877, -0.28176915645599365], [0.4161634147167206, -0.284475713968277, 0.10777632147073746, 0.10621649026870728, 0.5707710981369019, -0.08483229577541351, 0.12602278590202332, 0.01939501240849495, -0.25576722621917725, -0.28176891803741455], [0.41616353392601013, -0.2844752371311188, 0.10777981579303741, 0.1062164157629013, 0.5707712769508362, -0.08483217656612396, 0.12602096796035767, 0.01939406618475914, -0.2557673156261444, -0.2817690074443817], [0.4161640405654907, -0.2844780385494232, 0.10777398198843002, 0.10621447116136551, 0.570772647857666, -0.08483073115348816, 0.12602660059928894, 0.019398855045437813, -0.25576868653297424, -0.2817646265029907], [0.4161636531352997, -0.28448066115379333, 0.10777293890714645, 0.1062140166759491, 0.5707741379737854, -0.08483625948429108, 0.12603020668029785, 0.019401947036385536, -0.255765825510025, -0.2817660868167877], [0.4161616861820221, -0.2844798266887665, 0.10777696967124939, 0.10621750354766846, 0.570774495601654, -0.08483957499265671, 0.12602584064006805, 0.019398408010601997, -0.25576508045196533, -0.28177207708358765], [0.416162371635437, -0.2844776213169098, 0.10778043419122696, 0.1062178909778595, 0.5707732439041138, -0.0848357155919075, 0.12602096796035767, 0.019395027309656143, -0.2557673752307892, -0.2817714214324951], [0.41616344451904297, -0.28447777032852173, 0.10777793079614639, 0.10621537268161774, 0.5707731246948242, -0.08483174443244934, 0.12602370977401733, 0.01939692720770836, -0.25576892495155334, -0.2817666828632355], [0.41616320610046387, -0.2844787538051605, 0.10777651518583298, 0.10621441155672073, 0.5707736611366272, -0.08483391255140305, 0.1260269731283188, 0.01939835585653782, -0.2557671070098877, -0.2817669212818146], [0.4161628782749176, -0.2844797670841217, 0.10777440667152405, 0.10621508955955505, 0.5707740783691406, -0.08483605086803436, 0.12602807581424713, 0.019399652257561684, -0.2557663917541504, -0.28176799416542053], [0.41616159677505493, -0.28447607159614563, 0.10778319835662842, 0.1062183752655983, 0.570772647857666, -0.08483738452196121, 0.12601977586746216, 0.01939242146909237, -0.25576549768447876, -0.2817744016647339], [0.4161628186702728, -0.28447335958480835, 0.1077832281589508, 0.10621753334999084, 0.5707709193229675, -0.08482921868562698, 0.12601664662361145, 0.01938982866704464, -0.2557697594165802, -0.2817702889442444], [0.41616541147232056, -0.2844768166542053, 0.10777410119771957, 0.10621190816164017, 0.5707716345787048, -0.08482660353183746, 0.12602679431438446, 0.01939837820827961, -0.2557700276374817, -0.28176093101501465], [0.4161616265773773, -0.28447437286376953, 0.10778336226940155, 0.10621660947799683, 0.5707718133926392, -0.08483579009771347, 0.12602171301841736, 0.019391192123293877, -0.25576427578926086, -0.28177347779273987], [0.4161638915538788, -0.2844754755496979, 0.10777511447668076, 0.10621548444032669, 0.5707710385322571, -0.08482873439788818, 0.1260228157043457, 0.019394811242818832, -0.25576967000961304, -0.28176647424697876], [0.41616523265838623, -0.28447943925857544, 0.10777150839567184, 0.10621251165866852, 0.5707727074623108, -0.084832563996315, 0.12602989375591278, 0.019402364268898964, -0.25576701760292053, -0.28176257014274597], [0.4161616563796997, -0.2844799757003784, 0.10777591168880463, 0.10621712356805801, 0.5707743763923645, -0.08483964949846268, 0.12602750957012177, 0.019399257376790047, -0.2557643949985504, -0.28177154064178467], [0.41616344451904297, -0.28448179364204407, 0.10777214169502258, 0.1062159314751625, 0.5707747340202332, -0.0848366767168045, 0.12602825462818146, 0.01940239407122135, -0.25576743483543396, -0.28176695108413696], [0.41616278886795044, -0.2844827175140381, 0.10777431726455688, 0.10621584206819534, 0.5707758069038391, -0.08483976870775223, 0.12602925300598145, 0.019403278827667236, -0.25576573610305786, -0.28176823258399963], [0.4161616265773773, -0.2844822108745575, 0.10777630656957626, 0.10621733963489532, 0.570776104927063, -0.08484028279781342, 0.12602731585502625, 0.019400866702198982, -0.25576600432395935, -0.2817709147930145], [0.4161633849143982, -0.2844846248626709, 0.1077704206109047, 0.10621457546949387, 0.570776641368866, -0.08483821898698807, 0.12603197991847992, 0.019406072795391083, -0.25576746463775635, -0.2817651629447937], [0.4161619544029236, -0.28448545932769775, 0.10777284950017929, 0.10621582716703415, 0.5707777142524719, -0.0848437249660492, 0.12603244185447693, 0.01940596103668213, -0.2557644248008728, -0.28176936507225037], [0.4161612391471863, -0.28448486328125, 0.10777422040700912, 0.10621769726276398, 0.5707775950431824, -0.08484350889921188, 0.12602946162223816, 0.019403807818889618, -0.25576549768447876, -0.2817714512348175], [0.4161621034145355, -0.28448399901390076, 0.10777553915977478, 0.10621687024831772, 0.5707769989967346, -0.08484123647212982, 0.12602804601192474, 0.0194031223654747, -0.25576651096343994, -0.2817697525024414], [0.41616225242614746, -0.28448474407196045, 0.1077733039855957, 0.10621573776006699, 0.5707773566246033, -0.08484023064374924, 0.12603071331977844, 0.019404858350753784, -0.2557668387889862, -0.28176772594451904], [0.4161621034145355, -0.2844855785369873, 0.10777256637811661, 0.10621549934148788, 0.5707778334617615, -0.08484230190515518, 0.126032292842865, 0.019405849277973175, -0.25576555728912354, -0.28176841139793396], [0.41616111993789673, -0.2844839096069336, 0.10777627676725388, 0.10621756315231323, 0.5707772970199585, -0.08484353870153427, 0.1260283887386322, 0.019402282312512398, -0.25576508045196533, -0.28177228569984436], [0.41616183519363403, -0.2844821810722351, 0.10777735710144043, 0.1062173843383789, 0.5707761645317078, -0.08483967930078506, 0.1260257065296173, 0.01940031535923481, -0.25576701760292053, -0.2817707359790802], [0.4161629378795624, -0.2844831645488739, 0.1077738031744957, 0.10621500015258789, 0.5707762241363525, -0.08483745157718658, 0.12602950632572174, 0.019403405487537384, -0.2557676434516907, -0.28176644444465637], [0.4161624312400818, -0.28448486328125, 0.10777178406715393, 0.10621476173400879, 0.570777177810669, -0.0848408192396164, 0.12603288888931274, 0.019405700266361237, -0.2557656466960907, -0.2817672789096832], [0.4161621630191803, -0.2844867408275604, 0.10776954889297485, 0.10621557384729385, 0.5707780718803406, -0.08484358340501785, 0.12603428959846497, 0.01940797083079815, -0.25576508045196533, -0.28176820278167725], [0.41616150736808777, -0.28448647260665894, 0.10777299106121063, 0.1062173843383789, 0.5707783102989197, -0.08484586328268051, 0.1260313242673874, 0.019406333565711975, -0.2557644248008728, -0.281771183013916], [0.41616109013557434, -0.28448453545570374, 0.10777678340673447, 0.10621849447488785, 0.5707777142524719, -0.08484353125095367, 0.1260271519422531, 0.01940271444618702, -0.25576597452163696, -0.28177231550216675], [0.41616183519363403, -0.2844826877117157, 0.10777823626995087, 0.10621709376573563, 0.5707767009735107, -0.08483953028917313, 0.12602588534355164, 0.019400687888264656, -0.2557673752307892, -0.2817701995372772], [0.4161619544029236, -0.28448107838630676, 0.1077786237001419, 0.10621611773967743, 0.5707758665084839, -0.0848376676440239, 0.1260259747505188, 0.019399071112275124, -0.255767285823822, -0.28176966309547424], [0.4161616563796997, -0.2844778001308441, 0.10778200626373291, 0.1062169149518013, 0.5707741379737854, -0.08483640849590302, 0.12602220475673676, 0.019394349306821823, -0.2557668685913086, -0.28177204728126526], [0.41616296768188477, -0.28447651863098145, 0.1077793538570404, 0.10621561855077744, 0.570772647857666, -0.08483173698186874, 0.12602226436138153, 0.019394438713788986, -0.25576871633529663, -0.28176844120025635], [0.4161633253097534, -0.28447601199150085, 0.10777927190065384, 0.10621488094329834, 0.5707720518112183, -0.08483190089464188, 0.12602320313453674, 0.01939466968178749, -0.2557675838470459, -0.28176796436309814], [0.41616252064704895, -0.2844741940498352, 0.10778173059225082, 0.10621650516986847, 0.5707712769508362, -0.08483199030160904, 0.12602026760578156, 0.0193913783878088, -0.25576722621917725, -0.2817709147930145], [0.4161646068096161, -0.28447645902633667, 0.10777436196804047, 0.10621374845504761, 0.5707714557647705, -0.08482871949672699, 0.1260252594947815, 0.01939709112048149, -0.25576919317245483, -0.28176409006118774], [0.41616323590278625, -0.28447702527046204, 0.10777754336595535, 0.10621510446071625, 0.5707723498344421, -0.08483463525772095, 0.12602540850639343, 0.019396673887968063, -0.2557656466960907, -0.28176864981651306], [0.4161619544029236, -0.2844747304916382, 0.10778168588876724, 0.10621806234121323, 0.5707716345787048, -0.08483391255140305, 0.12601956725120544, 0.019391564652323723, -0.2557668089866638, -0.2817727029323578], [0.41616392135620117, -0.28447389602661133, 0.10778066515922546, 0.10621581226587296, 0.5707705616950989, -0.08482855558395386, 0.12601928412914276, 0.01939203403890133, -0.2557693421840668, -0.2817676365375519], [0.4161636531352997, -0.28447386622428894, 0.10778040438890457, 0.10621480643749237, 0.570770800113678, -0.08482886850833893, 0.12602147459983826, 0.019392510876059532, -0.2557682991027832, -0.28176724910736084], [0.4161638617515564, -0.2844754159450531, 0.10777644068002701, 0.10621414333581924, 0.5707712769508362, -0.08482972532510757, 0.12602469325065613, 0.019395146518945694, -0.25576794147491455, -0.2817661166191101], [0.4161625802516937, -0.28447312116622925, 0.10778284817934036, 0.10621678084135056, 0.5707705616950989, -0.0848328024148941, 0.12601928412914276, 0.019390253350138664, -0.25576603412628174, -0.28177204728126526], [0.4161624014377594, -0.28446826338768005, 0.10778877139091492, 0.10621869564056396, 0.5707681775093079, -0.08482717722654343, 0.12601102888584137, 0.019382702186703682, -0.25576889514923096, -0.28177374601364136], [0.4161648154258728, -0.28446635603904724, 0.1077866181731224, 0.10621494054794312, 0.5707663297653198, -0.08481910079717636, 0.12601213157176971, 0.019382910802960396, -0.2557717561721802, -0.28176650404930115], [0.41616493463516235, -0.2844665050506592, 0.10778401046991348, 0.1062130406498909, 0.570766270160675, -0.08481956273317337, 0.12601645290851593, 0.019384481012821198, -0.25576987862586975, -0.28176531195640564], [0.4161636233329773, -0.2844637632369995, 0.10778815299272537, 0.10621558874845505, 0.5707650184631348, -0.08482181280851364, 0.1260119080543518, 0.01937931962311268, -0.2557680904865265, -0.28177112340927124], [0.4161642789840698, -0.28445956110954285, 0.10779168456792831, 0.10621673613786697, 0.5707623958587646, -0.08481656014919281, 0.1260051727294922, 0.01937389001250267, -0.2557704448699951, -0.28177130222320557], [0.41616666316986084, -0.2844601273536682, 0.10778583586215973, 0.10621295124292374, 0.5707616806030273, -0.0848105326294899, 0.1260097473859787, 0.01937812753021717, -0.25577276945114136, -0.28176310658454895], [0.4161671996116638, -0.28446564078330994, 0.10777664929628372, 0.10621009767055511, 0.5707640647888184, -0.08481507748365402, 0.12602099776268005, 0.019387632608413696, -0.2557699978351593, -0.2817592918872833], [0.41616499423980713, -0.2844693660736084, 0.1077759712934494, 0.1062132939696312, 0.5707665085792542, -0.08482549339532852, 0.12602302432060242, 0.019390439614653587, -0.2557658851146698, -0.28176599740982056], [0.4161651134490967, -0.28447359800338745, 0.10777221620082855, 0.10621479153633118, 0.5707685947418213, -0.08482832461595535, 0.12602438032627106, 0.01939551904797554, -0.2557671070098877, -0.281765341758728], [0.4161636531352997, -0.28447404503822327, 0.10777928680181503, 0.10621710866689682, 0.5707700252532959, -0.08483274281024933, 0.1260206401348114, 0.019393470138311386, -0.2557658851146698, -0.2817699909210205], [0.41616350412368774, -0.28447476029396057, 0.10777866840362549, 0.10621681064367294, 0.5707709193229675, -0.08482977002859116, 0.12602072954177856, 0.01939362660050392, -0.25576871633529663, -0.2817680537700653], [0.41616466641426086, -0.2844776213169098, 0.10777463018894196, 0.10621355473995209, 0.5707722306251526, -0.08483031392097473, 0.1260267198085785, 0.019398735836148262, -0.2557682991027832, -0.28176379203796387], [0.4161626398563385, -0.2844782769680023, 0.10777657479047775, 0.10621552914381027, 0.5707733631134033, -0.08483604341745377, 0.12602673470973969, 0.019397806376218796, -0.25576555728912354, -0.2817692160606384], [0.41616225242614746, -0.2844763994216919, 0.10778016597032547, 0.10621759295463562, 0.5707724690437317, -0.08483531326055527, 0.12602132558822632, 0.019393812865018845, -0.2557665705680847, -0.2817719876766205], [0.41616520285606384, -0.284481406211853, 0.10776820778846741, 0.1062128096818924, 0.5707738399505615, -0.0848311111330986, 0.1260310709476471, 0.01940460503101349, -0.2557694911956787, -0.28176066279411316], [0.4161631166934967, -0.2844853401184082, 0.10776925086975098, 0.10621383786201477, 0.5707768201828003, -0.0848422423005104, 0.1260358691215515, 0.019408171996474266, -0.2557636499404907, -0.2817661762237549], [0.4161587059497833, -0.2844783663749695, 0.10778646916151047, 0.10622250288724899, 0.5707750916481018, -0.08484566956758499, 0.12601841986179352, 0.019391899928450584, -0.2557629644870758, -0.2817820906639099], [0.41616347432136536, -0.284475713968277, 0.10778146237134933, 0.10621757805347443, 0.5707721710205078, -0.08482854068279266, 0.1260167360305786, 0.019392473623156548, -0.2557721436023712, -0.2817680835723877], [0.41616401076316833, -0.2844752073287964, 0.10778205096721649, 0.10621342062950134, 0.5707719922065735, -0.08482887595891953, 0.12602238357067108, 0.019393932074308395, -0.2557688057422638, -0.2817654609680176], [0.4161631166934967, -0.28447750210762024, 0.10777425765991211, 0.10621338337659836, 0.5707728862762451, -0.08483095467090607, 0.12602835893630981, 0.01939743384718895, -0.255767822265625, -0.2817656099796295], [0.41616323590278625, -0.2844775319099426, 0.10777641087770462, 0.10621489584445953, 0.5707724690437317, -0.08483592420816422, 0.12602607905864716, 0.019397031515836716, -0.2557651400566101, -0.2817692756652832], [0.41616174578666687, -0.2844744324684143, 0.10778249800205231, 0.10621887445449829, 0.5707713961601257, -0.08483473211526871, 0.1260181963443756, 0.01939096860587597, -0.25576654076576233, -0.28177395462989807], [0.4161631464958191, -0.28447070717811584, 0.10778685659170151, 0.10621774196624756, 0.5707693099975586, -0.08482753485441208, 0.12601324915885925, 0.01938636600971222, -0.2557695508003235, -0.28177112340927124], [0.4161642789840698, -0.2844700515270233, 0.10778345167636871, 0.10621441155672073, 0.5707687139511108, -0.08482252806425095, 0.12601707875728607, 0.019387684762477875, -0.25577086210250854, -0.28176581859588623], [0.4161645174026489, -0.28447115421295166, 0.10777987539768219, 0.10621283203363419, 0.5707688927650452, -0.08482469618320465, 0.12602169811725616, 0.019390208646655083, -0.2557685971260071, -0.2817651927471161], [0.41616326570510864, -0.2844698131084442, 0.10778253525495529, 0.10621561855077744, 0.5707682967185974, -0.08482801914215088, 0.126018226146698, 0.019387178122997284, -0.2557668387889862, -0.2817705273628235], [0.41616398096084595, -0.28446826338768005, 0.10778355598449707, 0.10621634125709534, 0.5707671046257019, -0.08482466638088226, 0.12601454555988312, 0.01938539743423462, -0.25576895475387573, -0.2817695438861847], [0.4161645770072937, -0.28446727991104126, 0.10778464376926422, 0.10621535778045654, 0.5707665085792542, -0.08482219278812408, 0.12601426243782043, 0.019384853541851044, -0.25576964020729065, -0.2817676365375519], [0.41616472601890564, -0.2844679057598114, 0.10778230428695679, 0.10621423274278641, 0.570766806602478, -0.0848214253783226, 0.12601695954799652, 0.01938621699810028, -0.2557696998119354, -0.28176602721214294], [0.41616520285606384, -0.28447020053863525, 0.10777807235717773, 0.10621308535337448, 0.5707676410675049, -0.08482342958450317, 0.12602120637893677, 0.019390223547816277, -0.25576865673065186, -0.2817644774913788], [0.41616421937942505, -0.2844714820384979, 0.10777844488620758, 0.1062147319316864, 0.5707685351371765, -0.08482783287763596, 0.12602131068706512, 0.019391043111681938, -0.25576695799827576, -0.2817675769329071], [0.41616320610046387, -0.2844695746898651, 0.10778402537107468, 0.1062173992395401, 0.5707680583000183, -0.08482832461595535, 0.12601545453071594, 0.019386492669582367, -0.2557673156261444, -0.2817716598510742], [0.4161655306816101, -0.2844725549221039, 0.10777592658996582, 0.1062137633562088, 0.5707687735557556, -0.08482328802347183, 0.12602150440216064, 0.019393261522054672, -0.25577065348625183, -0.2817627191543579], [0.4161647856235504, -0.2844763994216919, 0.10777395218610764, 0.10621277987957001, 0.5707711577415466, -0.0848304033279419, 0.1260279268026352, 0.019398318603634834, -0.2557666003704071, -0.28176388144493103], [0.416163831949234, -0.2844817638397217, 0.10776716470718384, 0.10621386766433716, 0.5707740783691406, -0.084835946559906, 0.12603352963924408, 0.019404828548431396, -0.2557659149169922, -0.28176453709602356], [0.4161633849143982, -0.2844858169555664, 0.10776717960834503, 0.10621516406536102, 0.5707764625549316, -0.08484302461147308, 0.12603497505187988, 0.01940896175801754, -0.2557638883590698, -0.281766802072525], [0.416161447763443, -0.2844870090484619, 0.10777091979980469, 0.10621827095746994, 0.5707781910896301, -0.08484645187854767, 0.12603209912776947, 0.01940779946744442, -0.2557641267776489, -0.28177115321159363], [0.4161621034145355, -0.2844882607460022, 0.10777094960212708, 0.10621719807386398, 0.5707791447639465, -0.08484473824501038, 0.12603247165679932, 0.019409043714404106, -0.25576603412628174, -0.2817685604095459], [0.41616135835647583, -0.284488320350647, 0.10777303576469421, 0.10621687024831772, 0.5707798600196838, -0.08484599739313126, 0.12603285908699036, 0.019408298656344414, -0.25576528906822205, -0.2817697823047638], [0.41616150736808777, -0.28448915481567383, 0.10777068138122559, 0.10621620714664459, 0.5707801580429077, -0.08484555035829544, 0.12603464722633362, 0.019409528002142906, -0.25576579570770264, -0.28176867961883545], [0.4161614775657654, -0.28448957204818726, 0.10777074098587036, 0.10621616244316101, 0.5707803964614868, -0.08484731614589691, 0.12603510916233063, 0.01941012404859066, -0.2557647228240967, -0.28176936507225037], [0.4161597788333893, -0.28448548913002014, 0.1077791377902031, 0.10621946305036545, 0.5707789659500122, -0.08484772592782974, 0.12602707743644714, 0.01940223015844822, -0.25576430559158325, -0.2817758023738861], [0.41616156697273254, -0.28448283672332764, 0.10777842998504639, 0.10621772706508636, 0.5707769393920898, -0.08483922481536865, 0.12602472305297852, 0.01940016634762287, -0.2557683289051056, -0.2817707061767578], [0.41616320610046387, -0.2844841778278351, 0.10777315497398376, 0.10621379315853119, 0.5707769393920898, -0.08483723551034927, 0.12603126466274261, 0.01940484344959259, -0.25576797127723694, -0.28176483511924744], [0.4161626100540161, -0.28448787331581116, 0.10776706039905548, 0.10621339827775955, 0.5707787275314331, -0.08484262228012085, 0.12603814899921417, 0.019410422071814537, -0.2557651698589325, -0.2817651927471161], [0.41616180539131165, -0.2844906747341156, 0.107765793800354, 0.10621555894613266, 0.5707801580429077, -0.08484895527362823, 0.12603896856307983, 0.019413109868764877, -0.25576311349868774, -0.2817686200141907], [0.4161597192287445, -0.2844872772693634, 0.10777666419744492, 0.10622051358222961, 0.5707794427871704, -0.08485116064548492, 0.12602850794792175, 0.019404985010623932, -0.2557629346847534, -0.2817768156528473], [0.4161617159843445, -0.2844862639904022, 0.10777470469474792, 0.10621816664934158, 0.5707785487174988, -0.08484169840812683, 0.12602774798870087, 0.01940508931875229, -0.255768358707428, -0.28176945447921753], [0.4161619544029236, -0.28448545932769775, 0.10777655988931656, 0.10621561855077744, 0.5707784295082092, -0.08484172821044922, 0.1260300725698471, 0.019404642283916473, -0.25576648116111755, -0.2817685008049011], [0.4161602556705475, -0.28448188304901123, 0.10778053849935532, 0.10621781647205353, 0.5707770586013794, -0.08484169095754623, 0.12602561712265015, 0.019398154690861702, -0.255765825510025, -0.28177377581596375], [0.4161614179611206, -0.2844764292240143, 0.10778509825468063, 0.10621802508831024, 0.5707736015319824, -0.08483567088842392, 0.12601830065250397, 0.019391341134905815, -0.25576773285865784, -0.28177374601364136], [0.41616252064704895, -0.2844718098640442, 0.10778704285621643, 0.10621684044599533, 0.5707706809043884, -0.08482836186885834, 0.12601490318775177, 0.019386954605579376, -0.2557696998119354, -0.28177112340927124], [0.4161636233329773, -0.28446924686431885, 0.10778598487377167, 0.10621480643749237, 0.5707686543464661, -0.08482376486063004, 0.12601546943187714, 0.019385389983654022, -0.25577014684677124, -0.28176820278167725], [0.41616642475128174, -0.284475713968277, 0.10776878148317337, 0.10620951652526855, 0.5707702040672302, -0.0848228707909584, 0.1260303258895874, 0.01939934678375721, -0.25577038526535034, -0.2817573547363281], [0.41616445779800415, -0.2844821512699127, 0.10776577889919281, 0.10621165484189987, 0.5707738399505615, -0.08483804017305374, 0.12603722512722015, 0.019406788051128387, -0.25576314330101013, -0.28176364302635193], [0.4161624014377594, -0.2844866216182709, 0.10776452720165253, 0.10621675103902817, 0.5707767605781555, -0.08484542369842529, 0.12603604793548584, 0.01940983347594738, -0.25576305389404297, -0.2817689776420593], [0.41616302728652954, -0.2844909131526947, 0.10776448249816895, 0.10621684044599533, 0.5707793235778809, -0.08484766632318497, 0.12603704631328583, 0.019414778798818588, -0.25576433539390564, -0.2817668616771698], [0.4161610007286072, -0.2844928801059723, 0.10776843130588531, 0.10621815174818039, 0.570781946182251, -0.08485156297683716, 0.1260371208190918, 0.019414659589529037, -0.2557637393474579, -0.28177008032798767], [0.4161599576473236, -0.2844911813735962, 0.10777413100004196, 0.10621918737888336, 0.5707821249961853, -0.08485132455825806, 0.1260327696800232, 0.019409706816077232, -0.2557643949985504, -0.2817733883857727], [0.41616082191467285, -0.28448954224586487, 0.10777411609888077, 0.10621754825115204, 0.5707810521125793, -0.08484673500061035, 0.12603189051151276, 0.019408246502280235, -0.25576651096343994, -0.28177058696746826], [0.41616180539131165, -0.28449052572250366, 0.10776994377374649, 0.10621501505374908, 0.5707811117172241, -0.0848456397652626, 0.1260363757610321, 0.019411427900195122, -0.25576621294021606, -0.28176701068878174], [0.4161616563796997, -0.2844935357570648, 0.10776492208242416, 0.10621453076601028, 0.5707823634147644, -0.08484947681427002, 0.12604162096977234, 0.019416186958551407, -0.25576433539390564, -0.2817666232585907], [0.4161595404148102, -0.28449127078056335, 0.10777316987514496, 0.10621894896030426, 0.570781946182251, -0.08485451340675354, 0.12603434920310974, 0.019410034641623497, -0.2557620108127594, -0.2817753851413727], [0.41616111993789673, -0.2844911217689514, 0.10776986926794052, 0.10621799528598785, 0.5707812905311584, -0.0848475843667984, 0.12603358924388885, 0.019411182031035423, -0.25576668977737427, -0.2817697525024414], [0.4161616563796997, -0.28449171781539917, 0.10777075588703156, 0.10621587187051773, 0.5707817077636719, -0.08484847098588943, 0.12603627145290375, 0.019412722438573837, -0.2557651400566101, -0.28176817297935486], [0.41616106033325195, -0.28449440002441406, 0.10776523500680923, 0.10621552914381027, 0.570783257484436, -0.08485009521245956, 0.12604130804538727, 0.019416559487581253, -0.255764901638031, -0.281767338514328], [0.4161602854728699, -0.28449392318725586, 0.10776974260807037, 0.10621733218431473, 0.5707831978797913, -0.08485475182533264, 0.12603822350502014, 0.019414205104112625, -0.2557624876499176, -0.2817722260951996], [0.4161600172519684, -0.2844928801059723, 0.10777036100625992, 0.10621868073940277, 0.5707827806472778, -0.08485198765993118, 0.1260351538658142, 0.019412441179156303, -0.25576481223106384, -0.28177228569984436], [0.41616153717041016, -0.28449392318725586, 0.1077682375907898, 0.10621614754199982, 0.5707828998565674, -0.08484990149736404, 0.12603795528411865, 0.019415292888879776, -0.25576555728912354, -0.28176775574684143], [0.4161601662635803, -0.28449392318725586, 0.10776978731155396, 0.10621700435876846, 0.5707834959030151, -0.08485276997089386, 0.12603837251663208, 0.01941431686282158, -0.25576379895210266, -0.28177085518836975], [0.41616153717041016, -0.28449758887290955, 0.10776159167289734, 0.10621507465839386, 0.5707845687866211, -0.0848521813750267, 0.12604431807994843, 0.019420893862843513, -0.25576499104499817, -0.28176578879356384], [0.4161604046821594, -0.2844997048377991, 0.10776321589946747, 0.10621634125709534, 0.57078617811203, -0.08485928922891617, 0.1260455697774887, 0.019422724843025208, -0.25576159358024597, -0.28176969289779663], [0.41615843772888184, -0.28449779748916626, 0.10776938498020172, 0.10622037947177887, 0.5707860589027405, -0.08486063033342361, 0.12603868544101715, 0.019417066127061844, -0.25576210021972656, -0.2817758321762085], [0.4161606431007385, -0.28449803590774536, 0.10776674747467041, 0.10621771216392517, 0.5707855820655823, -0.08485449105501175, 0.1260395497083664, 0.01941906102001667, -0.2557656466960907, -0.2817692160606384], [0.41615957021713257, -0.2844966650009155, 0.10777094960212708, 0.1062176525592804, 0.570785641670227, -0.08485634624958038, 0.12603901326656342, 0.019416499882936478, -0.2557635009288788, -0.2817719280719757], [0.4161597490310669, -0.28449633717536926, 0.10776828229427338, 0.10621733218431473, 0.5707851648330688, -0.08485395461320877, 0.12603959441184998, 0.019416306167840958, -0.2557648718357086, -0.2817706763744354], [0.4161600172519684, -0.2844944894313812, 0.1077713891863823, 0.1062173843383789, 0.5707840323448181, -0.084854356944561, 0.12603718042373657, 0.019413936883211136, -0.2557637691497803, -0.28177210688591003], [0.41616055369377136, -0.28449514508247375, 0.10776709020137787, 0.10621671378612518, 0.5707839727401733, -0.0848516970872879, 0.1260393112897873, 0.019416097551584244, -0.2557653486728668, -0.2817690968513489], [0.41615983843803406, -0.2844926416873932, 0.10777381807565689, 0.10621809214353561, 0.5707830190658569, -0.08485395461320877, 0.12603484094142914, 0.019411323592066765, -0.25576314330101013, -0.2817736566066742], [0.41615912318229675, -0.2844875454902649, 0.10777921229600906, 0.10622017085552216, 0.5707806944847107, -0.08484859764575958, 0.12602710723876953, 0.01940341293811798, -0.2557657063007355, -0.2817760705947876], [0.4161616265773773, -0.28448453545570374, 0.10777856409549713, 0.10621676594018936, 0.5707781910896301, -0.08484046161174774, 0.1260264366865158, 0.019401976838707924, -0.2557682693004608, -0.28176984190940857], [0.4161616861820221, -0.2844829559326172, 0.10777761787176132, 0.10621540248394012, 0.570777177810669, -0.08483913540840149, 0.12602832913398743, 0.01940123178064823, -0.2557671368122101, -0.2817690968513489], [0.4161611795425415, -0.28447961807250977, 0.10778091847896576, 0.10621688514947891, 0.5707752704620361, -0.08483881503343582, 0.12602415680885315, 0.019396167248487473, -0.2557661235332489, -0.281772643327713], [0.41616296768188477, -0.2844790816307068, 0.10777644068002701, 0.10621535778045654, 0.5707738995552063, -0.08483387529850006, 0.12602517008781433, 0.019397931173443794, -0.25576847791671753, -0.28176769614219666], [0.41616278886795044, -0.28447824716567993, 0.10777866840362549, 0.10621548444032669, 0.5707734823226929, -0.08483551442623138, 0.1260247379541397, 0.019397009164094925, -0.25576651096343994, -0.2817692160606384], [0.4161622226238251, -0.28447675704956055, 0.10777978599071503, 0.10621684044599533, 0.5707728862762451, -0.08483422547578812, 0.12602229416370392, 0.01939435675740242, -0.255767285823822, -0.2817707061767578], [0.41616350412368774, -0.2844763398170471, 0.10777869820594788, 0.10621538758277893, 0.5707721710205078, -0.08483166247606277, 0.12602268159389496, 0.019395064562559128, -0.25576817989349365, -0.28176775574684143], [0.4161624014377594, -0.2844736874103546, 0.1077837198972702, 0.10621684044599533, 0.5707712769508362, -0.08483216911554337, 0.1260189563035965, 0.019390380010008812, -0.2557671070098877, -0.28177160024642944], [0.4161619544029236, -0.28446730971336365, 0.10779180377721786, 0.10621874034404755, 0.5707681775093079, -0.08482716232538223, 0.12600946426391602, 0.019380467012524605, -0.25576871633529663, -0.2817750573158264], [0.4161642789840698, -0.28446313738822937, 0.107791006565094, 0.10621576756238937, 0.5707650780677795, -0.08481692522764206, 0.12600760161876678, 0.019377607852220535, -0.25577235221862793, -0.28176870942115784], [0.41616588830947876, -0.28446340560913086, 0.1077851727604866, 0.10621190816164017, 0.5707642436027527, -0.08481429517269135, 0.12601397931575775, 0.019381346181035042, -0.25577160716056824, -0.2817632555961609], [0.41616564989089966, -0.2844661474227905, 0.10777919739484787, 0.10621166974306107, 0.5707651376724243, -0.08481886237859726, 0.12601977586746216, 0.01938602328300476, -0.2557688355445862, -0.28176361322402954], [0.4161646366119385, -0.2844669222831726, 0.10778060555458069, 0.10621467977762222, 0.5707655549049377, -0.08482415974140167, 0.12601760029792786, 0.01938582956790924, -0.255766898393631, -0.28176841139793396], [0.41616466641426086, -0.2844671905040741, 0.10778174549341202, 0.10621616244316101, 0.5707657337188721, -0.08482325077056885, 0.12601487338542938, 0.019385598599910736, -0.25576862692832947, -0.28176844120025635], [0.41616562008857727, -0.2844698429107666, 0.10777844488620758, 0.10621407628059387, 0.5707671046257019, -0.08482225984334946, 0.12601915001869202, 0.019390186294913292, -0.25576964020729065, -0.2817639410495758], [0.4161640405654907, -0.2844706177711487, 0.10778112709522247, 0.10621505975723267, 0.5707683563232422, -0.08482687175273895, 0.12601962685585022, 0.019389426335692406, -0.2557673156261444, -0.28176790475845337], [0.41616395115852356, -0.2844710052013397, 0.1077800765633583, 0.10621552914381027, 0.5707685351371765, -0.08482645452022552, 0.12601909041404724, 0.019389426335692406, -0.25576841831207275, -0.28176799416542053], [0.41616368293762207, -0.2844688892364502, 0.1077851876616478, 0.10621640086174011, 0.5707678198814392, -0.08482658863067627, 0.12601496279239655, 0.01938576251268387, -0.25576791167259216, -0.28177040815353394], [0.41616496443748474, -0.28447073698043823, 0.10777841508388519, 0.10621407628059387, 0.5707681775093079, -0.08482252806425095, 0.1260197013616562, 0.01939029060304165, -0.2557704746723175, -0.28176426887512207], [0.4161660969257355, -0.28447720408439636, 0.10776916891336441, 0.10621074587106705, 0.5707709193229675, -0.08482770621776581, 0.12603110074996948, 0.01940116472542286, -0.255767822265625, -0.2817595899105072], [0.41616290807724, -0.28448060154914856, 0.1077708750963211, 0.10621507465839386, 0.570773720741272, -0.08483916521072388, 0.12603165209293365, 0.019402431324124336, -0.255763441324234, -0.2817685008049011], [0.4161623418331146, -0.2844809889793396, 0.10777410119771957, 0.106218121945858, 0.5707743167877197, -0.08484024554491043, 0.12602634727954865, 0.019400635734200478, -0.2557651996612549, -0.28177133202552795], [0.4161621630191803, -0.28447863459587097, 0.10778099298477173, 0.10621874034404755, 0.5707738399505615, -0.08483753353357315, 0.1260208636522293, 0.01939621940255165, -0.255766898393631, -0.28177210688591003], [0.4161621928215027, -0.284475713968277, 0.10778412967920303, 0.10621762275695801, 0.5707727670669556, -0.08483223617076874, 0.12601853907108307, 0.01939193718135357, -0.25576892495155334, -0.28177088499069214], [0.41616326570510864, -0.2844739556312561, 0.1077827587723732, 0.1062149703502655, 0.5707715153694153, -0.0848284512758255, 0.12601998448371887, 0.019391072914004326, -0.25576937198638916, -0.281767874956131], [0.41616320610046387, -0.28447243571281433, 0.1077822744846344, 0.10621469467878342, 0.5707703232765198, -0.08482840657234192, 0.12602011859416962, 0.019389783963561058, -0.25576815009117126, -0.28176867961883545], [0.4161638021469116, -0.28447219729423523, 0.10777981579303741, 0.10621469467878342, 0.5707694888114929, -0.08482745289802551, 0.12602050602436066, 0.01939055137336254, -0.2557683289051056, -0.28176766633987427], [0.4161631166934967, -0.2844694256782532, 0.10778538137674332, 0.10621662437915802, 0.5707682967185974, -0.08482804149389267, 0.12601539492607117, 0.019385896623134613, -0.25576743483543396, -0.2817715108394623], [0.4161651134490967, -0.28447166085243225, 0.10777707397937775, 0.10621383786201477, 0.5707684755325317, -0.08482281863689423, 0.1260206401348114, 0.019391587004065514, -0.25577065348625183, -0.2817636728286743], [0.4161645472049713, -0.2844734489917755, 0.10777802020311356, 0.1062135249376297, 0.570769727230072, -0.08482887595891953, 0.12602370977401733, 0.01939370110630989, -0.25576677918434143, -0.2817659378051758], [0.41616350412368774, -0.2844754457473755, 0.10777502506971359, 0.10621529817581177, 0.5707710385322571, -0.08483109623193741, 0.12602484226226807, 0.019395511597394943, -0.2557671368122101, -0.28176748752593994], [0.41616371273994446, -0.28447577357292175, 0.10777788609266281, 0.10621590167284012, 0.5707712769508362, -0.08483312278985977, 0.1260228157043457, 0.019395191222429276, -0.25576648116111755, -0.2817687690258026], [0.41616323590278625, -0.2844764292240143, 0.10777732729911804, 0.10621629655361176, 0.5707719326019287, -0.08483217656612396, 0.1260230839252472, 0.019395742565393448, -0.2557677924633026, -0.28176820278167725], [0.41616395115852356, -0.28447842597961426, 0.10777502506971359, 0.10621457546949387, 0.5707728862762451, -0.08483271300792694, 0.1260264813899994, 0.019398929551243782, -0.2557675540447235, -0.28176575899124146], [0.4161622226238251, -0.2844774127006531, 0.10777942836284637, 0.10621669888496399, 0.5707731246948242, -0.08483614772558212, 0.1260237693786621, 0.019395601004362106, -0.2557658553123474, -0.2817710041999817], [0.41616201400756836, -0.2844736874103546, 0.10778450965881348, 0.10621821135282516, 0.570771336555481, -0.08483271300792694, 0.1260170191526413, 0.019389456138014793, -0.2557676434516907, -0.28177306056022644]]], 'fractal_dimension': 4.25} 2025-07-28 22:34:55,416 - DEBUG - Sending response: { "message": "File uploaded successfully", "filename": "S001R01.edf", "shape": [ 64, 9760 ], "sampling_rate": 160.0, "channel_names": [ "Fc5.", "Fc3.", "Fc1.", "Fcz.", "Fc2.", "Fc4.", "Fc6.", "C5..", "C3..", "C1..", "Cz..", "C2..", "C4..", "C6..", "Cp5.", "Cp3.", "Cp1.", "Cpz.", "Cp2.", "Cp4.", "Cp6.", "Fp1.", "Fpz.", "Fp2.", "Af7.", "Af3.", "Afz.", "Af4.", "Af8.", "F7..", "F5..", "F3..", "F1..", "Fz..", "F2..", "F4..", "F6..", "F8..", "Ft7.", "Ft8.", "T7..", "T8..", "T9..", "T10.", "Tp7.", "Tp8.", "P7..", "P5..", "P3..", "P1..", "Pz..", "P2..", "P4..", "P6..", "P8..", "Po7.", "Po3.", "Poz.", "Po4.", "Po8.", "O1..", "Oz..", "O2..", "Iz.." ], "metrics": [ { "mean_amplitude": -0.7604508196721314, "mu_psd": 32.96217130036497, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.0400614754098365, "mu_psd": 42.208361534205906, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.0797131147540973, "mu_psd": 39.75499892768321, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.8452868852459003, "mu_psd": 38.731687895830035, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.4572745901639337, "mu_psd": 36.45671846636971, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 3.0593237704918033, "mu_psd": 33.12253401258297, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.7516393442622946, "mu_psd": 20.383899986541035, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.8946721311475412, "mu_psd": 36.13147005560294, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.358299180327869, "mu_psd": 42.707443489824996, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.18688524590164052, "mu_psd": 35.83879768589472, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.3882172131147534, "mu_psd": 32.816917407410266, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.692213114754098, "mu_psd": 31.95003385558746, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.224282786885246, "mu_psd": 28.29165483101699, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.628790983606558, "mu_psd": 17.01563826863389, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.463422131147541, "mu_psd": 36.32390309607568, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.16557377049180302, "mu_psd": 38.3608098936832, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.777049180327868, "mu_psd": 35.58889841907527, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6493852459016396, "mu_psd": 32.76094623423135, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.11547131147541033, "mu_psd": 30.293224827502296, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.5043032786885251, "mu_psd": 29.00179204029715, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.3472336065573767, "mu_psd": 21.313346303950205, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -8.763217213114755, "mu_psd": 30.889085201415394, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -7.782786885245901, "mu_psd": 27.436530092968738, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -8.68954918032787, "mu_psd": 26.901803396603853, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -10.696823770491802, "mu_psd": 31.79732985272577, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -9.142418032786885, "mu_psd": 30.979407517628683, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.964241803278689, "mu_psd": 33.534322865086395, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -4.732991803278689, "mu_psd": 28.50425245527458, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -6.505122950819672, "mu_psd": 23.90336767313496, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.3546106557377042, "mu_psd": 27.836928662869006, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -5.617827868852459, "mu_psd": 35.33012840136983, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.6713114754098355, "mu_psd": 32.67831622400885, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.14334016393442614, "mu_psd": 38.17433457556781, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8379098360655738, "mu_psd": 38.28653350595802, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.4547131147540994, "mu_psd": 35.04637279580251, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8713114754098362, "mu_psd": 31.850613664878395, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.163422131147541, "mu_psd": 25.829493870582244, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.7753073770491805, "mu_psd": 17.6736917924352, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.3829918032786885, "mu_psd": 28.17966031322613, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8619877049180324, "mu_psd": 11.291750159105318, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.9428278688524583, "mu_psd": 27.626524911435336, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.750409836065573, "mu_psd": 9.30286324704405, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.7112704918032788, "mu_psd": 26.482776617605577, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.09641393442622959, "mu_psd": 2.533695442731044, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.14477459016393418, "mu_psd": 30.068746868094838, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6962090163934423, "mu_psd": 11.550468816632018, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8612704918032791, "mu_psd": 37.79443489890606, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.0809426229508203, "mu_psd": 40.656749513463446, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.3059426229508198, "mu_psd": 41.330996096642515, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.5913934426229513, "mu_psd": 41.42380498373986, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.18893442622950787, "mu_psd": 38.186882884316766, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.7969262295081971, "mu_psd": 37.650624175942006, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.1698770491803276, "mu_psd": 33.958598201727426, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.8021516393442623, "mu_psd": 27.053105215942246, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.02530737704918, "mu_psd": 19.503264664200966, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.7867827868852455, "mu_psd": 47.11752538431089, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.0236680327868863, "mu_psd": 48.43728070052847, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.284118852459016, "mu_psd": 46.34457088667734, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.0335040983606556, "mu_psd": 41.35467641899583, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.2284836065573768, "mu_psd": 39.659832169131796, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6304303278688523, "mu_psd": 55.50730913514963, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.154713114754098, "mu_psd": 49.149252934165, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.3248975409836069, "mu_psd": 50.32309919576436, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.56875, "mu_psd": 44.79530326491978, "erd_amplitude": 0.0, "event_latency": 0.0 } ] } 2025-07-28 22:34:55,420 - INFO - 127.0.0.1 - - [28/Jul/2025 22:34:55] "POST /upload HTTP/1.1" 200 - 2025-07-28 22:58:52,557 - DEBUG - Received upload request 2025-07-28 22:58:52,572 - DEBUG - Saving file to C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001\S001R01.edf 2025-07-28 22:58:52,574 - DEBUG - Loading EDF: C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001\S001R01.edf 2025-07-28 22:58:52,594 - DEBUG - EDF loaded: shape=(64, 9760), sfreq=160.0, channels=64 2025-07-28 22:58:54,532 - DEBUG - Chaos metrics: {'lorentz_trajectory': [[1.0, 1.012526435333749, 1.0488427648448813, 1.1074268310054123, 1.1872456699842253, 1.2879299443535448, 1.4100743204422619, 1.5546044176661293, 1.7226797617541962, 1.9156937847488102, 2.135501404667851, 2.3848509372121334, 2.6668380107922536, 2.984813421248435, 3.342383141022818, 3.7434083191594643, 4.191980636293861, 4.690242034217356, 5.244446379255251, 5.862109805589737, 6.548741906638002, 7.30784573505223, 8.140917802719603, 9.047448080762301, 10.024919999537499, 11.068810448637375, 12.172454030074087, 13.319363905546792, 14.484208344247893, 15.63513294827697, 16.731680385697324, 17.72479039053596, 18.558078017232326, 19.181057568135333, 19.537958095934012, 19.590016084394605, 19.32129990077376, 18.738709795818533, 17.868310041649757, 16.737663372007585, 15.398614892117966, 13.908598791349505, 12.327156229548489, 10.712315173349486, 9.10947837720894, 7.555592979577969, 6.078057482050836, 4.694801809243179, 3.4162471900409197, 2.2452230013149133, 1.181297687437059, 0.22176199989058532, -0.6383710027299765, -1.4063843651789711, -2.090985274463022, -2.6997109542721507, -3.2398852910893883, -3.7188737648943477, -4.144083449163219, -4.522963010868772, -4.862968807665948, -5.170009255773388, -5.4479837854463495, -5.7006486432102905, -5.931734687064622, -6.144947386482708, -6.343966822411869, -6.532447687273377, -6.7136985588011795, -6.8888340066299065, -7.058731372860783, -7.224289979754371, -7.386339467345437, -7.5456397934429615, -7.7028812336301336, -7.858684381264349, -8.013593048435599, -8.167488545892828, -8.319479097017247, -8.46866633725987, -8.614142894434366, -8.754992388717069, -8.890289432646965, -9.019099631125703, -9.140479581417596, -9.253476873149609, -9.35713008831137, -9.450594422061542, -9.532791072591133, -9.602206389748064, -9.657597021076525, -9.698008423928131, -9.722774865461929, -9.731519422644384, -9.724153982249392, -9.700879240858276, -9.662184704859783, -9.608848690450083, -9.541938323632781, -9.462772849451799, -9.371685987178621, -9.269630020722667, -9.158148638239561, -9.038783951303282, -8.913076494906171, -8.782565227458925, -8.648787530790598, -8.513279210148607, -8.377574494198718, -8.243206035025063, -8.111704908130129, -7.984600612434762, -7.863404747441387, -7.7492423187050825, -7.642944184696112, -7.545282114131972, -7.456948549077124, -7.378556604942999, -7.310640070487999, -7.253653407817487, -7.207971752383799, -7.173890912986237, -7.15162737177107, -7.141318284231538, -7.143021479207844, -7.156715458887163, -7.181874959232638, -7.217409249226833, -7.263409657025492, -7.319893661722231, -7.386736338229492, -7.463670357278543, -7.550285985419476, -7.6460310850212085, -7.750211114271484, -7.861989127176871, -7.980385773562762, -8.10427929907338, -8.232405545171764, -8.363357949139786, -8.495914576487744, -8.629752863825058, -8.763459277088652, -8.895515835795143, -9.024427049858648, -9.14871991959078, -9.266943935700645, -9.377671079294855, -9.47949582187751, -9.571035125350217, -9.650928442012074, -9.717837714559675, -9.770447376087121, -9.807531613047413, -9.828752723335299, -9.83379993391946, -9.822445766314303, -9.794701473837263, -9.750817041608803, -9.691281186552414, -9.616821357394612, -9.528403734664938, -9.42723323069597, -9.314753489623305, -9.19264688738557, -9.062834531724416, -8.927461942101298, -8.787713390817125, -8.644830853165788, -8.500562729492893, -8.356569210284198, -8.214422276165605, -8.075605697903164, -7.941515036403072, -7.813457642711677, -7.692652658015469, -7.580231013641087, -7.47723543105532, -7.384620421865098, -7.302954716502444, -7.232317569344705, -7.173131836879367, -7.125744194242481, -7.090413688185375, -7.067311737074662, -7.056522130892233, -7.05804103123526, -7.071776971316195, -7.097550855962773, -7.1350959616180045, -7.184057936340187, -7.2438408624372475, -7.3133908061992265, -7.392661148749552, -7.481583732765693, -7.579917354594806, -7.687247764253738, -7.802987665429025, -7.926376715476891, -8.056481525423253, -8.192195659963717, -8.332239637463571, -8.4751609299578, -8.619333963151075, -8.762960116417757, -8.9040677228019, -9.041733651545048, -9.175411283227357, -9.303033623622047, -9.422692562313493, -9.53264852875856, -9.63133049228661, -9.717335962099487, -9.789430987271533, -9.846550156749583, -9.887796599352956, -9.91244198377347, -9.91992651857543, -9.909852492276912, -9.881840335197099, -9.83624943855869, -9.77383947072025, -9.695523211097457, -9.602366550163127, -9.49558848944719, -9.376561141536701, -9.246809730075842, -9.108012589765915, -8.962001166365349, -8.810760016689695, -8.656426808611627, -8.501215340287875, -8.34670564920694, -8.19447313415197, -8.046067250400013, -7.902926422881614, -7.766378046180814, -7.637638484535146, -7.517813071835638, -7.407896111626812, -7.308770877106684, -7.221209611126764, -7.145873526192057, -7.083219149135018, -7.032952714674168, -6.995232605770079, -6.970275303333803, -6.958205343333993, -6.959055316796903, -6.972765869806392, -6.9991857035039216, -7.038071574088554, -7.089088292816957, -7.151808726003399, -7.225713795019751, -7.31011357873849, -7.403957374717543, -7.507029474944586, -7.619107646305065, -7.739784593686578, -7.868467959978874, -8.004380326073855, -8.146559210865576, -8.293857071250242, -8.444941302126212, -8.598294236393995, -8.752213144956256, -8.904810236717807, -9.054012658585616, -9.197562495468803, -9.334624071478189, -9.464335474289687, -9.584388298062176, -9.692736107769305, -9.787594520645944, -9.86744120618821, -9.931015886153448, -9.97732033456024, -10.005618377688402, -10.015435894078982, -10.006560814534264, -9.979043122117771, -9.933063375833731, -9.868448237605362, -9.786257552142349, -9.687860380509992, -9.574725367862372, -9.448420743442336, -9.3106143205815, -9.163073496700262, -9.00766525330778, -8.846356156001994, -8.681212354469608, -8.514399582486101, -8.348183028946847, -8.184666843939338, -8.025445046639371, -7.871984306766961, -7.725636568489001, -7.587639050419258, -7.459114245618373, -7.341069921593863, -7.234399120300118, -7.139880158138405, -7.058176625956866, -6.989837389050518, -6.935296587161249, -6.894387842218629, -6.866686924439915, -6.8523863742908615, -6.8515848157115595, -6.864281849317243, -6.890378052398285, -6.929674978920194, -6.9818751595236215, -7.046582101524358, -7.12330028891333, -7.211435182356607, -7.310293219195396, -7.4187462322832065, -7.535703212393713, -7.661079587735009, -7.794606359599258, -7.935795192632162, -8.083938414832934, -8.23810901755431, -8.397160655502544, -8.559727646737409, -8.7242249726722, -8.888848278073729, -9.051573871062331, -9.210158723111856, -9.362140469049681, -9.504837407056696, -9.635386638281505, -9.753725229178356, -9.859024334812688, -9.949018731657922, -10.021835817013518, -10.075995609004963, -10.110410746583785, -10.124386489527545, -10.117620718439838, -10.0902039347503, -10.042619260714591, -9.97574243941442, -9.890841834757518, -9.789205553658606, -9.670831001584585, -9.537578170613347, -9.391603304905122, -9.235047511469363, -9.070036760164752, -8.898681883699199, -8.723078577629838, -8.545307400363033, -8.36743377315437, -8.19150798010867, -8.019565168179971, -7.8536288706212245, -7.695622850755487, -7.546800938397233, -7.40817111123786, -7.2806441676331755, -7.1650337266034025, -7.062056227833178, -6.97233093167155, -6.896379919131983, -6.83462809189235, -6.787403172294942, -6.754935703346462, -6.737359048718023, -6.73451248013291, -6.74518638294261, -6.769366675357218, -6.807161898345692, -6.858544770950088, -6.9233521902855575, -7.001285231540347, -7.091909147975802, -7.1946533709263605, -7.308811509799559, -7.4335413520760305, -7.567864863309502, -7.7106681871267995, -7.8607354828340545, -8.017212966693926, -8.179243679756066, -8.345772489958605, -8.5155896051879, -8.687330573278524, -8.859476282013276, -9.030352959123178, -9.198132172287472, -9.360830829133624, -9.516311177237323, -9.66228080412248, -9.796292637261226, -9.915744944073918, -10.017881331929136, -10.100764433156062, -10.164634780781967, -10.208156853214215, -10.230274453611187, -10.230338898474587, -10.20810901764944, -10.163751154324084, -10.097839165030187, -10.011354419642732, -9.905685801380024, -9.782629706803688, -9.64439004581867, -9.493578241673237, -9.333068906145296, -9.162981965277103, -8.98482878759277, -8.801160007163114, -8.614402586788056, -8.426859817996617, -8.240711321046913, -8.058013044926163, -7.880697267350682, -7.710572594765888, -7.549323962346295, -7.398512633995519, -7.2594784903540095, -7.132904663623455, -7.019415088932684, -6.919567309433686, -6.833826511422586, -6.762565524339654, -6.706064820769292, -6.664512516440045, -6.638004370224596, -6.626543784139766, -6.630041803346518, -6.648317116149947, -6.680228095852599, -6.725027301938794, -6.783159275420805, -6.854867279360083, -6.940191550021407, -7.0389692968728825, -7.1508347025859464, -7.275218923035359, -7.411350087299215, -7.55825329765893, -7.714750629599253, -7.879461131808261, -8.050800826177358, -8.226982707801273, -8.406017657705853, -8.587268944634591, -8.770039610765313, -8.952293440642876, -9.131972706673974, -9.306998169127132, -9.47526907613271, -9.6346631636829, -9.78303665563173, -9.918224263695059, -10.038039187450586, -10.140273114337834, -10.22269621965817, -10.283423763794456, -10.3218497007096, -10.337033842066914, -10.328383997380124, -10.295734067952337, -10.239344046876033, -10.159900019033067, -10.058514161094676, -9.936724741521465, -9.796496120563422, -9.640218750259907, -9.47070917443966, -9.291060150592779, -9.10236981618524, -8.906799278867322, -8.707076658711406, -8.505774646253728, -8.305310502494375, -8.107946058897298, -7.915787717390292, -7.730786450365016, -7.554737800676982, -7.389281881645554, -7.235903360998501, -7.095648944771609, -6.96909317908797, -6.8568150132149945, -6.759299456887157, -6.676937580305993, -6.6100265141401024, -6.558769449525145, -6.523275638063845, -6.503560391825989, -6.499545083348426, -6.511057145635067, -6.5372937525509816, -6.576950981572713, -6.6305074059456155, -6.698331105039451, -6.780576972210342, -6.87718671480078, -6.987888854139619, -7.112198725542077, -7.249418478309739, -7.398637075730553, -7.558730295078834, -7.728360727615259, -7.905977778586871, -8.089817667227079, -8.277903426755655, -8.468764577742625, -8.66246318804759, -8.857104546984818, -9.050584770576615, -9.240745084936115, -9.42537182626729, -9.602196440864931, -9.768895485114667, -9.92309062549295, -10.062348638567068, -10.184181410995134, -10.286045939526094, -10.365506505847325, -10.421659650759985, -10.453330840646105, -10.459546454825183, -10.439822357860882, -10.394163899561033, -10.32306591497764, -10.227512724406873, -10.108978133389076, -9.969425432708755, -9.811307398394593, -9.637566291719438, -9.451593963899635, -9.254733542434357, -9.04889371524319, -8.837115157064973, -8.622267102767625, -8.407047347348136, -8.19398224593258, -7.985426713776103, -7.78356422626293, -7.590406818906363, -7.407795087348783, -7.237398053982101, -7.080464817808489, -6.937711176584645, -6.809778415676883, -6.697208695053258, -6.600445049283575, -6.519831387539383, -6.455612493593976, -6.407934025822396, -6.376842517201431, -6.362285375309612, -6.36411088232722, -6.381287515149129, -6.413008531528666, -6.459742401128868, -6.521770632018398, -6.599180401355229, -6.691864555386654, -6.79952160944928, -6.921655747969031, -7.057576824461144, -7.206400361530175, -7.367047550869994, -7.538245253263787, -7.718525998584054, -7.906227985792615, -8.099753826467976, -8.29894800377932, -8.502516477912176, -8.708747135704986, -8.915772781495876, -9.12157113712266, -9.323964841922836, -9.520621452733591, -9.709053443891799, -9.886618207234019, -10.0505180520965, -10.197800205315172, -10.325356811225664, -10.429924931663273, -10.509242694274901, -10.563124617947837, -10.590243943545273, -10.589740727333378, -10.56128123162757, -10.505057924792517, -10.42178948124214, -10.312720781439607, -10.179622911897338, -10.024793165177003, -9.851055039889525, -9.661758240695073, -9.460647126667864, -9.248484210392412, -9.027377880178593, -8.800615601726816, -8.571285307507699, -8.342275396762046, -8.116274735500868, -7.895772656505365, -7.6830589593269405, -7.480223910287188, -7.289158242477907, -7.11152734778165, -6.9483904249257264, -6.80045151960636, -6.668326268035488, -6.552526918389259, -6.453462330808045, -6.371437977396435, -6.306655942223234, -6.259214921321466, -6.2291102226883766, -6.216233766285424, -6.220045735099047, -6.239236728324175, -6.274137938862359, -6.325085252704138, -6.392229563353213, -6.475536771826453, -6.574787786653891, -6.689578523878725, -6.819319907057318, -6.9632378672592, -7.120373343067063, -7.289582280576766, -7.469535633397332, -7.658719362650954, -7.855619290226343, -8.059963378901333, -8.270766971196366, -8.486606756326628, -8.705823907023454, -8.926524079534246, -9.146577413622595, -9.363618532568202, -9.575046543166891, -9.778025035730618, -9.969482084087467, -10.14611024558165, -10.3043665610735, -10.440472554939493, -10.552356346863064, -10.63906505743021, -10.69833474145512, -10.728540915647725, -10.728702008585254, -10.698479360712229, -10.638177224340467, -10.548742763649079, -10.431766054684475, -10.289480085360351, -10.124760755457707, -9.941126876624832, -9.74262704374555, -9.529299146131443, -9.302810678944223, -9.066844954678926, -8.824885570142529, -8.580216406453953, -8.335921629044055, -8.09488568765564, -7.859793316343454, -7.63312953347418, -7.417179641726447, -7.214018230909568, -7.025163097976971, -6.851545744292793, -6.693952201430297, -6.553050292730022, -6.429389633299802, -6.323401630014749, -6.235399481517266, -6.16557817821704, -6.1140145022910435, -6.0806670276835355, -6.065006490935123, -6.065987350328593, -6.083855888450332, -6.118801031573438, -6.170864571821662, -6.239941167169406, -6.325778341441723, -6.427976484314318, -6.545988851313546, -6.679121563816418, -6.826533609050591, -6.987236840094377, -7.16009597587674, -7.343914270556231, -7.538181974375951, -7.742465066178709, -7.955989176337656, -8.177654987369648, -8.40603823393523, -8.639389702838658, -8.875635233027872, -9.11237571559452, -9.346887093773946, -9.57612036294519, -9.796701570630992, -10.004931816497788, -10.196816989822064, -10.370828640690364, -10.524398286970609, -10.653691289698742, -10.755581716924958, -10.827652343713696, -10.868194652143652, -10.876208831307766, -10.851403777313232, -10.794197093281491, -10.705715089348239, -10.58779278266341, -10.441343065899435, -10.267497888805787, -10.069789389187859, -9.851753949508923, -9.616920773699706, -9.368811887158405, -9.110942136750674, -8.846819190809638, -8.579943539135877, -8.313808492997438, -8.051900447666117, -7.797754585466976, -7.553852312253302, -7.322005783592637, -7.103842314261366, -6.900804378244723, -6.714149608736789, -6.544950798140497, -6.394095898067622, -6.262288019338793, -6.15004543198348, -6.057701565240005, -5.984875493197264, -5.930640461362261, -5.895014964238059, -5.877960628182321, -5.879358024868149, -5.899006671284084, -5.936625029734106, -5.991850507837634, -6.064239458529525, -6.1532671800600784, -6.258327915995029, -6.378456196120566, -6.512769761829688, -6.661698356131369, -6.825438944131511, -7.003875176621308, -7.196577390077255, -7.402802606661146, -7.621494534220067, -7.851283566286405, -8.090486782077845, -8.337107946497365, -8.58883751013325, -8.843052609259068, -9.096817065833694, -9.347569994447012, -9.59412944296327, -9.83274892586172, -10.059610516710844, -10.271081476082484, -10.463714251551842, -10.634246477697486, -10.779600976101339, -10.896885755348693, -10.983394011028194, -11.036604125731854, -11.054376746189545, -11.035964280250669, -10.981481428092648, -10.891633084516688, -10.767718335565634, -10.611630458523976, -10.42585692191785, -10.213479385515033, -9.978173700324945, -9.724209908598652, -9.45645224382886, -9.17896518092362, -8.894633096706848, -8.607587271780016, -8.321634549912252, -8.040240932010176, -7.766531576117909, -7.50329079741706, -7.252962068226739, -7.0176480180035306, -6.799110182191392, -6.598588931593856, -6.416735423783791, -6.254060552391942, -6.110961268943225, -5.987720582856733, -5.884507561445735, -5.801377329917677, -5.738271071374176, -5.695016026811027, -5.67127437894807, -5.6655102725116535, -5.6775845494007395, -5.707948517525475, -5.756876214411522, -5.824464407200071, -5.910632592647825, -6.015122997127014, -6.137500576625385, -6.277153016746208, -6.433290732708274, -6.604946869345892, -6.790977301108893, -6.990060632062631, -7.200910734942229, -7.42371379485179, -7.658210899008282, -7.903596072099213, -8.158658812260963, -8.421784091078777, -8.690952353586773, -8.963739518267936, -9.237316977054117, -9.508451595326038, -9.773505711913291, -10.028437139094333, -10.268799162596492, -10.491400960811863, -10.693637330924663, -10.870423292222078, -11.017440698571619, -11.13118837122147, -11.20898209880049, -11.248954637318214, -11.250055710164856, -11.212052008111302, -11.135527189309116, -11.02172743836465, -10.870602508052292, -10.684879710285756, -10.468415406276245, -10.225188259471134, -9.959299235553976, -9.674971602444502, -9.376550930298624, -9.068505091508428, -8.755424260702176, -8.44202091474431, -8.133004873574595, -7.831871448514517, -7.541354957475765, -7.263910052704116, -7.001711959888221, -6.756656478159602, -6.5303599800926575, -6.324159411704661, -6.139112292455757, -5.975996715248969, -5.835304604083793, -5.716292932033446, -5.618266622153557, -5.541123268810432, -5.4846970173036524, -5.448758563866075, -5.43301515566383, -5.4371105907963235, -5.460625218296235, -5.503075938129518, -5.563916201195403, -5.642209880626704, -5.737553207744417, -5.850409462841139, -5.981033543624884, -6.129462862922454, -6.295517348679427, -6.478799443960166, -6.678694106947816, -6.8943688109443, -7.124773544370328, -7.368640810765387, -7.624485628787749, -7.890606252489617, -8.165667036782889, -8.448417166714737, -8.736931137785636, -9.028896019245243, -9.3216114540924, -9.611989659075137, -9.89655542469067, -10.171446115185397, -10.432411668554902, -10.674814596543957, -10.893629984646518, -11.083445492105726, -11.238561291235479, -11.356698628218233, -11.435698067506443, -11.473017788368411, -11.46714724858019, -11.417607184425583, -11.32494961069615, -11.1907578206912, -11.017646386217796, -10.80926115759075, -10.570279263632631, -10.306409111673759, -10.022959356072608, -9.719411807629815, -9.40060185698769, -9.071976456287343, -8.738589231017, -8.405100480012, -8.075777175454807, -7.754492962874992, -7.444728161149251, -7.149569790892485, -6.871673364793906, -6.612653403950992, -6.373609663912343, -6.1554519244162105, -5.958899989390499, -5.784483686952766, -5.632542869410221, -5.503227413259728, -5.396497219187801, -5.3119750101434, -5.2485317259284585, -5.205989294556362, -5.1842662824151, -5.183197665645914, -5.202534830143294, -5.241945571554977, -5.301014095281951, -5.379241016478454, -5.476043360051969, -5.590754560663235, -5.722624084685755, -5.8711576359978634, -6.036776221242916, -6.219829022346376, -6.420375336478269, -6.638184576053179, -6.872736268730252, -7.123220057413194, -7.388535700250272, -7.667293070634313, -7.957812157202707, -8.258123063837402, -8.565966009664908, -8.879230201532385, -9.195610178693487, -9.511529581946435, -9.823139927036284, -10.126340741415417, -10.416779564243566, -10.68985194638779, -10.940701450422498, -11.164219650629425, -11.355046132997652, -11.507976092598339, -11.620243917269454, -11.688180652420217, -11.708958266995737, -11.681046402318996, -11.60421237209083, -11.479521162389942, -11.309335431672897, -11.097315510774123, -10.84841940290591, -10.56884241458601, -10.261310820095364, -9.929917318524744, -9.581070675529574, -9.220776265837811, -8.854636073249953, -8.487848690639026, -8.125209319950601, -7.771109772202781, -7.42953846748621, -7.104115616864463, -6.7973797834087275, -6.510922775651294, -6.24606957502629, -6.003887644894541, -5.785186930543568, -5.590519859187591, -5.420181339967528, -5.274208763950994, -5.152299765221021], [1.0, 1.2602660236168577, 1.5246335723524451, 1.7991441836578583, 2.089728465710837, 2.402034337231003, 2.741062813428148, 3.112108094933138, 3.5209056034597817, 3.9736319818048305, 4.476508624259135, 5.0358407583463, 5.6584509900370925, 6.351383862848584, 7.121905813858448, 7.977505173704959, 8.925778443221201, 9.963354240539273, 11.1014214855464, 12.355152644794467, 13.72930570570825, 15.218224176585434, 16.805837086596576, 18.465658985785158, 20.160789945067535, 21.84391555623297, 23.45754370283531, 24.927788026075323, 26.130471116352034, 26.938428538030376, 27.23522106634597, 26.91513468740514, 25.879224671434386, 24.060423345716178, 21.57025996397508, 18.552428513235164, 15.152118776873753, 11.516016334621394, 7.810398882381861, 4.3020344437607125, 1.1578489839938353, -1.527493297304403, -3.7170042314612246, -5.428463401599892, -6.710890706310459, -7.623971241460531, -8.234967983687026, -8.617721943580147, -8.829542700730316, -8.914353821913945, -8.910905518039147, -8.850385250725857, -8.75641773230583, -8.645357756192142, -8.530342010868546, -8.419156527828727, -8.317372099743235, -8.229513447955323, -8.159059222480957, -8.108442002008802, -8.078837290813777, -8.069230532403084, -8.078846414866488, -8.106927167931449, -8.152570116259975, -8.214727679448623, -8.292207372028502, -8.38367180346526, -8.487560486117289, -8.602025828043356, -8.725544330125395, -8.856498079629198, -8.993125453940417, -9.133521120564568, -9.275636037127033, -9.417277451373055, -9.556125604289676, -9.690394953873497, -9.817943815603948, -9.936401239313605, -10.04354934905263, -10.137323343088783, -10.215811493907406, -10.277255148211436, -10.320048726921405, -10.34273972517543, -10.344028712329223, -10.322680317834667, -10.278289927274846, -10.211537685984485, -10.123326943851147, -10.014763721135683, -9.887156708472236, -9.742017266868242, -9.58105942770442, -9.406199892734783, -9.219558034086635, -9.023455894260566, -8.820418186130464, -8.6132106562799, -8.405927040773786, -8.201681620145132, -8.002745402265768, -7.811223147172688, -7.629053367068048, -7.45800832631916, -7.299694041458496, -7.155550281183689, -7.02685056635753, -6.914702170007971, -6.820046117328123, -6.743657185676255, -6.685937836956949, -6.644732023758531, -6.619692282099529, -6.61111038970383, -6.619082629546092, -6.643509789851739, -6.684097164096964, -6.740354551008731, -6.811596254564771, -6.896941083993584, -6.995312353774438, -7.105437883637372, -7.225849998563191, -7.3548855287834725, -7.491509520338424, -7.636624499743727, -7.789643601403191, -7.949756754880583, -8.116032680399787, -8.287418888844805, -8.462741681759757, -8.640706151348883, -8.819896180476544, -8.998774442667212, -9.175682402105481, -9.348840313636066, -9.516347222763795, -9.676180965653618, -9.826554038916548, -9.966258371830582, -10.09254942083166, -10.202850520156446, -10.294919311231842, -10.366847742674974, -10.417062070293197, -10.444322857084096, -10.447724973235482, -10.426697596125404, -10.381004210322127, -10.310742607584155, -10.216344886860217, -10.098425065093105, -9.957214359092408, -9.795729209724989, -9.617434121942843, -9.425627050255322, -9.223439398729127, -9.01383602098832, -8.799615220214317, -8.583408749145882, -8.367681810079148, -8.154733054867592, -7.946694584922046, -7.745531951210701, -7.553062448511212, -7.372350275021708, -7.205951003678668, -7.055342134229806, -6.921720456087645, -6.8060020483295105, -6.708822279697546, -6.630535808598694, -6.571216583104713, -6.5306578409521645, -6.508372109542423, -6.503591205941669, -6.515266236880893, -6.54236935793654, -6.584662041739082, -6.641834188471432, -6.713477573309693, -6.799092105287347, -6.898085827295245, -7.009774916081612, -7.133383682252044, -7.268044570269512, -7.4127981584543585, -7.566593158984299, -7.728286417894421, -7.896809001087917, -8.07184479382068, -8.25239957483902, -8.437248831803542, -8.625057029452362, -8.814377609601102, -9.003652991142893, -9.19121457004837, -9.375282719365675, -9.553966789220462, -9.725265106815879, -9.887064976432594, -10.037142679428774, -10.173163474240098, -10.292681596379747, -10.393717216933542, -10.474517429523797, -10.532908639749504, -10.567153794173173, -10.575957016070056, -10.558463605428146, -10.514260038948176, -10.443373970043618, -10.346274228840688, -10.223870822178338, -10.077514933608263, -9.9089989233949, -9.72055541490668, -9.515052647015864, -9.29626299993238, -9.06794955806303, -8.833682932642184, -8.596841261731788, -8.360610210221353, -8.12798296982796, -7.901760259096263, -7.684550323398485, -7.478768934934419, -7.286639392731429, -7.110192522644447, -6.951117403278269, -6.809815006407505, -6.6871417510202, -6.583890496458093, -6.500572878873887, -6.4374193112312525, -6.394378983304827, -6.371119861680209, -6.367028689753966, -6.38121098773363, -6.4124910526377, -6.459411958295636, -6.520442835165364, -6.595773970637356, -6.68521603668008, -6.788256273723043, -6.904308120981534, -7.032711216456628, -7.172731396935186, -7.32356069798985, -7.4843173539790495, -7.654045798046997, -7.831716662123689, -8.016226776924908, -8.206489615020677, -8.40188983596458, -8.601032770647816, -8.802271293580354, -9.00387051321159, -9.204007771930334, -9.40077264606482, -9.592166945882699, -9.776104715591044, -9.950412233336351, -10.11282801120453, -10.261002795220914, -10.392499565350258, -10.504793535496736, -10.595272153503942, -10.661656556610017, -10.7023287550876, -10.71592436965587, -10.701525286207318, -10.658659670044681, -10.587301965880943, -10.48787289783934, -10.36123946945335, -10.208714963666708, -10.032058942833391, -9.833477248717626, -9.61562200249389, -9.381760042433546, -9.136730589106863, -8.884701654725426, -8.629424742690311, -8.374436252987152, -8.123057482186137, -7.8783946234420235, -7.643338766494116, -7.420565897666283, -7.212536899866954, -7.021497552589114, -6.849478531910307, -6.698293466777031, -6.5677500260037025, -6.457323244134125, -6.3676369078951565, -6.2990410891210535, -6.251612144753469, -6.225152716841455, -6.219191732541458, -6.232984404117324, -6.265512228940295, -6.315482989489012, -6.381330753349513, -6.46121587321523, -6.554336972331245, -6.661382332747329, -6.781849389615288, -6.915149003489203, -7.06061622390393, -7.21751028937509, -7.385014627399081, -7.5622368544530705, -7.748208775994998, -7.9418863864635725, -8.142149869278278, -8.347803596839364, -8.557980380467752, -8.77180291844666, -8.987123441878142, -9.201725457844521, -9.41336194016083, -9.61975532937476, -9.818597532766685, -10.007549924349647, -10.184243344869369, -10.346278101804243, -10.491223969365343, -10.61662018849641, -10.71997546687387, -10.798767978906813, -10.850445365737016, -10.872415921555946, -10.86210051369038, -10.81948893533838, -10.74564738686183, -10.641874284474355, -10.50970026024133, -10.35088816207987, -10.167433053758835, -9.961562214898827, -9.735735140972196, -9.492643543303032, -9.23521134906717, -8.96659470129219, -8.690856814291855, -8.415235446305326, -8.143734357145652, -7.879551058515536, -7.625627433122485, -7.384649734678811, -7.159048587901633, -6.9509989885128745, -6.762420303239267, -6.594976269812345, -6.45007499696845, -6.328868964448729, -6.2321665349566615, -6.157526038713206, -6.103798228987777, -6.071128723577401, -6.059443944848854, -6.06845111973866, -6.097638279753093, -6.146274260968172, -6.213408704029669, -6.297872054153102, -6.39827556112374, -6.513011279296599, -6.640252067596444, -6.778354611239248, -6.9284279723473325, -7.0903909821508995, -7.2636388759413, -7.44744373552113, -7.640954489204228, -7.843196911815676, -8.053073624691802, -8.26936409568017, -8.490724639139597, -8.715688415940136, -8.942665433463088, -9.169942545600993, -9.395884592822021, -9.619835591874702, -9.83847389384135, -10.04808456902251, -10.245191467619236, -10.426557219733079, -10.5891832353661, -10.730309704420868, -10.847415596700452, -10.93821866190843, -11.000675429648885, -11.032981209426403, -11.03357009064608, -11.00111494261351, -10.9345274145348, -10.831400288699085, -10.690255494193734, -10.516649717766903, -10.315996399405586, -10.093247839368521, -9.852895198186172, -9.598968496660746, -9.335036615866178, -9.06420729714815, -8.78912714212407, -8.511981612683083, -8.234495030986075, -7.957930579465664, -7.683463094810176, -7.420063878312348, -7.173362379680764, -6.9456684645484, -6.738883840036248, -6.554502054753318, -6.393608498796637, -6.256880403751252, -6.144586842690225, -6.056588730174638, -5.992338822253589, -5.950881716464195, -5.930854310369259, -5.9311418712442325, -5.9512314668624295, -5.990563399909557, -6.0484966217145235, -6.124308732249446, -6.217195980129641, -6.32627326261363, -6.450574125603138, -6.589050763643094, -6.740574019921631, -6.903933386270086, -7.078459295575534, -7.264134734746131, -7.460418754846489, -7.6665909944080255, -7.881752468100064, -8.104825566729835, -8.334554057242476, -8.569503082721031, -8.808059162386451, -9.048430191597596, -9.288645441851227, -9.526555560782018, -9.759832572162548, -9.985969875903303, -10.202282970655363, -10.406749182970033, -10.595972282718538, -10.765607285317683, -10.911798558862214, -11.031179824124822, -11.120874154556127, -11.1784939762847, -11.202141068117047, -11.19040656153761, -11.142370940708778, -11.057604042470873, -10.936165056342162, -10.777692242489884, -10.582569593871934, -10.356504283511086, -10.105154784297792, -9.833798314820402, -9.547330839365184, -9.250267067916301, -8.946740456155826, -8.64050320546374, -8.334926262917925, -8.032999321294175, -7.7373308190661865, -7.450453707025828, -7.179245738589397, -6.927865561967064, -6.698522820648053, -6.492961086315876, -6.312457858848336, -6.157824566317523, -6.029406564989818, -5.927083139325892, -5.850267501980702, -5.797906793803497, -5.768482105676627, -5.760568271186873, -5.773560441437439, -5.806793236164028, -5.859545743910568, -5.9310415220292185, -6.02044859668037, -6.126879462832641, -6.24939108426288, -6.386984893556166, -6.5386067921058055, -6.703147150113336, -6.87969969613766, -7.068213675330882, -7.268288618858554, -7.479311277695299, -7.70048389880777, -7.930824225154646, -8.169165495686638, -8.414156445346489, -8.664261305068962, -8.917759801780859, -9.172747158401009, -9.427134093840266, -9.678646823001516, -9.924827056779678, -10.163032002061696, -10.390811590888177, -10.605325247384346, -10.801767671003725, -10.975703831997713, -11.123196013051032, -11.24080380928174, -11.325584128241218, -11.37509118991418, -11.387376526718667, -11.360988983506047, -11.294974717561017, -11.188877198601604, -11.042262232220867, -10.853583381015124, -10.628315564187176, -10.372833016851656, -10.093055681059026, -9.794449205795576, -9.482024946983433, -9.160339967480557, -8.833497037080729, -8.505144632513577, -8.17847693744455, -7.85623384247493, -7.5407903010030894, -7.239655168925597, -6.958826634744016, -6.700901214449172, -6.467952732624536, -6.261532322446217, -6.08266842568297, -5.931866792696189, -5.809110482439911, -5.713859862460816, -5.645052608898224, -5.601103882022646, -5.580407741761831, -5.582162607431239, -5.605593233580322, -5.6498736179106155, -5.714127001275738, -5.7974258676813895, -5.898791944285355, -6.0171962013975016, -6.151558852479781, -6.300749354146224, -6.46358640616295, -6.639406741704176, -6.828312811079023, -7.029888971805326, -7.243554498414342, -7.4685669335273985, -7.704022087855896, -7.948854040201311, -8.20183513745519, -8.461575994599151, -8.726525494704894, -8.994970788934182, -9.26503729653886, -9.534688704860836, -9.801726969332101, -10.064099037521494, -10.320065062194947, -10.564546842435643, -10.792408054358987, -10.998954454279172, -11.1799338787092, -11.331536244360855, -11.450393548144728, -11.5335798671702, -11.578611358745452, -11.583446260377457, -11.546484889771984, -11.466569644833601, -11.342985003665673, -11.17316494367021, -10.957237021758457, -10.703400931796075, -10.419312230621246, -10.11188554613122, -9.787294577282294, -9.450972094089831, -9.107609937628244, -8.761159020031009, -8.414829324490654, -8.07108990525877, -7.731668887645998, -7.39791824239769, -7.080274685960744, -6.785641599731247, -6.516639369418936, -6.275297930586426, -6.063056768649204, -5.88076491887563, -5.728680966386937, -5.606473046157235, -5.513218843013503, -5.447405591635597, -5.407013808592985, -5.390790291661755, -5.397886530448421, -5.427355115682728, -5.478217076152157, -5.549461878701931, -5.640047428235003, -5.748900067712068, -5.874914578151554, -6.016954178629629, -6.173850526280194, -6.344622508150169, -6.529388742166002, -6.727884120971334, -6.939624874707443, -7.163986482710667, -7.400203673512407, -7.647370424839124, -7.9044399636123375, -8.170224765948632, -8.443396557159645, -8.722486311752084, -9.00588425342771, -9.29183985508335, -9.578461838810886, -9.863919016332197, -10.14629252834597, -10.420695242656265, -10.682089979068808, -10.925723019366371, -11.147124107308706, -11.342106448632657, -11.506766711052082, -11.63748502425787, -11.73092497991795, -11.784033631677277, -11.794041495157844, -11.758462547958676, -11.675094229655835, -11.537916295668772, -11.347582271857162, -11.11304341148178, -10.842398597024781, -10.54288284088559, -10.220867285380901, -9.881859202744685, -9.530501995128184, -9.170575194599909, -8.80499446314565, -8.435811592668465, -8.064214504988682, -7.690849286474466, -7.329154575590641, -6.989181938595335, -6.674338740212094, -6.387375771709541, -6.130387250901381, -5.904810822146395, -5.711427556348447, -5.550361950956474, -5.4210819299645, -5.322398843911623, -5.252460027376549, -5.209329906626082, -5.191895562559699, -5.199094359006064, -5.229812353930988, -5.282884299437433, -5.357093641765511, -5.451172521292482, -5.563801772532755, -5.693610924137893, -5.839178198896603, -5.999485546176893, -6.1749533446918905, -6.365250576713241, -6.569889636058173, -6.788301707723719, -7.019836767886719, -7.263763583903817, -7.519269714311461, -7.785461508825907, -8.061364108343215, -8.345921444939247, -8.637996241869677, -8.936370013569977, -9.239784069824628, -9.54617325660569, -9.851925873766296, -10.153233381531896, -10.44619829696377, -10.726834193959023, -10.991065703250598, -11.234728512407266, -11.453569365833626, -11.643246064770114, -11.79932746729299, -11.91729348831435, -11.99253509958212, -12.020341526338406, -11.995856076418105, -11.918524015819608, -11.78984726226535, -11.611874295816039, -11.387200158870659, -11.118966456166469, -10.810861354779007, -10.467119584122084, -10.09252243594779, -9.692397764346488, -9.272619985746818, -8.842791447580229, -8.414007867448321, -7.9927786160055945, -7.58496958296014, -7.195824243506355, -6.8299636583249335, -6.491386473582882, -6.183468920933503, -5.908964817516406, -5.670005565957505, -5.468097611837334, -5.301067954476938, -5.1662913287132355, -5.06339368590343, -4.991680225352757, -4.95013539431448, -4.937422887989895, -4.951885649528325, -4.991545870027125, -5.054104988531678, -5.136943692035398, -5.237121915479728, -5.353267571627883, -5.487004990816794, -5.637699540115593, -5.804690479244338, -5.98736067666767, -6.185136609594812, -6.397488363979571, -6.623929634520341, -6.8640177246600915, -7.117353546586385, -7.38358162123136, -7.662128138315135, -7.951813375463027, -8.251819809086625, -8.560979218074547, -8.87772177366964, -9.20007603946898, -9.525668971423869, -9.851725917839833, -10.175070619376626, -10.49212520904823, -10.798910212222856, -11.091044546622935, -11.363745522325134, -11.611828841760337, -11.830272920331069, -12.014522365697761, -12.157840545665747, -12.254452254099245, -12.299795006117034, -12.290519038092453, -12.224487307653401, -12.100775493682335, -11.919671996316271, -11.682677936946787, -11.392507158220019, -11.052116709992072, -10.667467794307786, -10.249416980918834, -9.808098527087479, -9.352763175551246, -8.89177815452293, -8.4326271776906, -7.981910444217588, -7.545344638742498, -7.127762931379201, -6.733114977716838, -6.366669484673502, -6.034391415374654, -5.738534846927349, -5.480516531853708, -5.260944254532192, -5.079616831197608, -4.935524109941106, -4.826846970710178, -4.750957325308656, -4.70442294805911, -4.6851938683944825, -4.6924833176833, -4.724691004332686, -4.780299897896631, -4.857876229075999, -4.956069489718522, -5.073612432818802, -5.209321072518314, -5.3620946841054025, -5.530941138008486, -5.715771871371197, -5.916507442100515, -6.132760594246079, -6.364092400593757, -6.610012262665641, -6.8699779107200545, -7.143395403751551, -7.429619129490908, -7.727951804405137, -8.037644473697473, -8.357896511307382, -8.68785561991056, -9.026617830918926, -9.373050286036905, -9.724041756314113, -10.075593606717838, -10.423523625032173, -10.763400350186938, -11.090543072257676, -11.400021832465658, -11.686657423177877, -11.945021387907056, -12.169436021311645, -12.353974369195814, -12.492460228509463, -12.57846814734822, -12.605528639462083, -12.570306152390364, -12.47215661894242, -12.311523250135087, -12.089925135943796, -11.809957245302575, -11.47529042610405, -11.090671405199439, -10.661922788398563, -10.195943060469833, -9.700976672739598, -9.190700926987523, -8.676552134807087, -8.167630373609004, -7.672129662307604, -7.197337961320841, -6.749637172570283, -6.334503139481125, -5.956505646982177, -5.61930842150587, -5.325669130988256, -5.074479502114936, -4.862975121237278, -4.6910054810912, -4.557880517063618, -4.462366356560629, -4.402685319007517, -4.376515915848748, -4.3809928505479725, -4.412707018588023, -4.467705507470919, -4.54152034583346, -4.634002730964389, -4.746293164474873, -4.877321809125977, -5.026169415787947, -5.192067323440208, -5.374397459171372, -5.57269233817923, -5.786635063770756, -6.016059327362106, -6.260949408478616, -6.521111352137295, -6.796257083635316, -7.086393689709154, -7.391226411141468, -7.710152447523238, -8.042260957253763, -8.386333057540664, -8.740841824399881, -9.103952292655672, -9.473521455940618, -9.84709826669562, -10.221923636169894, -10.594934259892757, -10.964229490908384, -11.32380761796862, -11.665173530328484, -11.980383225548307, -12.262043809493726, -12.503313496335684, -12.697901608550435, -12.84006857691954, -12.92462594052987, -12.946936346773601, -12.902913551348218, -12.789022418256518, -12.601901476398178, -12.331646960013135, -11.987984637992938, -11.587080896526668, -11.14310954765855, -10.668251829287964, -10.172696405169427, -9.664639364912617, -9.150284223982348, -8.633841923698592, -8.117530831236465, -7.601576739626229, -7.089092421935404, -6.605795021703842, -6.16022490431683, -5.756443490740766, -5.397277069620126, -5.084316797277461, -4.817918697713395, -4.597203662606633, -4.42005745131395, -4.2831308309077745, -4.183084522948512, -4.117815993041674, -4.084995885539322, -4.0823382647927655, -4.1076006151525615, -4.158583840968515, -4.233132266589678, -4.3291336363643484, -4.444519114640073, -4.577534007513342, -4.72830182530277, -4.896307991750897, -5.080928074125314, -5.281671956963393, -5.498183842072281, -5.730242248528901, -5.977760012679955, -6.240784288141921, -6.5194965458010525, -6.814212573813382, -7.12535453381525, -7.451947437332835, -7.793358552646696, -8.149256509940123, -8.51874371628088, -8.900356355621208, -9.292064388797817, -9.691271553531896, -10.094815364429103, -10.498967112979567, -10.899431867557901, -11.29134847342318, -11.669289552718963, -12.028263535113997, -12.361190880625577, -12.65784545317771, -12.908972413312696, -13.106352250267278, -13.242800781972637, -13.312169155054395, -13.309343844832616, -13.230246655321805, -13.071834719230907, -12.830853983037333, -12.50391272228022, -12.103382631585484, -11.642752073139667, -11.134418125884503, -10.589686585516922, -10.01877196448906, -9.430797492008248, -8.833795114037006, -8.234705493293069, -7.639533159485056, -7.065524554901114, -6.527108657850594, -6.030569848529395, -5.580684154178877, -5.180719249085869, -4.832434454582659, -4.536080739047, -4.290400717902106, -4.092628653616661, -3.9388290219065185, -3.8257903502211756, -3.7506944313429216, -3.710724223691946, -3.7030656168560054, -3.7249074315904194, -3.7734414198180737, -3.8458622646294187, -3.939367580282471, -4.051570877802729], [1.0, 0.9848771469249452, 0.9730975826471474, 0.9651532309165722, 0.9617570252901997, 0.963904606417799, 0.9727601655196005, 0.9899192304647947, 1.0174647047259775, 1.057966867379151, 1.1149430227324708, 1.192078097761772, 1.2939084534994867, 1.426829887582959, 1.5990977215072504, 1.8208268006251416, 2.1040149031683373, 2.465412055835648, 2.922781261820937, 3.49573286187271, 4.208308411941916, 5.088980683181951, 6.170653661948647, 7.490662549800286, 9.09077376349759, 11.017184935003726, 13.319676765062745, 16.013277922693206, 19.09891690146636, 22.550897700579338, 26.2987607072238, 30.22728269658591, 34.17901791860924, 37.96377819776274, 41.34061632404104, 44.11812871543175, 46.17182900435874, 47.444148037682076, 47.94000011753252, 47.713774612350996, 46.889140761025594, 45.613943439583586, 44.05463346215421, 42.37201395635693, 40.660443799954486, 38.9965470513804, 37.4331847014341, 35.9991779015414, 34.70351752958226, 33.54253091085396, 32.508733317624525, 31.592170937477576, 30.780420873312334, 30.058848526828932, 29.415834904267893, 28.841831398114252, 28.327962708366236, 27.86656712596843, 27.45119653281176, 27.076616401733492, 26.738618905143927, 26.433630643943474, 26.16005009540578, 25.9165303736676, 25.701749830721077, 25.514412056413693, 25.353245878448316, 25.21700536238317, 25.104701810355778, 25.0169179595198, 24.954221182698806, 24.916877282929516, 24.904914058529055, 24.91812130309493, 24.956050805505043, 25.018016349917684, 25.103097771179424, 25.21056131213016, 25.340034671251278, 25.4908023921227, 25.661758497642236, 25.851406490025568, 26.057859350806265, 26.278839540835765, 26.511679000283397, 26.753319148636365, 27.00031088469975, 27.249519007573898, 27.498387658084113, 27.742954277839182, 27.979502196412305, 28.204623473716573, 28.41521890000498, 28.60849799587041, 28.78197901224565, 28.933488930403378, 29.06116346195617, 29.1634470488565, 29.23909286339674, 29.28719706759695, 29.308294314876285, 29.30267143749045, 29.2704165965432, 29.211988779234215, 29.1282177988591, 29.020304294809367, 28.889819732572445, 28.738706403731687, 28.56927742596635, 28.384216743051624, 28.186579124858607, 27.97979016735431, 27.767421643164862, 27.549988846231564, 27.328623964844226, 27.105146003666924, 26.88134098514783, 26.658961949519192, 26.439728954797353, 26.225329076782735, 26.01741640905985, 25.817612062997295, 25.627504167747745, 25.448647870247967, 25.28256533521882, 25.130745745165235, 24.99412039865892, 24.872806946985882, 24.768237352414825, 24.681757965831324, 24.614549030546524, 24.56762468229713, 24.541832949245425, 24.53785575197926, 24.55620890351206, 24.597242109282814, 24.661138967156077, 24.747916967421983, 24.857427492796226, 24.989355818420083, 25.14318370401779, 25.317902475301963, 25.512145595029583, 25.72428742080819, 25.952439495364818, 26.194450546546, 26.44790648731778, 26.710130415765683, 26.978182615094745, 27.24886055362951, 27.518698884814, 27.783969447211756, 28.04068126450581, 28.28464462943248, 28.512415509089394, 28.720885302650096, 28.907253469400995, 29.069153078788577, 29.204650810419388, 29.31224695406003, 29.39087540963718, 29.439903687237575, 29.45913290710802, 29.448797799655384, 29.409566705446597, 29.342541575208664, 29.249271132548284, 29.132487143298317, 28.994216410291685, 28.83595844433886, 28.659409107360958, 28.46646061238972, 28.259201523567526, 28.039916756147385, 27.81108757649294, 27.57539160207847, 27.33570280148888, 27.095091494419716, 26.856824351677158, 26.62273073121497, 26.392328058983196, 26.16728069324852, 25.949242982331707, 25.739798436189886, 25.540459726416568, 25.352668686241643, 25.177796310531367, 25.017142755788374, 24.871937340151675, 24.743338543396654, 24.632434006935068, 24.54005524278408, 24.466504595347423, 24.41326528597613, 24.381739953037894, 24.373067812158077, 24.388124656219745, 24.427522855363627, 24.49161135698815, 24.580475685749427, 24.693937943561245, 24.831556809595078, 24.99262754028009, 25.176181969303123, 25.380988507608706, 25.60555214339906, 25.84844205379741, 26.10728060852878, 26.378647011639956, 26.659090747432575, 26.94513575647864, 27.233280435620514, 27.51999763797092, 27.801734672912943, 28.07491330610003, 28.335929759455993, 28.581154711175, 28.80693329572158, 29.009586364959773, 29.185815703674564, 29.33347062995168, 29.45097200580437, 29.53719340656525, 29.591461120886304, 29.613554150738864, 29.60370421141364, 29.562595731520695, 29.491365852989464, 29.391604431068743, 29.265354034326684, 29.11510994465081, 28.943839659100696, 28.754527139725514, 28.549322507283595, 28.330332272009365, 28.099722973098473, 27.859721178707762, 27.612613485955286, 27.360746520920316, 27.106526938643313, 26.852421423125957, 26.600956687331134, 26.354719473182932, 26.116063160155694, 25.88506098444689, 25.662929637018614, 25.451243176913174, 25.251509246399937, 25.06516907097537, 24.893597459362987, 24.738102803513403, 24.599927078604292, 24.480245843040404, 24.380168238453575, 24.300736989702703, 24.242778974905214, 24.206380352441712, 24.19297602568387, 24.203972358624757, 24.24043197591605, 24.303073762868028, 24.39227286544956, 24.508060690288115, 24.65012490466977, 24.81780943653919, 25.01011447449964, 25.225696467812995, 25.462868126399712, 25.719598420838853, 25.993512582368087, 26.2826143036312, 26.5835531766993, 26.891738206174853, 27.202733293923867, 27.51225729043882, 27.816183994838678, 28.11054215486887, 28.391515466901318, 28.65544257593441, 28.898817075593016, 29.118287508128486, 29.310657364418645, 29.47289632791922, 29.602664086287245, 29.698663993805575, 29.760130939580947, 29.786791192805048, 29.77886240275454, 29.737053598791064, 29.662565190361203, 29.557088966996528, 29.422808098313563, 29.262397134013803, 29.07902200388371, 28.876339363087883, 28.657525441317016, 28.424671311484847, 28.180067679402732, 27.926010131825823, 27.66479913645308, 27.398740041927255, 27.130143077834905, 26.861323354706386, 26.594600864015852, 26.332300478181267, 26.076751950564386, 25.830289915470765, 25.5941637670051, 25.36872969694535, 25.1555465854691, 24.956122670479818, 24.771905356674527, 24.60428121554379, 24.454575985371704, 24.324054571235916, 24.21392104500761, 24.125318645351502, 24.059329777725864, 24.0169760143825, 23.99846514904419, 24.003737275719182, 24.03462321313836, 24.092570126924354, 24.178570436394015, 24.2931618145584, 24.436427188122796, 24.607994737486695, 24.807037896743815, 25.032275353682074, 25.28197104978363, 25.55393418022483, 25.845519193876253, 26.153625793302698, 26.474698934763165, 26.804753152945423, 27.14084441298729, 27.478088805009104, 27.81063191891968, 28.133110026501907, 28.440650081412755, 28.72886971918327, 28.99387725721857, 29.232271694797856, 29.4411427130744, 29.61807067507555, 29.761126625702737, 29.86887229173146, 29.940402746282626, 29.975413186962673, 29.97379114454032, 29.93590532296603, 29.86264907495816, 29.755440402003014, 29.616221954354796, 29.44746103103565, 29.252149579835635, 29.033804197312726, 28.796466128792833, 28.54470126836977, 28.283502767093108, 28.014256682750073, 27.73802543918289, 27.45712770878458, 27.17381834909216, 26.890288402786634, 26.60866509769301, 26.331011846780285, 26.05932824816145, 25.795550085093495, 25.5415493259774, 25.299134124358144, 25.07004881892469, 24.855800310972494, 24.656883605078715, 24.474700716129774, 24.31078582283852, 24.166591480316846, 24.043488620075724, 23.942766550025176, 23.865632954474282, 23.81321389413118, 23.786553806103075, 23.786615503896222, 23.814280177415945, 23.87034739296662, 23.95536020382343, 24.068472446424327, 24.21021882251659, 24.381057676848535, 24.580883653348412, 24.8090276951244, 25.064257044464604, 25.34477524283707, 25.64822213088976, 25.971673848450575, 26.31164283452734, 26.664077827307814, 27.02436386415968, 27.387322281630567, 27.74721071544801, 28.09847907246273, 28.4366746624753, 28.75605326370608, 29.05148393331419, 29.31855782425368, 29.55358818527352, 29.753610360917598, 29.91638179152473, 30.04038201322866, 30.12481265795804, 30.169597453436452, 30.175382223182414, 30.14353488650934, 30.076128075831708, 29.975086907146668, 29.84185287978836, 29.678214356073116, 29.486324916429663, 29.268703359399115, 29.02823370163497, 28.768165177903118, 28.492112241081834, 28.204054562161783, 27.90833703024602, 27.60966975254998, 27.311854257489767, 27.013784473613573, 26.71718262172595, 26.424125418146254, 26.1365947573654, 25.856477712045894, 25.585566533021808, 25.32555864929879, 25.078056668054067, 24.84456837463643, 24.626506732566252, 24.425189883535484, 24.24151878542113, 24.07675552495111, 23.93269731711047, 23.811004267169196, 23.71319860851648, 23.640664702660697, 23.59464903922943, 23.576260235969457, 23.58646903874675, 23.62610832154648, 23.695873086473018, 23.79632046374992, 23.92786971171996, 24.09080221684509, 24.285261094700495, 24.51043752470784, 24.76471366475499, 25.046443671074254, 25.35347599573384, 25.68315338663787, 26.032312887526352, 26.397285837975215, 26.77389787339628, 27.157468925037275, 27.542813219981838, 27.9242392811495, 28.29554992729571, 28.65030027462379, 28.982934650402594, 29.28825763613634, 29.561762830398344, 29.79967703965643, 29.99896027827295, 30.157305768504774, 30.27313994050329, 30.345622432314414, 30.374646089878567, 30.360836967030703, 30.30555432550029, 30.210985169157013, 30.080997613516338, 29.918151058657504, 29.72473975000572, 29.50338134906225, 29.25701693340439, 28.9889109966855, 28.702651448634985, 28.40214961505829, 28.091640237836913, 27.775681474928405, 27.459154648158272, 27.14366800663992, 26.829015735705184, 26.51736054987479, 26.210763678668652, 25.911184866605847, 25.620482373204638, 25.34041297298246, 25.072631955455925, 24.818693125140825, 24.580048801552117, 24.35804981920394, 24.153799207736032, 23.96843072887067, 23.80374788888367, 23.66147455252546, 23.543220245260443, 23.450480153267012, 23.384635123437533, 23.346951663378363, 23.33858194140983, 23.36056378656626, 23.41382068859595, 23.499161797961182, 23.61728192583822, 23.768761544117318, 23.9540667854027, 24.17310095605422, 24.424225558819497, 24.70617191059948, 25.017158173114165, 25.35480230397669, 25.71612205669337, 26.097534980663653, 26.49485842118017, 26.90330951942869, 27.317505212488143, 27.731462233330625, 28.13859711082138, 28.531838204065405, 28.90485790544642, 29.25154716749415, 29.566444400903166, 29.844922353721426, 30.083188111350275, 30.278283096544442, 30.428083069412036, 30.53129812741457, 30.58747270536692, 30.596985575437362, 30.561049847147554, 30.481733045497126, 30.362765868578162, 30.207019025282975, 30.016884035284882, 29.795131148119044, 29.54490934318249, 29.26974632973408, 28.973548546894538, 28.66060116364644, 28.335568078834203, 28.00349192116411, 27.66979070662866, 27.336080520452942, 27.002180933189393, 26.67039364251919, 26.342902179430492, 26.021771908218433, 25.708950026485137, 25.406265565139698, 25.115429388398198, 24.83803419378369, 24.575554512126224, 24.329346707562816, 24.10058204639227, 23.890698655707716, 23.701405132680364, 23.534349968337303, 23.391120301209234, 23.273241917330456, 23.182179250238864, 23.119335380975947, 23.086052038086798, 23.08360959762011, 23.11322708312817, 23.17606216566686, 23.27321116379567, 23.40570904357768, 23.574193430416805, 23.777403167053585, 24.0153774728469, 24.287803514845614, 24.59362644767597, 24.931049413541594, 25.297533542223498, 25.689797951080084, 26.103819745047133, 26.53483401663781, 26.977333845942667, 27.42507030062964, 27.87105243594405, 28.307547294708606, 28.726827061092205, 29.122399314757228, 29.487651960955578, 29.816877484865884, 30.105308964114723, 30.349120068776624, 30.54542506137407, 30.69227879687749, 30.788676722705272, 30.834554878723747, 30.830789897247207, 30.779199003037895, 30.682559041699996, 30.544550250933227, 30.367996771184455, 30.15571740630238, 29.91090449665278, 29.637123919118498, 29.338315087099453, 29.018790950512628, 28.68323799579208, 28.336716245888937, 27.984659260271393, 27.6322685706604, 27.279092354453773, 26.92654634515763, 26.576961637977476, 26.23253648214554, 25.895336280920745, 25.567293591588736, 25.250208125461857, 24.94574674787917, 24.655443478206443, 24.38069948983615, 24.122791381881623, 23.883134162215562, 23.663360374992685, 23.465091230868055, 23.289925826598438, 23.13944114504232, 23.015192055159886, 22.918711312013034, 22.851509556765375, 22.81507531668223, 22.810875005130622, 22.84035292157929, 22.90493125159868, 23.006010066860956, 23.1445802038922, 23.319525189342706, 23.531838122781988, 23.782217065457683, 24.070495414107434, 24.395641900958793, 24.755760593729377, 25.14809089562675, 25.569007545348477, 26.014020617082092, 26.477775520505123, 26.954053000785073, 27.435769138579445, 27.914975350035707, 28.38462520047641, 28.83721846062994, 29.263879557816747, 29.65694204431343, 30.00995231011526, 30.31766958293618, 30.576065928208784, 30.782326249084342, 30.934848286432796, 31.03324261884274, 31.078332662621442, 31.072154671794838, 31.017904804860898, 30.91718696904898, 30.771396049459895, 30.58321011355317, 30.3558393971852, 30.0930263046092, 29.799045408475244, 29.478703449830256, 29.137339338117997, 28.780824151179072, 28.415561135250947, 28.047710241290076, 27.676575568899732, 27.30371005237484, 26.931713063318405, 26.563017833443894, 26.199891454575173, 25.844434878646563, 25.4985829177028, 25.16410424389906, 24.842601389500942, 24.535510746884476, 24.2441721219059, 23.97011491853589, 23.714849814688353, 23.479902225564384, 23.266820986400752, 23.07717835246993, 22.912569999080066, 22.774615021575013, 22.664955935334298, 22.585258675773147, 22.53721259834247, 22.52253047852887, 22.54294851185464, 22.599676129721136, 22.692315306591546, 22.82332806720635, 22.994800527593217, 23.20798035701155, 23.46327677795251, 23.760260566139006, 24.09766405052568, 24.473381113298927, 24.88446718987689, 25.32713926890946, 25.796775892278262, 26.287917155096682, 26.794293709007253, 27.31077243900264, 27.828569830396265, 28.337394060583506, 28.827899205232274, 29.291685238283016, 29.721298031948713, 30.110229356714893, 30.452916881339604, 30.744744172853444, 30.98204069655954, 31.16208181603356, 31.282811478800227, 31.34338757437885, 31.344480781368514, 31.287675096767252, 31.175465388938015, 31.011257397608677, 30.79936773387203, 30.545023880185795, 30.254364190372605, 29.93443788962002, 29.593202303068885, 29.23526652052569, 28.86235425836991, 28.47809915276637, 28.085951739004212, 27.689179451496894, 27.290866623782193, 26.893914488522203, 26.50104117750332, 26.114781721636273, 25.7374880509561, 25.37132899462215, 25.017816385793523, 24.677693430641774, 24.352399768154594, 24.043417308314744, 23.75225125237574, 23.480430092861873, 23.229505613568193, 23.00105288956052, 22.796670287175434, 22.61797946402029, 22.4666253689732, 22.343817220395945, 22.25056776036687, 22.18969734970125, 22.163800593181797, 22.17513002706929, 22.225596119102615, 22.316767268498737, 22.44986980595271, 22.62578799363768, 22.845064025204877, 23.10789802578363, 23.414148051981343, 23.763330091883518, 24.154618065053736, 24.586680641032537, 25.055718546164737, 25.556007783815623, 26.081289294439184, 26.62479762514694, 27.179260929707937, 27.73690096854875, 28.28943310875348, 28.82806632406377, 29.343503194878767, 29.825939908255172, 30.264895381707532, 30.651822991644373, 30.98155727826351, 31.25015159731543, 31.454820516561664, 31.593939815774768, 31.667046486738336, 31.674838733246997, 31.619175971106408, 31.50307882813327, 31.330729144155313, 31.10877259335725, 30.844289251211606, 30.542001447782148, 30.206757607460094, 29.843553089407273, 29.457530187556127, 29.053978130609707, 28.638333082041687, 28.216178140096304, 27.79323387584796, 27.371589797903482, 26.951763466102868, 26.536161363382007, 26.127020113673055, 25.726406481904444, 25.33621737400086, 24.958179836883268, 24.593851058468896, 24.244618367671237, 23.911717696910962, 23.596785711772025, 23.301311650611915, 23.02666073121178, 22.774290254676714, 22.54574960543576, 22.34268025124192, 22.166815743172126, 22.019981715627274, 21.90409588633221, 21.821168056335722, 21.773300110010542, 21.762686015053365, 21.79161182248483, 21.861891770248757, 21.973254144808422, 22.128767366432534, 22.331158626424155, 22.582156190320582, 22.88248939789334, 23.23188866314818, 23.629085474325088, 24.071812393898277, 24.556803058576197, 25.079792179301517, 25.635515541251152, 26.21771000383623, 26.820426183808795, 27.434829760616918, 28.04816748523886, 28.648601948407507, 29.225269014054035, 29.76827781930791, 30.268710774496903, 30.71862356314705, 31.1110451419827, 31.43997774092649, 31.70031276481095, 31.887364961226723, 32.00011777910755, 32.039429722907435, 32.00733071264011, 31.907022083879006, 31.742876587757284, 31.520438390967815, 31.2464230757632, 30.928717639955742, 30.57638049691747, 30.196964659255137, 29.79430348478013, 29.372991456253143, 28.937419220277047, 28.491771052962314, 28.04002485992698, 27.585952176296686, 27.133118166704644, 26.68488162529166, 26.244394975706108, 25.814592003333956, 25.39624837651218, 24.989747719844928, 24.596533102306708, 24.218048553272112, 23.85573906251583, 23.51105058021266, 23.185430016937477, 22.88032524366526, 22.59718509177108, 22.337459353030113, 22.102584142070327, 21.89432323475395, 21.714712392580047, 21.56581501135082, 21.449720566543427, 21.36854461330996, 21.324428786477473, 21.31954080054796, 21.356074449698355, 21.436249607780553, 21.56231222832139, 21.736534344522642, 21.96120944439715, 22.23588896658226, 22.56090936071474, 22.937972895042304, 23.367269783597518, 23.84747818619779, 24.375764208445386, 24.9477819017274, 25.557673263215793, 26.19806823586736, 26.860084708423752, 27.533328515411455, 28.20589343714182, 28.86444271191068, 29.49704222322918, 30.09109391216475, 30.634652374359845, 31.117789758848904, 31.532595768058368, 31.873177657806675, 32.13566023730426, 32.31818586915357, 32.420914469349015, 32.44602350727704, 32.397708005716076, 32.281599511237935, 32.1011249530666, 31.86095608051867, 31.566663903004887, 31.224425865100713, 30.841025846546305, 30.42385416224651, 29.98090756227088, 29.52078923185366, 29.052707807956068, 28.58037532369468, 28.10373985352943, 27.626165932594176, 27.150693827738117, 26.680039537525786, 26.216594792237068, 25.762427053867178, 25.319279516126677, 24.888571104441475, 24.471504079953945, 24.069673600129512, 23.68426029625022, 23.31643625675018, 22.967471838073806, 22.63873566467583, 22.331694629021282, 22.047913891585498, 21.78905688085413, 21.556885293323127, 21.353259093498753, 21.180120312032372, 21.03888682592846, 20.932044603537314, 20.862563324953697, 20.833259311469234, 20.84679552557242, 20.905681570948616, 21.012273692480036, 21.16877477624577, 21.37723434952177, 21.639548580780854, 21.957460279692697, 22.332558897123853, 22.76515861231407, 23.253423642143453, 23.795561862588688, 24.388155680283127, 25.02612188359292, 25.702711642617025, 26.409510509187182, 27.13643841686794, 27.871749680956647, 28.602032998483445, 29.31253739614011, 29.989179132974947, 30.61736344516678, 31.184364294011235, 31.679728085075176, 32.09527366819675, 32.42509233748532, 32.66554783132155, 32.81527633235732, 32.87518646751581, 32.848476243685404, 32.741366759478105, 32.55980040986689, 32.309611195911515, 31.997520166403408, 31.631135417865597, 31.218952094552776, 30.770352388451272, 30.295605539279045, 29.80586783448571, 29.308600329731018, 28.802985199825876, 28.29297680841526, 27.782278580577426, 27.274160367641112, 26.771458447185548, 26.276575523040435, 25.79148072528597, 25.31770961025283, 24.85644516129849]], 'rnn_output': [[[0.29411906003952026, -0.40944865345954895, 0.045228179544210434, 0.1813124716281891, 0.38740968704223633, 0.24021793901920319, 0.22251838445663452, -0.022851064801216125, -0.1513720601797104, -0.29524946212768555], [0.40404966473579407, -0.19112826883792877, 0.14284496009349823, 0.03964334726333618, 0.4542684257030487, 0.081929050385952, 0.11672013252973557, -0.09197048842906952, -0.2879287600517273, -0.2614561915397644], [0.44282254576683044, -0.21873591840267181, 0.02436980791389942, 0.04816889017820358, 0.4995807111263275, 0.02870136685669422, 0.15283864736557007, -0.017139924690127373, -0.2548467516899109, -0.22665928304195404], [0.4310573637485504, -0.23617395758628845, 0.06991604715585709, 0.10133080929517746, 0.51610267162323, -0.06578569859266281, 0.1172279417514801, -0.0004961937083862722, -0.22686490416526794, -0.2827723026275635], [0.4254034161567688, -0.26463598012924194, 0.07486438751220703, 0.12379702180624008, 0.542272686958313, -0.06020404398441315, 0.10597269982099533, 0.017763571813702583, -0.2570112347602844, -0.2758103609085083], [0.4253436028957367, -0.278266966342926, 0.1093435063958168, 0.11069537699222565, 0.5603005290031433, -0.07144829630851746, 0.11391523480415344, 0.023360569030046463, -0.2573340833187103, -0.26868802309036255], [0.4144258499145508, -0.2851599454879761, 0.10837356746196747, 0.10902124643325806, 0.5726714134216309, -0.07841479778289795, 0.1285490095615387, 0.020896857604384422, -0.2591758668422699, -0.2779597043991089], [0.4170612096786499, -0.2843910753726959, 0.11141930520534515, 0.10303245484828949, 0.571719765663147, -0.08480066806077957, 0.1282520890235901, 0.01778149977326393, -0.2545676529407501, -0.28054046630859375], [0.41525906324386597, -0.2836840748786926, 0.1055152490735054, 0.10609657317399979, 0.5708879232406616, -0.08489787578582764, 0.1274559199810028, 0.01855573058128357, -0.25575965642929077, -0.2829310894012451], [0.41713663935661316, -0.28377240896224976, 0.10757330805063248, 0.10580258816480637, 0.569725751876831, -0.08520416915416718, 0.12515927851200104, 0.019126199185848236, -0.2549392879009247, -0.2816765308380127], [0.4159510135650635, -0.2843323349952698, 0.1068788692355156, 0.1070564016699791, 0.5705407857894897, -0.08447820693254471, 0.12566044926643372, 0.019710147753357887, -0.2561226785182953, -0.28186166286468506], [0.41647759079933167, -0.28456518054008484, 0.10832454264163971, 0.10612079501152039, 0.570704460144043, -0.08475843816995621, 0.12575480341911316, 0.01951223984360695, -0.25570276379585266, -0.28140196204185486], [0.41592657566070557, -0.28457558155059814, 0.1077057346701622, 0.10634376853704453, 0.5709818005561829, -0.08474130183458328, 0.12623931467533112, 0.019438082352280617, -0.2559463381767273, -0.28182485699653625], [0.416256308555603, -0.2844822108745575, 0.1079828068614006, 0.10602863878011703, 0.5707818865776062, -0.0849137231707573, 0.12605315446853638, 0.019320497289299965, -0.2556631565093994, -0.2817310690879822], [0.4160836338996887, -0.28445541858673096, 0.10763054341077805, 0.10626839101314545, 0.5707867741584778, -0.08482810854911804, 0.12607470154762268, 0.019384585320949554, -0.25580278038978577, -0.2818448543548584], [0.41622671484947205, -0.28445878624916077, 0.10782159864902496, 0.10617803782224655, 0.5707273483276367, -0.08485299348831177, 0.1259714514017105, 0.019387036561965942, -0.25572291016578674, -0.28174281120300293], [0.4161338806152344, -0.28448233008384705, 0.10771732032299042, 0.1062583476305008, 0.5707797408103943, -0.08481249213218689, 0.12603527307510376, 0.019420156255364418, -0.2557973861694336, -0.28177526593208313], [0.41618603467941284, -0.28448954224586487, 0.10780617594718933, 0.10619468241930008, 0.5707719922065735, -0.08484652638435364, 0.12602493166923523, 0.019408805295825005, -0.2557511329650879, -0.28174692392349243], [0.4161439836025238, -0.28449001908302307, 0.10775406658649445, 0.10622964799404144, 0.5707883238792419, -0.08484213799238205, 0.12604579329490662, 0.01940975897014141, -0.25577500462532043, -0.28178033232688904], [0.4161720871925354, -0.28448882699012756, 0.10778159648180008, 0.10620515793561935, 0.5707764029502869, -0.08485028892755508, 0.1260315328836441, 0.019407903775572777, -0.2557578682899475, -0.28176283836364746], [0.4161541163921356, -0.28448739647865295, 0.10776523500680923, 0.10622440278530121, 0.5707815289497375, -0.08484671264886856, 0.12603402137756348, 0.01940762996673584, -0.25576817989349365, -0.2817775011062622], [0.41616544127464294, -0.2844852805137634, 0.10778197646141052, 0.10621477663516998, 0.5707765817642212, -0.08484505116939545, 0.12602487206459045, 0.019402796402573586, -0.2557637095451355, -0.281769335269928], [0.416159987449646, -0.2844870686531067, 0.10776784271001816, 0.10621750354766846, 0.5707796216011047, -0.08483941853046417, 0.12603415548801422, 0.019408470019698143, -0.2557696998119354, -0.2817671298980713], [0.41616329550743103, -0.28448766469955444, 0.10777446627616882, 0.10621368885040283, 0.5707787871360779, -0.08484595268964767, 0.12603390216827393, 0.019407756626605988, -0.25576329231262207, -0.28176793456077576], [0.4161589741706848, -0.2844844460487366, 0.10777635127305984, 0.10621986538171768, 0.570778489112854, -0.08484553545713425, 0.12602798640727997, 0.019401663914322853, -0.25576531887054443, -0.28177565336227417], [0.4161631762981415, -0.28448355197906494, 0.10777601599693298, 0.1062159314751625, 0.5707764029502869, -0.08483920991420746, 0.12602683901786804, 0.01940249837934971, -0.2557675838470459, -0.2817681133747101], [0.4161613881587982, -0.28448203206062317, 0.1077779158949852, 0.10621678084135056, 0.5707764625549316, -0.0848395898938179, 0.12602700293064117, 0.01940050907433033, -0.2557665705680847, -0.2817704379558563], [0.4161628782749176, -0.2844834625720978, 0.10777270048856735, 0.10621464997529984, 0.5707764029502869, -0.08483770489692688, 0.12603065371513367, 0.019403614103794098, -0.2557673752307892, -0.281766414642334], [0.41616305708885193, -0.28448671102523804, 0.10776785761117935, 0.10621377825737, 0.5707777738571167, -0.08484166115522385, 0.1260361671447754, 0.019409311935305595, -0.25576549768447876, -0.28176525235176086], [0.4161617159843445, -0.2844890356063843, 0.10776790231466293, 0.10621610283851624, 0.5707793831825256, -0.08484743535518646, 0.12603667378425598, 0.01941087655723095, -0.25576353073120117, -0.28176915645599365], [0.4161613881587982, -0.28449001908302307, 0.10776926577091217, 0.10621759295463562, 0.5707801580429077, -0.08484871685504913, 0.12603473663330078, 0.019410988315939903, -0.25576427578926086, -0.28177040815353394], [0.41616159677505493, -0.28449133038520813, 0.10776900500059128, 0.10621703416109085, 0.5707810521125793, -0.0848483294248581, 0.12603574991226196, 0.019412657245993614, -0.25576522946357727, -0.2817687690258026], [0.4161589741706848, -0.2844853699207306, 0.10778308659791946, 0.1062208041548729, 0.57077956199646, -0.08484961837530136, 0.12602479755878448, 0.0194005835801363, -0.2557637095451355, -0.28177836537361145], [0.4161609709262848, -0.2844805419445038, 0.107782743871212, 0.10621878504753113, 0.5707763433456421, -0.08483706414699554, 0.12602047622203827, 0.01939573511481285, -0.25576967000961304, -0.2817724049091339], [0.4161651134490967, -0.2844853103160858, 0.10776766389608383, 0.10621031373739243, 0.5707768797874451, -0.08483287692070007, 0.12603576481342316, 0.01940876804292202, -0.2557699680328369, -0.2817581295967102], [0.4161606729030609, -0.2844851016998291, 0.10777446627616882, 0.10621549934148788, 0.5707780718803406, -0.08484694361686707, 0.12603411078453064, 0.01940467208623886, -0.25576159358024597, -0.2817723751068115], [0.41616091132164, -0.2844831645488739, 0.10777473449707031, 0.10621894896030426, 0.5707765221595764, -0.08484293520450592, 0.1260267049074173, 0.01940103806555271, -0.25576579570770264, -0.28177356719970703], [0.4161636531352997, -0.28448420763015747, 0.10777270048856735, 0.1062154695391655, 0.5707762837409973, -0.08483868837356567, 0.1260291039943695, 0.019405290484428406, -0.2557676434516907, -0.28176602721214294], [0.4161624014377594, -0.2844873070716858, 0.10776948928833008, 0.10621486604213715, 0.5707785487174988, -0.08484212309122086, 0.12603534758090973, 0.01940927468240261, -0.2557658851146698, -0.28176602721214294], [0.41616034507751465, -0.28448471426963806, 0.10777787119150162, 0.10621834546327591, 0.5707781314849854, -0.08484670519828796, 0.12602856755256653, 0.01940223015844822, -0.2557635009288788, -0.281774640083313], [0.41616183519363403, -0.284483402967453, 0.10777529329061508, 0.10621745884418488, 0.5707768201828003, -0.08483961969614029, 0.12602674961090088, 0.01940191723406315, -0.2557678818702698, -0.2817699611186981], [0.4161631166934967, -0.28448450565338135, 0.10777333378791809, 0.10621459037065506, 0.5707769393920898, -0.08483920991420746, 0.12603095173835754, 0.019405238330364227, -0.25576695799827576, -0.2817661166191101], [0.4161608815193176, -0.2844828963279724, 0.1077774316072464, 0.10621725767850876, 0.5707769393920898, -0.0848425105214119, 0.12602819502353668, 0.019400985911488533, -0.25576499104499817, -0.28177234530448914], [0.4161626696586609, -0.2844834327697754, 0.10777305066585541, 0.10621575266122818, 0.5707763433456421, -0.08483855426311493, 0.12602925300598145, 0.019403204321861267, -0.25576746463775635, -0.28176772594451904], [0.4161633849143982, -0.28448688983917236, 0.10776792466640472, 0.10621371865272522, 0.5707778334617615, -0.08484101295471191, 0.12603576481342316, 0.019409744068980217, -0.2557660937309265, -0.281764417886734], [0.4161607027053833, -0.28448641300201416, 0.10777398198843002, 0.1062176376581192, 0.5707786083221436, -0.08484745770692825, 0.12603192031383514, 0.019405722618103027, -0.25576314330101013, -0.28177282214164734], [0.4161617159843445, -0.2844863533973694, 0.10777232050895691, 0.10621753334999084, 0.5707781910896301, -0.08484324812889099, 0.12603026628494263, 0.019405968487262726, -0.2557665705680847, -0.28176987171173096], [0.41616156697273254, -0.28448450565338135, 0.10777744650840759, 0.10621730238199234, 0.5707777142524719, -0.08484318852424622, 0.12602783739566803, 0.01940310001373291, -0.2557656764984131, -0.28177112340927124], [0.4161602556705475, -0.284479558467865, 0.10778402537107468, 0.10621917247772217, 0.5707758069038391, -0.08483981341123581, 0.12602093815803528, 0.019394677132368088, -0.25576674938201904, -0.28177502751350403], [0.41616329550743103, -0.2844785749912262, 0.10777844488620758, 0.1062149703502655, 0.5707739591598511, -0.0848316177725792, 0.12602367997169495, 0.01939677819609642, -0.25576990842819214, -0.28176653385162354], [0.4161636233329773, -0.2844805419445038, 0.10777371376752853, 0.10621287673711777, 0.5707745552062988, -0.08483429253101349, 0.12603020668029785, 0.019401440396904945, -0.25576719641685486, -0.2817647457122803], [0.4161616861820221, -0.28447967767715454, 0.10777710378170013, 0.10621646046638489, 0.570774495601654, -0.08483939617872238, 0.12602683901786804, 0.019398139789700508, -0.2557646632194519, -0.28177177906036377], [0.4161619246006012, -0.2844763994216919, 0.10778176039457321, 0.10621843487024307, 0.570772647857666, -0.08483582735061646, 0.12601947784423828, 0.019392920657992363, -0.25576698780059814, -0.281773179769516], [0.4161631166934967, -0.28447383642196655, 0.1077834963798523, 0.10621684044599533, 0.5707711577415466, -0.08482971042394638, 0.12601745128631592, 0.01939074508845806, -0.2557693123817444, -0.28176960349082947], [0.41616448760032654, -0.28447604179382324, 0.1077762320637703, 0.10621307045221329, 0.5707716345787048, -0.08482732623815536, 0.12602514028549194, 0.019396241754293442, -0.2557696998119354, -0.28176334500312805], [0.4161640405654907, -0.2844797968864441, 0.10777124017477036, 0.10621251165866852, 0.5707734227180481, -0.08483390510082245, 0.12603171169757843, 0.019401783123612404, -0.2557661235332489, -0.2817642390727997], [0.4161628782749176, -0.2844826281070709, 0.1077696830034256, 0.1062152087688446, 0.570775032043457, -0.08484011143445969, 0.12603230774402618, 0.019404329359531403, -0.25576451420783997, -0.2817680537700653], [0.4161614179611206, -0.2844802141189575, 0.10777901858091354, 0.10621927678585052, 0.5707746148109436, -0.08484216779470444, 0.12602344155311584, 0.01939801312983036, -0.2557644546031952, -0.28177449107170105], [0.41616305708885193, -0.28448060154914856, 0.10777567327022552, 0.1062169149518013, 0.5707746148109436, -0.08483463525772095, 0.12602466344833374, 0.019400017336010933, -0.25576916337013245, -0.2817673981189728], [0.41616272926330566, -0.28448012471199036, 0.1077788844704628, 0.10621540248394012, 0.5707748532295227, -0.08483663201332092, 0.12602604925632477, 0.019398996606469154, -0.2557666599750519, -0.28176847100257874], [0.41616225242614746, -0.2844805121421814, 0.10777529329061508, 0.10621557384729385, 0.570775032043457, -0.08483604341745377, 0.12602776288986206, 0.01939958520233631, -0.25576725602149963, -0.2817683517932892], [0.41616344451904297, -0.2844822108745575, 0.10777232050895691, 0.10621421784162521, 0.5707752108573914, -0.08483752608299255, 0.12603050470352173, 0.01940319687128067, -0.2557663917541504, -0.28176626563072205], [0.41616228222846985, -0.28448358178138733, 0.10777218639850616, 0.1062159612774849, 0.5707762241363525, -0.0848410427570343, 0.1260310560464859, 0.019404254853725433, -0.25576522946357727, -0.28176888823509216], [0.41616159677505493, -0.2844821512699127, 0.10777711868286133, 0.10621795058250427, 0.5707759261131287, -0.0848417654633522, 0.1260262280702591, 0.01940053142607212, -0.25576531887054443, -0.2817722260951996], [0.41616111993789673, -0.2844773232936859, 0.10778480768203735, 0.1062193438410759, 0.5707740187644958, -0.08483736962080002, 0.12601833045482635, 0.019392697140574455, -0.25576716661453247, -0.2817745804786682], [0.41616201400756836, -0.2844715416431427, 0.10778968036174774, 0.10621806234121323, 0.5707708597183228, -0.08482898771762848, 0.12601278722286224, 0.0193854421377182, -0.255769819021225, -0.28177276253700256], [0.4161633849143982, -0.2844671308994293, 0.10778988897800446, 0.10621542483568192, 0.5707679390907288, -0.08482182025909424, 0.12601186335086823, 0.019381726160645485, -0.25577104091644287, -0.28176936507225037], [0.4161635637283325, -0.2844623029232025, 0.10779233276844025, 0.10621513426303864, 0.57076495885849, -0.08481864631175995, 0.1260087788105011, 0.01937621459364891, -0.2557702362537384, -0.28177061676979065], [0.4161660075187683, -0.28446295857429504, 0.10778302699327469, 0.10621213912963867, 0.5707636475563049, -0.08481357991695404, 0.12601390480995178, 0.019381070509552956, -0.2557719349861145, -0.28176331520080566], [0.41616737842559814, -0.28446969389915466, 0.10777156800031662, 0.10620938986539841, 0.5707659721374512, -0.08481908589601517, 0.12602604925632477, 0.01939341053366661, -0.2557689845561981, -0.28175821900367737], [0.4161648154258728, -0.2844756245613098, 0.10776941478252411, 0.10621315985918045, 0.570769727230072, -0.08483172208070755, 0.12603001296520233, 0.019399011507630348, -0.2557644248008728, -0.2817649245262146], [0.4161638617515564, -0.28447961807250977, 0.1077696681022644, 0.10621634125709534, 0.5707722902297974, -0.08483704924583435, 0.12602879106998444, 0.019401969388127327, -0.2557649314403534, -0.28176775574684143], [0.4161633253097534, -0.284481942653656, 0.10777250677347183, 0.10621721297502518, 0.570774495601654, -0.0848391205072403, 0.12602795660495758, 0.019403353333473206, -0.25576579570770264, -0.2817682921886444], [0.4161633551120758, -0.28448617458343506, 0.1077684760093689, 0.10621538758277893, 0.5707772374153137, -0.08483985811471939, 0.12603367865085602, 0.019408775493502617, -0.2557668089866638, -0.2817648649215698], [0.41616129875183105, -0.28448596596717834, 0.1077747642993927, 0.1062171533703804, 0.5707783699035645, -0.08484581857919693, 0.12603136897087097, 0.01940552145242691, -0.25576382875442505, -0.2817714512348175], [0.41616150736808777, -0.284485787153244, 0.10777302086353302, 0.1062173843383789, 0.5707781910896301, -0.0848427563905716, 0.12603026628494263, 0.01940513402223587, -0.25576651096343994, -0.2817700505256653], [0.4161618649959564, -0.284484326839447, 0.10777672380208969, 0.10621681064367294, 0.570777416229248, -0.08484256267547607, 0.12602828443050385, 0.0194031223654747, -0.255765825510025, -0.2817704975605011], [0.4161623418331146, -0.2844860255718231, 0.10777077078819275, 0.10621534287929535, 0.5707780718803406, -0.08484027534723282, 0.12603271007537842, 0.019406825304031372, -0.255767285823822, -0.2817665934562683], [0.4161618947982788, -0.28448620438575745, 0.10777334868907928, 0.10621575266122818, 0.5707782506942749, -0.08484455943107605, 0.1260325014591217, 0.019406244158744812, -0.2557644546031952, -0.28176960349082947], [0.4161619246006012, -0.2844882309436798, 0.10776820778846741, 0.10621597617864609, 0.5707790851593018, -0.08484397083520889, 0.12603507936000824, 0.01940968446433544, -0.25576597452163696, -0.2817676365375519], [0.4161621332168579, -0.284490168094635, 0.10776866227388382, 0.10621567815542221, 0.5707800984382629, -0.08484755456447601, 0.12603658437728882, 0.019412001594901085, -0.2557642459869385, -0.2817680537700653], [0.4161607325077057, -0.28449082374572754, 0.10776969790458679, 0.10621759295463562, 0.5707810521125793, -0.08484958857297897, 0.126035675406456, 0.01941140554845333, -0.2557642459869385, -0.28177082538604736], [0.4161613881587982, -0.28449147939682007, 0.10776962339878082, 0.10621694475412369, 0.5707813501358032, -0.08484894037246704, 0.1260356605052948, 0.01941223256289959, -0.25576502084732056, -0.28176939487457275], [0.4161604046821594, -0.28449001908302307, 0.10777368396520615, 0.10621802508831024, 0.5707812309265137, -0.08484961837530136, 0.1260330229997635, 0.01940910331904888, -0.25576454401016235, -0.2817722260951996], [0.4161607027053833, -0.28448811173439026, 0.1077749952673912, 0.10621783137321472, 0.5707801580429077, -0.08484632521867752, 0.12603068351745605, 0.019406430423259735, -0.25576597452163696, -0.28177163004875183], [0.41616174578666687, -0.28448787331581116, 0.1077728196978569, 0.10621591657400131, 0.5707796216011047, -0.08484379947185516, 0.12603257596492767, 0.019407637417316437, -0.2557666003704071, -0.28176844120025635], [0.41616037487983704, -0.2844843864440918, 0.10777931660413742, 0.10621792078018188, 0.5707783102989197, -0.0848451480269432, 0.12602746486663818, 0.019401418045163155, -0.25576481223106384, -0.2817739248275757], [0.4161613881587982, -0.2844814658164978, 0.10777907818555832, 0.10621759295463562, 0.5707762241363525, -0.08483872562646866, 0.1260242909193039, 0.019398408010601997, -0.2557677924633026, -0.2817714810371399], [0.41616278886795044, -0.2844802737236023, 0.10777813196182251, 0.10621526837348938, 0.570775032043457, -0.08483577519655228, 0.12602561712265015, 0.019398892298340797, -0.2557678520679474, -0.2817680239677429], [0.41616249084472656, -0.284480482339859, 0.10777588188648224, 0.10621505975723267, 0.5707749724388123, -0.08483627438545227, 0.12602782249450684, 0.019399764016270638, -0.25576698780059814, -0.2817680537700653], [0.4161625802516937, -0.28448042273521423, 0.10777577757835388, 0.10621558874845505, 0.5707746148109436, -0.08483751863241196, 0.1260274052619934, 0.019399674609303474, -0.25576621294021606, -0.2817690968513489], [0.41616204380989075, -0.28447872400283813, 0.10777889937162399, 0.10621718317270279, 0.5707738995552063, -0.08483728021383286, 0.12602367997169495, 0.01939668133854866, -0.2557663917541504, -0.28177136182785034], [0.41616225242614746, -0.284475713968277, 0.10778283327817917, 0.10621759295463562, 0.5707724690437317, -0.08483373373746872, 0.1260192096233368, 0.019392339512705803, -0.25576773285865784, -0.2817716896533966], [0.41616368293762207, -0.28447556495666504, 0.10777921229600906, 0.10621494054794312, 0.5707718133926392, -0.08482912182807922, 0.12602199614048004, 0.0193941630423069, -0.2557694613933563, -0.28176650404930115], [0.4161645770072937, -0.28447967767715454, 0.10777103900909424, 0.10621210187673569, 0.5707733035087585, -0.08483146876096725, 0.12603101134300232, 0.01940190978348255, -0.2557678520679474, -0.2817623019218445], [0.416162371635437, -0.28448083996772766, 0.10777389258146286, 0.10621549934148788, 0.5707745552062988, -0.08483996242284775, 0.12602992355823517, 0.019401120021939278, -0.2557639181613922, -0.28176987171173096], [0.41616177558898926, -0.2844790518283844, 0.10777808725833893, 0.10621856898069382, 0.5707738995552063, -0.08483889698982239, 0.1260230839252472, 0.019396912306547165, -0.2557659149169922, -0.2817729413509369], [0.4161623418331146, -0.2844754457473755, 0.10778424888849258, 0.1062183603644371, 0.5707722902297974, -0.08483374863862991, 0.12601733207702637, 0.01939178816974163, -0.2557680606842041, -0.2817721664905548], [0.41616395115852356, -0.2844763398170471, 0.10777802020311356, 0.10621439665555954, 0.5707722306251526, -0.08482801914215088, 0.12602320313453674, 0.019395533949136734, -0.2557702958583832, -0.2817647457122803], [0.41616278886795044, -0.2844749987125397, 0.1077817752957344, 0.10621488094329834, 0.5707718729972839, -0.08483266830444336, 0.12602269649505615, 0.019392726942896843, -0.2557663917541504, -0.28176963329315186], [0.4161619544029236, -0.28447094559669495, 0.10778551548719406, 0.10621780157089233, 0.5707697868347168, -0.08483017981052399, 0.1260155737400055, 0.019386127591133118, -0.25576773285865784, -0.28177353739738464], [0.41616424918174744, -0.2844683527946472, 0.10778551548719406, 0.10621576756238937, 0.5707675814628601, -0.08482334017753601, 0.12601348757743835, 0.01938486099243164, -0.2557702660560608, -0.2817685306072235], [0.41616424918174744, -0.28446701169013977, 0.10778556019067764, 0.10621469467878342, 0.570766806602478, -0.08482161909341812, 0.1260146051645279, 0.019384123384952545, -0.255769819021225, -0.28176748752593994], [0.41616398096084595, -0.28446489572525024, 0.10778731107711792, 0.1062152087688446, 0.5707656145095825, -0.08482097834348679, 0.1260126233100891, 0.01938091404736042, -0.2557692229747772, -0.28176936507225037], [0.41616687178611755, -0.2844702899456024, 0.10777277499437332, 0.10621076077222824, 0.570766806602478, -0.0848182886838913, 0.12602370977401733, 0.01939261518418789, -0.25577113032341003, -0.2817588448524475], [0.41616445779800415, -0.2844730019569397, 0.1077764704823494, 0.10621349513530731, 0.5707690119743347, -0.084830641746521, 0.12602514028549194, 0.019394058734178543, -0.2557646334171295, -0.28176698088645935], [0.4161628782749176, -0.28447332978248596, 0.10777796059846878, 0.10621766746044159, 0.570769727230072, -0.08483153581619263, 0.1260203868150711, 0.019391847774386406, -0.25576671957969666, -0.2817710340023041], [0.41616421937942505, -0.28447264432907104, 0.10778140276670456, 0.10621656477451324, 0.5707694292068481, -0.08482886850833893, 0.12601777911186218, 0.019391072914004326, -0.2557683289051056, -0.2817685604095459], [0.41616398096084595, -0.28447386622428894, 0.10777880996465683, 0.10621507465839386, 0.5707704424858093, -0.08482736349105835, 0.1260215938091278, 0.01939321681857109, -0.25576919317245483, -0.28176599740982056], [0.41616350412368774, -0.2844736576080322, 0.10778076946735382, 0.10621502995491028, 0.5707706212997437, -0.08483010530471802, 0.12602153420448303, 0.019391914829611778, -0.25576722621917725, -0.2817685008049011], [0.4161635935306549, -0.2844740152359009, 0.10777811706066132, 0.10621523857116699, 0.5707705616950989, -0.08482929319143295, 0.1260220855474472, 0.01939292810857296, -0.25576815009117126, -0.28176769614219666], [0.4161645174026489, -0.2844763994216919, 0.10777470469474792, 0.10621389746665955, 0.570771336555481, -0.08483047038316727, 0.1260257214307785, 0.019397292286157608, -0.2557676434516907, -0.28176507353782654], [0.4161624014377594, -0.284475177526474, 0.10778066515922546, 0.10621704906225204, 0.5707716345787048, -0.08483465760946274, 0.1260216236114502, 0.019393164664506912, -0.2557657063007355, -0.2817716598510742], [0.41616305708885193, -0.2844736874103546, 0.10778144747018814, 0.10621713846921921, 0.5707706809043884, -0.0848301351070404, 0.1260184496641159, 0.01939096860587597, -0.2557685971260071, -0.2817700505256653], [0.41616350412368774, -0.2844714820384979, 0.10778455436229706, 0.10621605813503265, 0.5707696676254272, -0.08482778817415237, 0.1260167807340622, 0.019388457760214806, -0.255768746137619, -0.2817693054676056], [0.41616353392601013, -0.2844701111316681, 0.10778377950191498, 0.10621538758277893, 0.5707688331604004, -0.08482509851455688, 0.1260169893503189, 0.019387103617191315, -0.25576940178871155, -0.28176844120025635], [0.41616567969322205, -0.2844741940498352, 0.10777333378791809, 0.10621156543493271, 0.570769727230072, -0.08482444286346436, 0.12602607905864716, 0.01939588412642479, -0.25576961040496826, -0.281761109828949], [0.4161640703678131, -0.2844778597354889, 0.10777203738689423, 0.10621327906847, 0.5707719922065735, -0.08483394235372543, 0.12602995336055756, 0.019399890676140785, -0.25576502084732056, -0.28176575899124146], [0.41616180539131165, -0.28447628021240234, 0.10777945816516876, 0.10621865093708038, 0.5707720518112183, -0.08483772724866867, 0.12602166831493378, 0.019393961876630783, -0.2557646930217743, -0.28177401423454285], [0.41616392135620117, -0.2844766676425934, 0.10777713358402252, 0.10621665418148041, 0.5707717537879944, -0.08483096957206726, 0.12602150440216064, 0.01939598098397255, -0.2557692527770996, -0.28176721930503845], [0.41616421937942505, -0.2844794988632202, 0.10777419060468674, 0.10621377825737, 0.5707734823226929, -0.08483259379863739, 0.12602822482585907, 0.019400903955101967, -0.2557677924633026, -0.28176406025886536], [0.41616302728652954, -0.28448307514190674, 0.10777009278535843, 0.10621412843465805, 0.5707756876945496, -0.08483809977769852, 0.12603333592414856, 0.019404850900173187, -0.25576573610305786, -0.2817658483982086], [0.4161626100540161, -0.28448542952537537, 0.1077694296836853, 0.10621554404497147, 0.5707769393920898, -0.0848429948091507, 0.1260336935520172, 0.019407041370868683, -0.2557643949985504, -0.28176820278167725], [0.4161618649959564, -0.2844863533973694, 0.10777122527360916, 0.1062173843383789, 0.5707778334617615, -0.08484487235546112, 0.1260318011045456, 0.01940707117319107, -0.25576475262641907, -0.28177013993263245], [0.41616198420524597, -0.2844873368740082, 0.10777164250612259, 0.10621701925992966, 0.5707786679267883, -0.08484425395727158, 0.1260319948196411, 0.019407911226153374, -0.255765825510025, -0.28176894783973694], [0.41616183519363403, -0.2844885587692261, 0.10777093470096588, 0.1062161773443222, 0.5707796216011047, -0.08484502136707306, 0.12603411078453064, 0.019409408792853355, -0.2557656466960907, -0.28176823258399963], [0.4161604940891266, -0.2844863533973694, 0.10777663439512253, 0.10621807724237442, 0.5707792043685913, -0.08484673500061035, 0.12602971494197845, 0.01940438151359558, -0.25576451420783997, -0.2817732095718384], [0.4161621034145355, -0.2844870090484619, 0.10777124017477036, 0.10621600598096848, 0.5707787275314331, -0.0848417803645134, 0.12603208422660828, 0.019407249987125397, -0.25576749444007874, -0.28176745772361755], [0.41616344451904297, -0.28449252247810364, 0.10776259750127792, 0.10621258616447449, 0.570780873298645, -0.08484505116939545, 0.1260424703359604, 0.019417177885770798, -0.25576555728912354, -0.28176212310791016], [0.4161602258682251, -0.2844942808151245, 0.10776644200086594, 0.1062169298529625, 0.5707830190658569, -0.08485537022352219, 0.12604133784770966, 0.019416090101003647, -0.25576120615005493, -0.28177163004875183], [0.41615939140319824, -0.2844913899898529, 0.10777345299720764, 0.10622061789035797, 0.570781946182251, -0.08485407382249832, 0.12603186070919037, 0.01940946839749813, -0.255763441324234, -0.2817761301994324], [0.416160523891449, -0.28448745608329773, 0.10777854919433594, 0.10621953755617142, 0.5707800388336182, -0.08484645187854767, 0.1260264664888382, 0.019404597580432892, -0.2557668089866638, -0.28177326917648315], [0.4161626696586609, -0.28448984026908875, 0.10776926577091217, 0.10621403157711029, 0.5707805156707764, -0.08484107255935669, 0.12603595852851868, 0.019411375746130943, -0.2557685971260071, -0.28176361322402954], [0.4161601662635803, -0.28448763489723206, 0.10777644068002701, 0.10621647536754608, 0.5707802772521973, -0.08484902232885361, 0.12603314220905304, 0.019405901432037354, -0.25576284527778625, -0.2817731201648712], [0.416159987449646, -0.2844833731651306, 0.10777876526117325, 0.1062193363904953, 0.5707777142524719, -0.08484383672475815, 0.12602511048316956, 0.019399428740143776, -0.2557661235332489, -0.28177517652511597], [0.4161638021469116, -0.28448486328125, 0.10777141898870468, 0.10621415823698044, 0.5707768797874451, -0.08483710885047913, 0.12603074312210083, 0.019406095147132874, -0.2557688057422638, -0.28176403045654297], [0.41616177558898926, -0.2844860255718231, 0.10777273029088974, 0.10621513426303864, 0.5707782506942749, -0.08484349399805069, 0.1260337382555008, 0.019406668841838837, -0.25576457381248474, -0.2817685306072235], [0.4161609709262848, -0.2844851016998291, 0.1077742725610733, 0.10621753334999084, 0.5707778930664062, -0.08484434336423874, 0.1260301023721695, 0.019403740763664246, -0.25576499104499817, -0.28177207708358765], [0.4161624610424042, -0.2844853103160858, 0.10777262598276138, 0.10621623694896698, 0.570777416229248, -0.08484151214361191, 0.12603026628494263, 0.019405528903007507, -0.2557666599750519, -0.2817682921886444], [0.4161621034145355, -0.28448641300201416, 0.1077721118927002, 0.10621588677167892, 0.5707782506942749, -0.08484284579753876, 0.1260325014591217, 0.01940702646970749, -0.25576579570770264, -0.28176817297935486], [0.4161610007286072, -0.28448495268821716, 0.10777601599693298, 0.10621750354766846, 0.5707780122756958, -0.08484438806772232, 0.12602931261062622, 0.019403457641601562, -0.25576502084732056, -0.28177204728126526], [0.4161619544029236, -0.2844844162464142, 0.10777449607849121, 0.10621671378612518, 0.5707773566246033, -0.08484086394309998, 0.1260288953781128, 0.019403547048568726, -0.25576695799827576, -0.281769335269928], [0.4161624014377594, -0.28448486328125, 0.10777357220649719, 0.10621549934148788, 0.570777416229248, -0.08484098315238953, 0.12603087723255157, 0.019404999911785126, -0.255766361951828, -0.28176793456077576], [0.4161622226238251, -0.2844867408275604, 0.10777013748884201, 0.10621525347232819, 0.5707783102989197, -0.08484251797199249, 0.12603415548801422, 0.019407888874411583, -0.25576579570770264, -0.281767338514328], [0.4161624610424042, -0.2844898998737335, 0.10776650160551071, 0.10621488094329834, 0.5707796812057495, -0.08484582602977753, 0.12603794038295746, 0.019412456080317497, -0.25576478242874146, -0.28176650404930115], [0.41616109013557434, -0.28449124097824097, 0.10776841640472412, 0.10621703416109085, 0.5707809925079346, -0.08485041558742523, 0.12603700160980225, 0.019412590190768242, -0.25576338171958923, -0.28177037835121155], [0.41616058349609375, -0.28449052572250366, 0.10777179896831512, 0.10621852427721024, 0.5707810521125793, -0.08485012501478195, 0.12603336572647095, 0.01941014640033245, -0.2557644248008728, -0.2817721664905548], [0.4161624610424042, -0.2844943404197693, 0.10776381939649582, 0.1062149703502655, 0.570782482624054, -0.08484744280576706, 0.12604062259197235, 0.019417667761445045, -0.25576648116111755, -0.2817643880844116], [0.4161607325077057, -0.2844965159893036, 0.1077658087015152, 0.10621590167284012, 0.5707844495773315, -0.08485537767410278, 0.12604303658008575, 0.019418926909565926, -0.2557622194290161, -0.2817692160606384], [0.41615912318229675, -0.2844952344894409, 0.10776951909065247, 0.1062193214893341, 0.570784330368042, -0.084856778383255, 0.12603773176670074, 0.019414681941270828, -0.25576284527778625, -0.2817744016647339], [0.41616091132164, -0.28449511528015137, 0.10776835680007935, 0.10621753334999084, 0.570783793926239, -0.08485240489244461, 0.12603740394115448, 0.019415881484746933, -0.2557653784751892, -0.28176966309547424], [0.41615983843803406, -0.2844933867454529, 0.10777292400598526, 0.10621806234121323, 0.5707836151123047, -0.0848531723022461, 0.12603561580181122, 0.019412605091929436, -0.25576409697532654, -0.2817723751068115], [0.41616106033325195, -0.28449496626853943, 0.10776641219854355, 0.10621588677167892, 0.5707837343215942, -0.08484996110200882, 0.12603995203971863, 0.019416306167840958, -0.25576600432395935, -0.2817673981189728], [0.41615939140319824, -0.2844913899898529, 0.10777588188648224, 0.10621841996908188, 0.5707826018333435, -0.08485428243875504, 0.12603358924388885, 0.019409304484725, -0.2557624876499176, -0.28177523612976074], [0.4161607325077057, -0.2844909131526947, 0.10777033120393753, 0.10621753334999084, 0.5707815289497375, -0.08484683185815811, 0.12603390216827393, 0.01941034011542797, -0.2557671070098877, -0.2817697525024414], [0.4161621034145355, -0.28449204564094543, 0.1077691912651062, 0.10621476173400879, 0.5707817077636719, -0.08484811335802078, 0.12603777647018433, 0.019413720816373825, -0.25576505064964294, -0.28176695108413696], [0.41615980863571167, -0.28449147939682007, 0.10777109861373901, 0.1062176525592804, 0.5707821249961853, -0.08485132455825806, 0.12603619694709778, 0.01941109262406826, -0.2557637095451355, -0.28177234530448914], [0.41616103053092957, -0.2844907343387604, 0.10777129977941513, 0.10621735453605652, 0.5707812309265137, -0.08484894037246704, 0.12603405117988586, 0.01941036246716976, -0.2557651400566101, -0.2817707359790802], [0.41616126894950867, -0.28449106216430664, 0.10777022689580917, 0.10621654987335205, 0.570781409740448, -0.08484794944524765, 0.12603551149368286, 0.01941174827516079, -0.25576549768447876, -0.2817689776420593], [0.41616031527519226, -0.2844892740249634, 0.10777463018894196, 0.10621780157089233, 0.570780873298645, -0.08484913408756256, 0.1260325014591217, 0.019407911226153374, -0.255764365196228, -0.28177255392074585], [0.41616153717041016, -0.2844898998737335, 0.1077699139714241, 0.10621620714664459, 0.5707805752754211, -0.08484536409378052, 0.1260347217321396, 0.019410310313105583, -0.2557666301727295, -0.28176814317703247], [0.4161613881587982, -0.2844898998737335, 0.10777159780263901, 0.10621604323387146, 0.5707807540893555, -0.08484805375337601, 0.1260351687669754, 0.0194102730602026, -0.2557643949985504, -0.28176963329315186], [0.4161606729030609, -0.28448954224586487, 0.10777146369218826, 0.10621736943721771, 0.5707806348800659, -0.08484791964292526, 0.1260339915752411, 0.019409185275435448, -0.25576502084732056, -0.2817710340023041], [0.41616129875183105, -0.28448864817619324, 0.10777302086353302, 0.10621706396341324, 0.5707800388336182, -0.0848468542098999, 0.12603238224983215, 0.019408194348216057, -0.25576528906822205, -0.2817705273628235], [0.41616150736808777, -0.28448930382728577, 0.10777069628238678, 0.10621629655361176, 0.5707802772521973, -0.08484560996294022, 0.12603436410427094, 0.019409796223044395, -0.25576597452163696, -0.2817685604095459], [0.416160523891449, -0.28448688983917236, 0.10777664929628372, 0.10621784627437592, 0.5707794427871704, -0.08484728634357452, 0.12603013217449188, 0.019404970109462738, -0.2557643949985504, -0.28177306056022644], [0.4161624014377594, -0.2844892144203186, 0.10776767879724503, 0.10621516406536102, 0.5707796812057495, -0.08484240621328354, 0.12603552639484406, 0.019410764798521996, -0.2557676434516907, -0.28176555037498474], [0.4161624014377594, -0.2844926416873932, 0.10776551067829132, 0.10621397197246552, 0.5707814693450928, -0.08484875410795212, 0.12604115903377533, 0.01941598579287529, -0.25576382875442505, -0.28176575899124146], [0.41616013646125793, -0.2844940721988678, 0.10776647180318832, 0.10621756315231323, 0.5707829594612122, -0.08485401421785355, 0.12603993713855743, 0.019415434449911118, -0.25576260685920715, -0.2817714512348175], [0.4161604642868042, -0.28449323773384094, 0.10777024179697037, 0.10621865093708038, 0.5707826018333435, -0.08485337346792221, 0.12603545188903809, 0.01941319927573204, -0.25576382875442505, -0.2817724049091339], [0.41616079211235046, -0.28449326753616333, 0.10776989907026291, 0.10621766746044159, 0.5707828402519226, -0.08485046774148941, 0.12603595852851868, 0.019413728266954422, -0.25576555728912354, -0.2817698121070862], [0.41616013646125793, -0.28449150919914246, 0.10777399688959122, 0.10621772706508636, 0.5707824230194092, -0.08485082536935806, 0.12603411078453064, 0.01941034011542797, -0.25576454401016235, -0.28177204728126526], [0.41616079211235046, -0.28449106216430664, 0.10777115076780319, 0.10621671378612518, 0.5707817673683167, -0.08484769612550735, 0.12603504955768585, 0.019410645589232445, -0.25576600432395935, -0.28176966309547424], [0.4161612093448639, -0.2844908833503723, 0.10777099430561066, 0.10621599107980728, 0.570781409740448, -0.08484850823879242, 0.12603583931922913, 0.01941114477813244, -0.25576484203338623, -0.28176945447921753], [0.41616079211235046, -0.2844909727573395, 0.10777009278535843, 0.10621679574251175, 0.570781409740448, -0.08484895527362823, 0.1260358989238739, 0.019411271438002586, -0.25576478242874146, -0.2817701995372772], [0.4161612391471863, -0.2844914197921753, 0.10776962339878082, 0.10621656477451324, 0.570781409740448, -0.08484908938407898, 0.1260361224412918, 0.01941211335361004, -0.25576478242874146, -0.2817695438861847], [0.41615983843803406, -0.2844882607460022, 0.10777664929628372, 0.10621899366378784, 0.5707805156707764, -0.08484965562820435, 0.1260301023721695, 0.01940596103668213, -0.2557641863822937, -0.2817745804786682], [0.41616153717041016, -0.2844875454902649, 0.10777337849140167, 0.1062169149518013, 0.5707794427871704, -0.08484309911727905, 0.12603074312210083, 0.01940663903951645, -0.2557675242424011, -0.2817690372467041], [0.4161624014377594, -0.28448933362960815, 0.10776957869529724, 0.1062142476439476, 0.5707800388336182, -0.08484410494565964, 0.1260363906621933, 0.019410980865359306, -0.25576600432395935, -0.281765878200531], [0.4161608815193176, -0.28449028730392456, 0.10776962339878082, 0.10621616244316101, 0.5707808136940002, -0.08484882116317749, 0.12603695690631866, 0.01941094361245632, -0.25576379895210266, -0.28177011013031006], [0.41616159677505493, -0.28449198603630066, 0.10776664316654205, 0.10621631145477295, 0.5707812905311584, -0.08484907448291779, 0.1260378360748291, 0.019413720816373825, -0.2557646930217743, -0.2817685306072235], [0.4161607027053833, -0.284491628408432, 0.10777100920677185, 0.1062178760766983, 0.5707816481590271, -0.08485157787799835, 0.12603525817394257, 0.01941191963851452, -0.25576359033584595, -0.2817716896533966], [0.41616091132164, -0.28449222445487976, 0.10776932537555695, 0.10621742904186249, 0.5707820057868958, -0.08484912663698196, 0.1260359287261963, 0.019412774592638016, -0.2557656168937683, -0.2817695736885071], [0.416161447763443, -0.28449374437332153, 0.10776776820421219, 0.10621576756238937, 0.5707827806472778, -0.0848502442240715, 0.1260390430688858, 0.019415389746427536, -0.25576478242874146, -0.2817678451538086], [0.4161602556705475, -0.2844941020011902, 0.10776860266923904, 0.10621712356805801, 0.5707833766937256, -0.08485311269760132, 0.12603889405727386, 0.01941480115056038, -0.25576359033584595, -0.28177088499069214], [0.416159063577652, -0.2844892740249634, 0.10777820646762848, 0.10622024536132812, 0.5707814693450928, -0.08485249429941177, 0.12602919340133667, 0.01940573751926422, -0.2557636499404907, -0.2817770540714264], [0.41616079211235046, -0.2844856381416321, 0.10777831077575684, 0.10621852427721024, 0.570779025554657, -0.084842748939991, 0.12602603435516357, 0.019402610138058662, -0.2557681202888489, -0.28177183866500854], [0.41616296768188477, -0.2844870388507843, 0.10777178406715393, 0.10621364414691925, 0.5707789063453674, -0.08483962714672089, 0.12603363394737244, 0.019407933577895164, -0.2557680010795593, -0.2817644476890564], [0.41616055369377136, -0.284485399723053, 0.10777613520622253, 0.1062164157629013, 0.5707786679267883, -0.08484569936990738, 0.12603150308132172, 0.019403785467147827, -0.25576382875442505, -0.28177234530448914], [0.4161613881587982, -0.28448382019996643, 0.10777503997087479, 0.1062174141407013, 0.5707771182060242, -0.08484181761741638, 0.1260279268026352, 0.01940205879509449, -0.2557664215564728, -0.28177136182785034], [0.4161635637283325, -0.2844867408275604, 0.10776855051517487, 0.10621403157711029, 0.5707777142524719, -0.08483986556529999, 0.12603417038917542, 0.01940917782485485, -0.25576722621917725, -0.28176406025886536], [0.4161619246006012, -0.28448987007141113, 0.10776755958795547, 0.10621502995491028, 0.5707799196243286, -0.08484679460525513, 0.1260383129119873, 0.01941225491464138, -0.2557638883590698, -0.2817673683166504], [0.4161601662635803, -0.2844884991645813, 0.10777334868907928, 0.10621872544288635, 0.5707799792289734, -0.0848500207066536, 0.1260322630405426, 0.019407376646995544, -0.25576329231262207, -0.28177404403686523], [0.41616109013557434, -0.28448614478111267, 0.10777610540390015, 0.10621872544288635, 0.5707786679267883, -0.08484476804733276, 0.12602756917476654, 0.019404232501983643, -0.2557664215564728, -0.281772255897522], [0.41616255044937134, -0.284487247467041, 0.1077718585729599, 0.10621526837348938, 0.5707789063453674, -0.08484116941690445, 0.1260325312614441, 0.019408008083701134, -0.2557676434516907, -0.2817660868167877], [0.41616109013557434, -0.2844865620136261, 0.10777483880519867, 0.10621622204780579, 0.5707791447639465, -0.08484531939029694, 0.12603230774402618, 0.019405744969844818, -0.25576457381248474, -0.2817707359790802], [0.4161614179611206, -0.2844862639904022, 0.1077725812792778, 0.1062166690826416, 0.570778489112854, -0.0848434790968895, 0.12603148818016052, 0.01940564066171646, -0.25576603412628174, -0.2817699611186981], [0.4161621034145355, -0.2844862937927246, 0.10777289420366287, 0.10621603578329086, 0.5707781910896301, -0.08484348654747009, 0.12603157758712769, 0.019406437873840332, -0.2557656764984131, -0.28176894783973694], [0.41616207361221313, -0.2844884395599365, 0.10776891559362411, 0.10621554404497147, 0.5707792639732361, -0.0848439410328865, 0.12603525817394257, 0.019409937784075737, -0.2557659447193146, -0.2817671597003937], [0.4161616265773773, -0.28448957204818726, 0.10776994377374649, 0.10621611773967743, 0.5707800984382629, -0.08484768122434616, 0.12603577971458435, 0.01941065303981304, -0.2557641565799713, -0.2817692458629608], [0.4161609411239624, -0.2844897210597992, 0.10777072608470917, 0.10621750354766846, 0.5707805156707764, -0.08484835177659988, 0.12603424489498138, 0.019409893080592155, -0.2557646632194519, -0.28177088499069214], [0.4161611795425415, -0.28448909521102905, 0.10777268558740616, 0.1062174141407013, 0.5707802176475525, -0.08484743535518646, 0.12603257596492767, 0.01940876804292202, -0.2557651996612549, -0.28177064657211304], [0.4161606729030609, -0.2844870984554291, 0.10777594149112701, 0.10621796548366547, 0.57077956199646, -0.08484595268964767, 0.1260298490524292, 0.01940540224313736, -0.2557656168937683, -0.28177201747894287], [0.4161619246006012, -0.28448739647865295, 0.10777229070663452, 0.10621581226587296, 0.5707792043685913, -0.08484260737895966, 0.12603241205215454, 0.01940733939409256, -0.25576701760292053, -0.2817678451538086], [0.41616296768188477, -0.28449198603630066, 0.10776372998952866, 0.1062130555510521, 0.570780873298645, -0.08484514057636261, 0.1260414868593216, 0.019415806978940964, -0.2557656764984131, -0.28176334500312805], [0.4161602854728699, -0.2844926416873932, 0.10776863247156143, 0.10621712356805801, 0.5707821846008301, -0.0848541334271431, 0.12603892385959625, 0.019413653761148453, -0.2557615637779236, -0.28177228569984436], [0.4161594808101654, -0.2844891846179962, 0.10777545720338821, 0.10622065514326096, 0.5707808136940002, -0.08485148102045059, 0.12602940201759338, 0.01940658688545227, -0.2557641863822937, -0.28177618980407715], [0.41616290807724, -0.28449171781539917, 0.10776704549789429, 0.1062152236700058, 0.5707810521125793, -0.08484368771314621, 0.12603622674942017, 0.0194140262901783, -0.2557683289051056, -0.28176403045654297], [0.4161607623100281, -0.28449249267578125, 0.10777075588703156, 0.10621575266122818, 0.570782482624054, -0.08485127985477448, 0.12603862583637238, 0.01941339299082756, -0.25576311349868774, -0.28176969289779663], [0.4161589741706848, -0.28448885679244995, 0.10777612030506134, 0.10621973127126694, 0.5707811713218689, -0.08485099673271179, 0.12603066861629486, 0.01940567046403885, -0.2557639479637146, -0.28177621960639954], [0.41616275906562805, -0.2844903767108917, 0.1077679991722107, 0.10621513426303864, 0.570780336856842, -0.0848434790968895, 0.1260351687669754, 0.01941194199025631, -0.25576791167259216, -0.28176525235176086], [0.41616126894950867, -0.284491628408432, 0.1077696830034256, 0.10621543973684311, 0.5707816481590271, -0.08484958112239838, 0.12603822350502014, 0.01941312476992607, -0.2557637095451355, -0.28176867961883545], [0.4161600172519684, -0.28449103236198425, 0.10777093470096588, 0.10621801018714905, 0.5707816481590271, -0.08485078811645508, 0.12603524327278137, 0.01941041462123394, -0.2557640075683594, -0.28177252411842346], [0.4161617159843445, -0.28449174761772156, 0.1077687218785286, 0.1062164455652237, 0.570781409740448, -0.08484833687543869, 0.12603604793548584, 0.019412819296121597, -0.25576555728912354, -0.28176844120025635], [0.4161621630191803, -0.2844964861869812, 0.10776147991418839, 0.10621435195207596, 0.5707836151123047, -0.08485052734613419, 0.1260444074869156, 0.01942085660994053, -0.255764901638031, -0.28176432847976685], [0.41616007685661316, -0.28449851274490356, 0.10776428878307343, 0.1062169149518013, 0.5707855820655823, -0.08485884219408035, 0.12604449689388275, 0.019420916214585304, -0.2557612657546997, -0.28177085518836975], [0.41615957021713257, -0.28449884057044983, 0.10776519030332565, 0.10621887445449829, 0.5707860589027405, -0.08485893905162811, 0.1260414719581604, 0.019419999793171883, -0.2557629942893982, -0.28177234530448914], [0.4161611497402191, -0.28450214862823486, 0.10776050388813019, 0.1062161922454834, 0.5707873106002808, -0.08485778421163559, 0.12604646384716034, 0.01942606270313263, -0.2557642459869385, -0.28176650404930115], [0.416157990694046, -0.28449973464012146, 0.10777078568935394, 0.10621985048055649, 0.5707877278327942, -0.0848635882139206, 0.12604062259197235, 0.019418904557824135, -0.2557608485221863, -0.28177621960639954], [0.41615983843803406, -0.2845001816749573, 0.10776463150978088, 0.10621790587902069, 0.5707871913909912, -0.08485627919435501, 0.12604206800460815, 0.01942111738026142, -0.25576576590538025, -0.2817695140838623], [0.41616010665893555, -0.2844999134540558, 0.10776744037866592, 0.10621653497219086, 0.5707871913909912, -0.08485903590917587, 0.12604309618473053, 0.019421184435486794, -0.25576287508010864, -0.281770259141922], [0.4161584675312042, -0.28449827432632446, 0.10776890069246292, 0.10621893405914307, 0.5707867741584778, -0.08485888689756393, 0.1260402649641037, 0.01941758021712303, -0.25576329231262207, -0.2817739248275757], [0.41615933179855347, -0.2844943404197693, 0.10777431726455688, 0.1062190979719162, 0.5707844495773315, -0.08485546708106995, 0.12603409588336945, 0.019412076100707054, -0.2557641863822937, -0.2817745804786682], [0.4161611795425415, -0.28449565172195435, 0.107766292989254, 0.1062157079577446, 0.5707842111587524, -0.08484957367181778, 0.12603986263275146, 0.019417207688093185, -0.255766898393631, -0.28176650404930115], [0.41615915298461914, -0.28449198603630066, 0.1077764555811882, 0.10621821135282516, 0.5707831382751465, -0.08485493063926697, 0.126034215092659, 0.019409677013754845, -0.2557622492313385, -0.2817753255367279], [0.4161592721939087, -0.2844872772693634, 0.10777799040079117, 0.1062198057770729, 0.5707804560661316, -0.084847092628479, 0.12602737545967102, 0.019403234124183655, -0.2557665705680847, -0.28177517652511597], [0.4161619544029236, -0.28448420763015747, 0.1077788844704628, 0.10621632635593414, 0.5707778334617615, -0.08484064042568207, 0.1260264366865158, 0.019401872530579567, -0.25576770305633545, -0.28176969289779663], [0.41616135835647583, -0.284482479095459, 0.10777787119150162, 0.10621599107980728, 0.5707769393920898, -0.08483897149562836, 0.1260276436805725, 0.019400449469685555, -0.25576719641685486, -0.28176984190940857], [0.4161631166934967, -0.28448447585105896, 0.10777075588703156, 0.10621361434459686, 0.5707768201828003, -0.08483821898698807, 0.12603293359279633, 0.019405461847782135, -0.2557671070098877, -0.28176525235176086], [0.41616326570510864, -0.2844897508621216, 0.10776309669017792, 0.10621295124292374, 0.570779025554657, -0.08484388142824173, 0.12604080140590668, 0.01941409334540367, -0.25576478242874146, -0.28176364302635193], [0.41616135835647583, -0.28449296951293945, 0.10776445269584656, 0.10621638596057892, 0.570781409740448, -0.08485256135463715, 0.12604080140590668, 0.019415970891714096, -0.25576192140579224, -0.2817695438861847], [0.4161606431007385, -0.2844940721988678, 0.10776694118976593, 0.10621875524520874, 0.5707826018333435, -0.0848538875579834, 0.12603759765625, 0.01941545680165291, -0.25576335191726685, -0.28177157044410706], [0.41616180539131165, -0.2844977378845215, 0.1077626571059227, 0.10621626675128937, 0.5707844495773315, -0.08485276997089386, 0.12604261934757233, 0.019421378150582314, -0.25576508045196533, -0.28176605701446533], [0.41615960001945496, -0.28449809551239014, 0.10776788741350174, 0.1062178760766983, 0.5707859396934509, -0.08485868573188782, 0.12604178488254547, 0.01941918022930622, -0.2557620704174042, -0.2817719876766205], [0.416159451007843, -0.2844976782798767, 0.1077675148844719, 0.10621853917837143, 0.5707858204841614, -0.08485668152570724, 0.12603992223739624, 0.019417772069573402, -0.25576409697532654, -0.2817719876766205], [0.4161604344844818, -0.28449761867523193, 0.10776758939027786, 0.10621701925992966, 0.5707855224609375, -0.0848555862903595, 0.12604045867919922, 0.019418613985180855, -0.2557642459869385, -0.28176987171173096], [0.4161582291126251, -0.2844926416873932, 0.10777738690376282, 0.1062202900648117, 0.5707839727401733, -0.0848560705780983, 0.12603223323822021, 0.019409185275435448, -0.25576311349868774, -0.28177741169929504], [0.4161597788333893, -0.2844875454902649, 0.1077793687582016, 0.10621930658817291, 0.5707806944847107, -0.08484625071287155, 0.12602657079696655, 0.01940334588289261, -0.2557673752307892, -0.28177404403686523], [0.41616153717041016, -0.28448450565338135, 0.10777903348207474, 0.10621599107980728, 0.5707784295082092, -0.08484043180942535, 0.12602728605270386, 0.01940196193754673, -0.25576794147491455, -0.2817695736885071], [0.41616225242614746, -0.28448542952537537, 0.10777217149734497, 0.10621386766433716, 0.5707780718803406, -0.08483941853046417, 0.1260332316160202, 0.019405663013458252, -0.255767285823822, -0.2817661166191101], [0.41616174578666687, -0.2844855487346649, 0.10777262598276138, 0.10621526837348938, 0.570777952671051, -0.0848439633846283, 0.1260329931974411, 0.0194055438041687, -0.25576433539390564, -0.2817697525024414], [0.416161447763443, -0.28448501229286194, 0.10777316987514496, 0.10621733218431473, 0.5707774758338928, -0.0848437026143074, 0.1260300576686859, 0.019404463469982147, -0.2557653486728668, -0.28177109360694885], [0.4161626100540161, -0.28448623418807983, 0.1077713742852211, 0.10621603578329086, 0.5707778334617615, -0.0848420187830925, 0.12603165209293365, 0.019407115876674652, -0.2557664215564728, -0.2817675471305847], [0.41616153717041016, -0.2844865024089813, 0.10777337849140167, 0.10621660947799683, 0.5707785487174988, -0.08484432101249695, 0.12603189051151276, 0.019406452775001526, -0.2557651698589325, -0.2817697823047638], [0.4161618649959564, -0.2844877243041992, 0.10777054727077484, 0.10621602088212967, 0.570779025554657, -0.08484382182359695, 0.1260336935520172, 0.0194083359092474, -0.25576597452163696, -0.28176820278167725], [0.4161621332168579, -0.2844897508621216, 0.10776844620704651, 0.10621532797813416, 0.5707799792289734, -0.08484607189893723, 0.1260366290807724, 0.019411547109484673, -0.25576499104499817, -0.2817673981189728], [0.4161612391471863, -0.28449130058288574, 0.10776813328266144, 0.10621653497219086, 0.5707811117172241, -0.08484935015439987, 0.1260373890399933, 0.019412709400057793, -0.25576409697532654, -0.28176939487457275], [0.41615983843803406, -0.2844879925251007, 0.10777692496776581, 0.10621961206197739, 0.5707802176475525, -0.08485033363103867, 0.126029372215271, 0.019405528903007507, -0.2557637095451355, -0.28177547454833984], [0.4161619544029236, -0.284488320350647, 0.10777144879102707, 0.10621665418148041, 0.5707796216011047, -0.08484256267547607, 0.12603183090686798, 0.019408350810408592, -0.2557681202888489, -0.2817675471305847], [0.4161616861820221, -0.284488320350647, 0.10777336359024048, 0.10621542483568192, 0.5707799196243286, -0.08484562486410141, 0.12603391706943512, 0.019408484920859337, -0.25576502084732056, -0.2817687690258026], [0.41616201400756836, -0.2844924330711365, 0.10776346921920776, 0.10621438175439835, 0.5707814693450928, -0.08484617620706558, 0.12604115903377533, 0.019415412098169327, -0.2557658553123474, -0.28176507353782654], [0.4161608815193176, -0.2844928801059723, 0.10776888579130173, 0.10621665418148041, 0.5707821249961853, -0.08485393971204758, 0.12603861093521118, 0.019414115697145462, -0.2557617425918579, -0.2817714214324951], [0.41615957021713257, -0.28449100255966187, 0.10777232050895691, 0.10621996223926544, 0.5707817077636719, -0.08485179394483566, 0.12603257596492767, 0.019409721717238426, -0.2557644248008728, -0.2817744016647339], [0.416161447763443, -0.2844897210597992, 0.10777386277914047, 0.10621748864650726, 0.5707807540893555, -0.08484682440757751, 0.12603147327899933, 0.019408999010920525, -0.2557663917541504, -0.2817699611186981], [0.41616153717041016, -0.2844913601875305, 0.10776906460523605, 0.10621526837348938, 0.5707816481590271, -0.08484595268964767, 0.1260373294353485, 0.019412649795413017, -0.255766361951828, -0.2817666530609131], [0.41616183519363403, -0.28449511528015137, 0.1077633947134018, 0.10621397197246552, 0.5707831382751465, -0.08485051989555359, 0.12604373693466187, 0.01941836066544056, -0.25576406717300415, -0.28176572918891907], [0.41615793108940125, -0.2844889461994171, 0.10777977108955383, 0.10622142255306244, 0.5707815289497375, -0.08485669642686844, 0.1260291337966919, 0.01940470188856125, -0.2557607889175415, -0.28178107738494873], [0.4161614775657654, -0.2844873070716858, 0.10777352750301361, 0.10621847957372665, 0.5707793235778809, -0.08484185487031937, 0.12602780759334564, 0.01940569281578064, -0.2557695209980011, -0.2817695438861847], [0.4161611795425415, -0.2844826281070709, 0.10778392106294632, 0.10621713846921921, 0.5707775950431824, -0.08484257012605667, 0.12602432072162628, 0.019399182870984077, -0.2557657063007355, -0.2817726731300354], [0.41616010665893555, -0.28447744250297546, 0.10778495669364929, 0.10621852427721024, 0.5707749724388123, -0.08483564108610153, 0.12601956725120544, 0.019391624256968498, -0.2557685673236847, -0.2817741930484772], [0.41616401076316833, -0.2844759523868561, 0.10778031498193741, 0.10621362924575806, 0.5707722902297974, -0.08482911437749863, 0.1260221302509308, 0.019393865019083023, -0.2557697296142578, -0.28176599740982056], [0.4161616861820221, -0.2844713628292084, 0.1077871024608612, 0.10621675103902817, 0.5707705616950989, -0.08483142405748367, 0.12601689994335175, 0.01938663423061371, -0.25576668977737427, -0.28177347779273987], [0.41616374254226685, -0.2844694256782532, 0.10778340697288513, 0.10621561855077744, 0.5707682371139526, -0.08482389152050018, 0.12601545453071594, 0.019385941326618195, -0.25577032566070557, -0.2817685306072235], [0.41616490483283997, -0.2844693064689636, 0.10778212547302246, 0.10621361434459686, 0.5707675814628601, -0.08482331782579422, 0.1260180026292801, 0.019387952983379364, -0.25576919317245483, -0.28176578879356384], [0.41616255044937134, -0.28446510434150696, 0.10779012739658356, 0.1062173992395401, 0.570766270160675, -0.08482491225004196, 0.12601085007190704, 0.019379617646336555, -0.2557676136493683, -0.28177371621131897], [0.4161645770072937, -0.2844618558883667, 0.1077895313501358, 0.10621604323387146, 0.5707637071609497, -0.08481636643409729, 0.12600736320018768, 0.019376862794160843, -0.2557716965675354, -0.2817690670490265], [0.4161660373210907, -0.28446149826049805, 0.1077868714928627, 0.10621296614408493, 0.5707628726959229, -0.08481359481811523, 0.12601099908351898, 0.01937909610569477, -0.2557714879512787, -0.2817644476890564], [0.41616466641426086, -0.28446003794670105, 0.10778900235891342, 0.10621447116136551, 0.5707623958587646, -0.08481589704751968, 0.1260097771883011, 0.019376132637262344, -0.25576937198638916, -0.28176864981651306], [0.4161659777164459, -0.2844604253768921, 0.10778489708900452, 0.10621365904808044, 0.5707617998123169, -0.08481330424547195, 0.12601083517074585, 0.019378097727894783, -0.2557709813117981, -0.2817654609680176], [0.4161665737628937, -0.2844628691673279, 0.1077815517783165, 0.1062125712633133, 0.5707626938819885, -0.08481539785861969, 0.12601493299007416, 0.01938267983496189, -0.2557697892189026, -0.2817634344100952], [0.4161655306816101, -0.2844655513763428, 0.107779860496521, 0.10621374845504761, 0.570764422416687, -0.08481982350349426, 0.12601739168167114, 0.01938547194004059, -0.25576841831207275, -0.281765341758728], [0.41616523265838623, -0.28446757793426514, 0.10777968168258667, 0.10621467977762222, 0.5707656741142273, -0.08482269942760468, 0.12601765990257263, 0.019387148320674896, -0.2557681202888489, -0.28176647424697876], [0.41616523265838623, -0.28447026014328003, 0.10777755826711655, 0.10621451586484909, 0.5707672238349915, -0.08482420444488525, 0.12602011859416962, 0.01939067803323269, -0.2557685077190399, -0.28176525235176086], [0.4161641299724579, -0.28447097539901733, 0.10778050869703293, 0.10621563345193863, 0.5707683563232422, -0.08482756465673447, 0.12601929903030396, 0.019389985129237175, -0.255767285823822, -0.281768262386322], [0.4161640703678131, -0.28447166085243225, 0.10777969658374786, 0.10621566325426102, 0.5707689523696899, -0.08482679724693298, 0.1260194182395935, 0.019390476867556572, -0.2557685375213623, -0.2817675471305847], [0.41616490483283997, -0.28447431325912476, 0.10777586698532104, 0.10621374845504761, 0.5707700252532959, -0.08482756465673447, 0.12602393329143524, 0.019395072013139725, -0.25576841831207275, -0.2817643880844116], [0.4161628484725952, -0.28447362780570984, 0.10778097808361053, 0.10621635615825653, 0.5707706212997437, -0.08483229577541351, 0.12602099776268005, 0.019391736015677452, -0.2557660639286041, -0.2817706763744354], [0.41616466641426086, -0.28447696566581726, 0.10777250677347183, 0.10621414333581924, 0.5707715153694153, -0.0848289430141449, 0.12602610886096954, 0.019398177042603493, -0.25576916337013245, -0.28176382184028625], [0.41616326570510864, -0.2844772934913635, 0.10777805745601654, 0.1062154546380043, 0.5707724690437317, -0.08483570069074631, 0.12602512538433075, 0.019397001713514328, -0.2557651698589325, -0.28176915645599365], [0.41616225242614746, -0.28447669744491577, 0.107778400182724, 0.10621750354766846, 0.5707725286483765, -0.08483400195837021, 0.1260223388671875, 0.01939472183585167, -0.2557673752307892, -0.2817706763744354], [0.416164755821228, -0.2844795882701874, 0.10777270048856735, 0.10621364414691925, 0.570773184299469, -0.08483198285102844, 0.12602798640727997, 0.01940116472542286, -0.25576844811439514, -0.2817634642124176], [0.41616302728652954, -0.28448259830474854, 0.10777126997709274, 0.10621445626020432, 0.5707754492759705, -0.08483855426311493, 0.126032292842865, 0.01940435916185379, -0.2557653486728668, -0.28176647424697876], [0.41616201400756836, -0.2844834625720978, 0.10777295380830765, 0.10621675103902817, 0.5707762241363525, -0.08484206348657608, 0.12603013217449188, 0.019403427839279175, -0.25576475262641907, -0.2817703187465668], [0.41616278886795044, -0.2844851315021515, 0.10777083039283752, 0.1062161773443222, 0.5707769393920898, -0.08484106510877609, 0.12603119015693665, 0.019406259059906006, -0.2557663917541504, -0.2817676067352295], [0.41616198420524597, -0.2844858467578888, 0.10777314007282257, 0.10621659457683563, 0.5707778930664062, -0.08484353870153427, 0.12603135406970978, 0.01940617710351944, -0.2557651996612549, -0.2817693054676056], [0.4161612391471863, -0.2844848930835724, 0.10777541249990463, 0.10621759295463562, 0.5707778334617615, -0.08484326303005219, 0.1260291188955307, 0.01940363645553589, -0.25576573610305786, -0.2817712724208832], [0.4161626994609833, -0.28448641300201416, 0.1077708750963211, 0.10621523857116699, 0.5707780718803406, -0.08484096080064774, 0.12603260576725006, 0.019407309591770172, -0.2557670474052429, -0.28176650404930115], [0.4161612391471863, -0.28448548913002014, 0.1077752485871315, 0.10621675103902817, 0.5707782506942749, -0.08484488725662231, 0.12603075802326202, 0.01940470188856125, -0.2557644546031952, -0.2817712724208832], [0.4161607325077057, -0.2844824492931366, 0.10777895897626877, 0.1062186136841774, 0.5707768201828003, -0.08484203368425369, 0.12602505087852478, 0.01939934678375721, -0.2557661533355713, -0.28177350759506226], [0.4161638021469116, -0.2844850718975067, 0.10776988416910172, 0.10621385276317596, 0.5707768797874451, -0.0848366841673851, 0.12603221833705902, 0.019406825304031372, -0.2557687759399414, -0.28176337480545044], [0.4161621332168579, -0.2844870984554291, 0.10777066648006439, 0.10621459037065506, 0.5707785487174988, -0.08484448492527008, 0.12603570520877838, 0.01940864883363247, -0.25576403737068176, -0.2817677855491638], [0.4161614775657654, -0.28448912501335144, 0.10776766389608383, 0.1062164306640625, 0.5707796216011047, -0.08484655618667603, 0.126036137342453, 0.019410422071814537, -0.2557646632194519, -0.28176915645599365], [0.4161621928215027, -0.28449130058288574, 0.10776706039905548, 0.10621605813503265, 0.5707805752754211, -0.08484853059053421, 0.12603725492954254, 0.019413594156503677, -0.2557643949985504, -0.28176790475845337], [0.4161604642868042, -0.2844913601875305, 0.10777077078819275, 0.10621819645166397, 0.5707815289497375, -0.08485107123851776, 0.1260351985692978, 0.01941167376935482, -0.25576382875442505, -0.2817717492580414], [0.4161611497402191, -0.28449195623397827, 0.10776971280574799, 0.10621719807386398, 0.5707817673683167, -0.08484888076782227, 0.1260356456041336, 0.01941247098147869, -0.25576552748680115, -0.28176936507225037], [0.41616132855415344, -0.2844933569431305, 0.1077679842710495, 0.1062159463763237, 0.5707826018333435, -0.08484990149736404, 0.12603868544101715, 0.01941487565636635, -0.255764901638031, -0.2817680835723877], [0.4161604940891266, -0.28449392318725586, 0.10776840150356293, 0.10621685534715652, 0.5707831978797913, -0.08485261350870132, 0.12603889405727386, 0.01941477134823799, -0.2557637095451355, -0.28177040815353394], [0.416159987449646, -0.284492164850235, 0.10777224600315094, 0.10621850937604904, 0.570782482624054, -0.08485259860754013, 0.12603455781936646, 0.019411204382777214, -0.2557639181613922, -0.281773179769516], [0.41616109013557434, -0.2844921350479126, 0.10776995867490768, 0.10621704906225204, 0.5707821249961853, -0.08484870195388794, 0.12603545188903809, 0.01941247098147869, -0.25576603412628174, -0.2817692160606384], [0.41616010665893555, -0.28448936343193054, 0.10777630656957626, 0.10621803253889084, 0.5707812309265137, -0.08484982699155807, 0.12603168189525604, 0.019407443702220917, -0.25576427578926086, -0.28177326917648315], [0.4161602854728699, -0.28448614478111267, 0.10777746140956879, 0.10621833056211472, 0.5707793831825256, -0.08484460413455963, 0.12602801620960236, 0.019403189420700073, -0.2557666599750519, -0.28177276253700256], [0.4161619544029236, -0.28448426723480225, 0.1077769547700882, 0.10621597617864609, 0.5707777738571167, -0.0848405659198761, 0.12602822482585907, 0.019402677193284035, -0.255767285823822, -0.2817692458629608], [0.41616111993789673, -0.2844814658164978, 0.10777969658374786, 0.10621688514947891, 0.5707764029502869, -0.08484003692865372, 0.1260257512331009, 0.019398638978600502, -0.255766361951828, -0.2817718982696533], [0.41616085171699524, -0.2844752073287964, 0.10778731107711792, 0.10621874034404755, 0.5707731246948242, -0.08483599871397018, 0.12601669132709503, 0.01938926987349987, -0.2557671070098877, -0.281775563955307], [0.41616493463516235, -0.28447768092155457, 0.10777339339256287, 0.10621272027492523, 0.5707724094390869, -0.08482635766267776, 0.12602601945400238, 0.019398437812924385, -0.25577157735824585, -0.2817613482475281], [0.4161633849143982, -0.28447914123535156, 0.1077757328748703, 0.10621321946382523, 0.5707736015319824, -0.08483617007732391, 0.12602953612804413, 0.019399816170334816, -0.25576475262641907, -0.28176695108413696], [0.41616174578666687, -0.2844790816307068, 0.10777527838945389, 0.10621722787618637, 0.5707738399505615, -0.08483762294054031, 0.12602616846561432, 0.019397784024477005, -0.255765825510025, -0.28177136182785034], [0.41616326570510864, -0.2844780683517456, 0.10777835547924042, 0.10621669888496399, 0.5707728862762451, -0.08483556658029556, 0.12602271139621735, 0.019396815448999405, -0.25576695799827576, -0.28176963329315186], [0.4161630868911743, -0.2844788730144501, 0.10777632147073746, 0.10621590167284012, 0.5707736015319824, -0.08483361452817917, 0.1260252594947815, 0.019398527219891548, -0.25576815009117126, -0.2817673087120056], [0.4161626696586609, -0.2844780683517456, 0.10777938365936279, 0.10621591657400131, 0.5707735419273376, -0.08483544737100601, 0.1260242909193039, 0.019396405667066574, -0.25576651096343994, -0.28176963329315186], [0.4161621928215027, -0.28447580337524414, 0.10778123140335083, 0.10621704906225204, 0.5707725286483765, -0.08483357727527618, 0.12602092325687408, 0.01939287595450878, -0.25576749444007874, -0.2817712426185608], [0.41616469621658325, -0.2844787538051605, 0.10777261108160019, 0.10621320456266403, 0.5707727670669556, -0.08483023941516876, 0.12602774798870087, 0.019400106742978096, -0.25576916337013245, -0.281762957572937], [0.4161628484725952, -0.2844800055027008, 0.10777503997087479, 0.10621486604213715, 0.5707741379737854, -0.08483774960041046, 0.12602895498275757, 0.019400404766201973, -0.255764901638031, -0.28176844120025635], [0.41616368293762207, -0.2844851016998291, 0.10776543617248535, 0.10621421784162521, 0.5707761645317078, -0.0848381295800209, 0.12603507936000824, 0.01940823160111904, -0.2557668089866638, -0.2817640006542206], [0.4161617159843445, -0.2844846844673157, 0.10777483880519867, 0.10621735453605652, 0.5707770586013794, -0.08484625071287155, 0.12603023648262024, 0.019404664635658264, -0.2557627260684967, -0.2817722260951996], [0.41616085171699524, -0.28448286652565, 0.10777698457241058, 0.10621949285268784, 0.5707767009735107, -0.0848415419459343, 0.12602511048316956, 0.0194005835801363, -0.2557668089866638, -0.2817729115486145], [0.41616347432136536, -0.28448373079299927, 0.10777431726455688, 0.1062149852514267, 0.5707764625549316, -0.0848373994231224, 0.1260288953781128, 0.019404038786888123, -0.2557681202888489, -0.2817656993865967], [0.41616153717041016, -0.28448349237442017, 0.1077757328748703, 0.1062159463763237, 0.5707771182060242, -0.0848410576581955, 0.1260301023721695, 0.019402706995606422, -0.2557655870914459, -0.2817697525024414], [0.41616103053092957, -0.2844799757003784, 0.10778085887432098, 0.10621804744005203, 0.5707753300666809, -0.08484021574258804, 0.12602341175079346, 0.019396360963582993, -0.255765825510025, -0.2817738652229309], [0.4161635935306549, -0.28448107838630676, 0.10777345299720764, 0.10621477663516998, 0.5707747340202332, -0.08483383804559708, 0.12602747976779938, 0.01940132863819599, -0.25576913356781006, -0.28176531195640564], [0.41616326570510864, -0.2844834625720978, 0.10777205228805542, 0.10621385276317596, 0.570776104927063, -0.0848388820886612, 0.12603244185447693, 0.01940499246120453, -0.2557656764984131, -0.281765878200531], [0.41616183519363403, -0.2844851016998291, 0.10777086019515991, 0.10621610283851624, 0.5707772374153137, -0.0848427265882492, 0.12603279948234558, 0.01940573751926422, -0.25576484203338623, -0.2817692458629608], [0.4161626696586609, -0.2844872772693634, 0.10776890069246292, 0.10621579736471176, 0.5707780718803406, -0.08484365791082382, 0.1260339766740799, 0.019409021362662315, -0.2557654082775116, -0.28176748752593994], [0.4161616861820221, -0.2844886779785156, 0.1077701523900032, 0.10621675103902817, 0.5707793831825256, -0.08484657108783722, 0.12603439390659332, 0.01940987817943096, -0.25576460361480713, -0.2817692458629608], [0.41616129875183105, -0.28448936343193054, 0.1077708899974823, 0.10621719807386398, 0.5707801580429077, -0.08484715968370438, 0.12603402137756348, 0.019409773871302605, -0.25576502084732056, -0.28176993131637573], [0.41616183519363403, -0.2844911217689514, 0.10776831209659576, 0.10621597617864609, 0.5707809925079346, -0.08484721183776855, 0.12603676319122314, 0.019412672147154808, -0.255765438079834, -0.28176766633987427], [0.41616055369377136, -0.2844904959201813, 0.10777221620082855, 0.10621745884418488, 0.5707812905311584, -0.0848502442240715, 0.1260347068309784, 0.01941024325788021, -0.25576382875442505, -0.2817717492580414], [0.41616085171699524, -0.2844899594783783, 0.10777167230844498, 0.10621754825115204, 0.570780873298645, -0.08484771102666855, 0.12603344023227692, 0.019409483298659325, -0.2557656168937683, -0.28177064657211304], [0.4161611795425415, -0.2844889163970947, 0.10777352750301361, 0.1062169149518013, 0.570780336856842, -0.08484700322151184, 0.12603262066841125, 0.019408388063311577, -0.2557653784751892, -0.28177040815353394], [0.4161612391471863, -0.2844890356063843, 0.1077716276049614, 0.10621647536754608, 0.5707802772521973, -0.08484574407339096, 0.12603390216827393, 0.01940898410975933, -0.2557659447193146, -0.2817692458629608], [0.4161609709262848, -0.2844875752925873, 0.10777463018894196, 0.10621701925992966, 0.5707796812057495, -0.0848466232419014, 0.12603165209293365, 0.01940646767616272, -0.25576484203338623, -0.2817714512348175], [0.41616299748420715, -0.28449246287345886, 0.10776232928037643, 0.10621367394924164, 0.5707810521125793, -0.0848442018032074, 0.12604103982448578, 0.019416358321905136, -0.2557670474052429, -0.2817627191543579], [0.41615986824035645, -0.2844906747341156, 0.10777417570352554, 0.10621801018714905, 0.5707815289497375, -0.08485451340675354, 0.1260349303483963, 0.019409960135817528, -0.25576087832450867, -0.2817748188972473], [0.4161599576473236, -0.2844884991645813, 0.10777372866868973, 0.10621986538171768, 0.570780336856842, -0.08484727144241333, 0.1260296255350113, 0.019406326115131378, -0.25576645135879517, -0.28177347779273987], [0.41616207361221313, -0.2844865620136261, 0.10777675360441208, 0.10621659457683563, 0.5707789659500122, -0.08484356850385666, 0.12602892518043518, 0.019405439496040344, -0.25576668977737427, -0.28176942467689514], [0.4161611497402191, -0.2844863533973694, 0.10777398198843002, 0.10621614754199982, 0.5707791447639465, -0.08484228700399399, 0.1260318011045456, 0.01940559595823288, -0.2557668089866638, -0.2817689776420593], [0.4161621034145355, -0.28448688983917236, 0.10777202248573303, 0.10621492564678192, 0.5707787275314331, -0.08484338968992233, 0.12603355944156647, 0.019407056272029877, -0.25576555728912354, -0.2817681133747101], [0.4161619544029236, -0.2844890058040619, 0.10776772350072861, 0.10621528327465057, 0.57077956199646, -0.08484522998332977, 0.12603658437728882, 0.019410794600844383, -0.2557651698589325, -0.28176748752593994], [0.41616079211235046, -0.2844877243041992, 0.10777411609888077, 0.10621799528598785, 0.5707793831825256, -0.08484876900911331, 0.12603163719177246, 0.019406862556934357, -0.2557634711265564, -0.28177300095558167], [0.41616174578666687, -0.28448858857154846, 0.10777018219232559, 0.10621701925992966, 0.57077956199646, -0.0848441794514656, 0.12603291869163513, 0.01940913312137127, -0.255766898393631, -0.2817683815956116], [0.4161624312400818, -0.2844911515712738, 0.1077679693698883, 0.10621476173400879, 0.5707808136940002, -0.08484651148319244, 0.12603795528411865, 0.019413482397794724, -0.2557651698589325, -0.2817660868167877], [0.4161592721939087, -0.2844879925251007, 0.10777691006660461, 0.1062193214893341, 0.5707805156707764, -0.08485092967748642, 0.12603074312210083, 0.01940542459487915, -0.2557629942893982, -0.2817760109901428], [0.41616231203079224, -0.2844892144203186, 0.10776897519826889, 0.10621607303619385, 0.5707798004150391, -0.08484289050102234, 0.12603366374969482, 0.019409945234656334, -0.2557680308818817, -0.2817665934562683], [0.4161626696586609, -0.2844928205013275, 0.10776549577713013, 0.10621361434459686, 0.5707816481590271, -0.08484774827957153, 0.12604118883609772, 0.019416432827711105, -0.2557646334171295, -0.2817646563053131], [0.4161595106124878, -0.284492552280426, 0.10777013748884201, 0.10621824115514755, 0.5707826018333435, -0.08485426008701324, 0.12603749334812164, 0.019412396475672722, -0.25576215982437134, -0.28177371621131897], [0.4161604642868042, -0.28449052572250366, 0.1077728196978569, 0.10621900856494904, 0.5707812309265137, -0.0848502516746521, 0.12603192031383514, 0.019409267231822014, -0.25576502084732056, -0.2817729711532593], [0.41616156697273254, -0.28449058532714844, 0.10777132958173752, 0.10621669888496399, 0.5707811117172241, -0.08484648168087006, 0.1260339468717575, 0.019411010667681694, -0.25576654076576233, -0.2817683517932892], [0.4161621034145355, -0.28449466824531555, 0.1077638640999794, 0.10621395707130432, 0.5707829594612122, -0.08484824746847153, 0.12604272365570068, 0.019418032839894295, -0.25576549768447876, -0.28176435828208923], [0.41616010665893555, -0.2844955623149872, 0.1077670007944107, 0.1062166839838028, 0.5707840919494629, -0.08485623449087143, 0.12604168057441711, 0.019416887313127518, -0.25576165318489075, -0.2817715108394623], [0.41616007685661316, -0.2844957709312439, 0.10776656121015549, 0.10621843487024307, 0.5707840323448181, -0.0848550945520401, 0.12603893876075745, 0.01941658928990364, -0.25576382875442505, -0.281771719455719], [0.4161604046821594, -0.2844947278499603, 0.10777060687541962, 0.10621827095746994, 0.570783793926239, -0.08485425263643265, 0.12603643536567688, 0.019414883106946945, -0.25576406717300415, -0.281771719455719], [0.4161596894264221, -0.2844927906990051, 0.10777324438095093, 0.10621865093708038, 0.5707833170890808, -0.08485187590122223, 0.12603425979614258, 0.019411420449614525, -0.25576508045196533, -0.28177258372306824], [0.41616111993789673, -0.28449276089668274, 0.10777021199464798, 0.10621611773967743, 0.5707827806472778, -0.08484873920679092, 0.12603668868541718, 0.019412923604249954, -0.25576603412628174, -0.2817685306072235], [0.4161599278450012, -0.2844902575016022, 0.1077747493982315, 0.10621753334999084, 0.5707817673683167, -0.08485068380832672, 0.12603354454040527, 0.019408663734793663, -0.255763977766037, -0.28177306056022644], [0.4161612391471863, -0.2844904363155365, 0.1077699139714241, 0.1062164455652237, 0.5707810521125793, -0.08484639972448349, 0.12603488564491272, 0.0194105114787817, -0.2557664215564728, -0.2817688286304474], [0.41616082191467285, -0.28448861837387085, 0.1077747642993927, 0.10621704906225204, 0.570780336856842, -0.08484836667776108, 0.12603232264518738, 0.01940765231847763, -0.2557642459869385, -0.28177177906036377], [0.41616010665893555, -0.2844852805137634, 0.10777800530195236, 0.10621882975101471, 0.5707787871360779, -0.08484494686126709, 0.12602722644805908, 0.01940223015844822, -0.25576597452163696, -0.28177380561828613], [0.4161619544029236, -0.28448307514190674, 0.10777805745601654, 0.10621659457683563, 0.5707769393920898, -0.08483944088220596, 0.1260262280702591, 0.01940097101032734, -0.2557676434516907, -0.2817697525024414], [0.4161606431007385, -0.28447747230529785, 0.10778607428073883, 0.10621828585863113, 0.5707746148109436, -0.08483802527189255, 0.12601958215236664, 0.019392317160964012, -0.2557666003704071, -0.2817748188972473], [0.4161626994609833, -0.2844747006893158, 0.10778255015611649, 0.10621602088212967, 0.5707720518112183, -0.08482924103736877, 0.12601904571056366, 0.019391020759940147, -0.25577011704444885, -0.2817690968513489], [0.41616377234458923, -0.2844734489917755, 0.10778168588876724, 0.10621395707130432, 0.570770800113678, -0.08482840657234192, 0.12602096796035767, 0.019391482695937157, -0.2557685375213623, -0.2817671597003937], [0.41616371273994446, -0.28447479009628296, 0.10777654498815536, 0.10621397197246552, 0.5707709789276123, -0.08482902497053146, 0.12602445483207703, 0.019394319504499435, -0.2557680904865265, -0.28176626563072205], [0.4161648154258728, -0.28447917103767395, 0.10776980221271515, 0.10621269047260284, 0.5707724690437317, -0.08483239263296127, 0.12603065371513367, 0.019401872530579567, -0.255766898393631, -0.2817632257938385], [0.4161634147167206, -0.28448355197906494, 0.10776782780885696, 0.10621462017297745, 0.5707752108573914, -0.08483990281820297, 0.1260339915752411, 0.019406631588935852, -0.25576454401016235, -0.2817661166191101], [0.4161634147167206, -0.2844896912574768, 0.10776225477457047, 0.10621485114097595, 0.570778489112854, -0.08484447002410889, 0.12603938579559326, 0.019414346665143967, -0.2557646632194519, -0.28176450729370117], [0.41616091132164, -0.2844904959201813, 0.10777037590742111, 0.10621839016675949, 0.5707804560661316, -0.08485198765993118, 0.1260351836681366, 0.01941153220832348, -0.25576215982437134, -0.2817723751068115], [0.4161611497402191, -0.28449180722236633, 0.10776841640472412, 0.10621815174818039, 0.5707814693450928, -0.08484850823879242, 0.1260351985692978, 0.01941271498799324, -0.2557659149169922, -0.28176945447921753], [0.4161614775657654, -0.284492552280426, 0.10777021199464798, 0.1062164157629013, 0.5707821846008301, -0.08484987914562225, 0.12603677809238434, 0.019413601607084274, -0.2557646930217743, -0.2817687392234802], [0.416159063577652, -0.2844887971878052, 0.10777752846479416, 0.10621953755617142, 0.5707813501358032, -0.08485071361064911, 0.1260303109884262, 0.019405722618103027, -0.25576406717300415, -0.28177574276924133], [0.4161618649959564, -0.28448837995529175, 0.10777220129966736, 0.10621623694896698, 0.5707798600196838, -0.08484309166669846, 0.12603196501731873, 0.019407844170928, -0.2557678520679474, -0.28176793456077576], [0.41616183519363403, -0.2844889163970947, 0.10777158290147781, 0.1062149703502655, 0.5707800984382629, -0.08484555035829544, 0.12603522837162018, 0.019409706816077232, -0.25576522946357727, -0.28176790475845337], [0.41616109013557434, -0.28449010848999023, 0.10776901990175247, 0.10621613264083862, 0.5707806348800659, -0.08484748005867004, 0.12603659927845, 0.019410839304327965, -0.2557647228240967, -0.2817693054676056], [0.4161609411239624, -0.2844890356063843, 0.10777271538972855, 0.10621753334999084, 0.5707801580429077, -0.08484891057014465, 0.12603294849395752, 0.01940852217376232, -0.25576409697532654, -0.2817719280719757], [0.4161611497402191, -0.2844885587692261, 0.10777238011360168, 0.10621757805347443, 0.5707799196243286, -0.08484599739313126, 0.1260320097208023, 0.01940813474357128, -0.25576603412628174, -0.2817703187465668], [0.4161609411239624, -0.28448623418807983, 0.10777716338634491, 0.1062176525592804, 0.570779025554657, -0.08484534174203873, 0.12602904438972473, 0.019404388964176178, -0.255765438079834, -0.2817719876766205], [0.4161616563796997, -0.28448596596717834, 0.10777361690998077, 0.10621623694896698, 0.5707785487174988, -0.08484148234128952, 0.1260307878255844, 0.019405268132686615, -0.255767285823822, -0.2817685902118683], [0.4161611497402191, -0.28448307514190674, 0.10777925699949265, 0.10621701925992966, 0.570777177810669, -0.08484282344579697, 0.1260269731283188, 0.019400576129555702, -0.2557651996612549, -0.2817723751068115], [0.41616159677505493, -0.2844812273979187, 0.10777757316827774, 0.10621707886457443, 0.5707758665084839, -0.084837906062603, 0.12602542340755463, 0.019398966804146767, -0.25576770305633545, -0.2817705273628235], [0.4161631166934967, -0.2844812572002411, 0.10777583718299866, 0.10621476173400879, 0.5707752108573914, -0.0848364382982254, 0.12602762877941132, 0.019400889053940773, -0.2557673454284668, -0.2817671000957489], [0.41616180539131165, -0.2844802439212799, 0.1077776625752449, 0.10621637105941772, 0.570775032043457, -0.08483830094337463, 0.1260264366865158, 0.019398661330342293, -0.25576603412628174, -0.28177058696746826], [0.4161626994609833, -0.2844799757003784, 0.10777615010738373, 0.1062159612774849, 0.5707743763923645, -0.08483617007732391, 0.12602598965168, 0.019398974254727364, -0.25576722621917725, -0.2817687690258026], [0.4161626994609833, -0.2844795286655426, 0.10777720808982849, 0.1062159314751625, 0.5707741975784302, -0.08483639359474182, 0.12602561712265015, 0.01939859427511692, -0.25576674938201904, -0.2817690372467041], [0.4161626696586609, -0.28447964787483215, 0.10777638107538223, 0.1062159314751625, 0.570774257183075, -0.08483584970235825, 0.12602604925632477, 0.019398780539631844, -0.2557671368122101, -0.2817686200141907], [0.4161626696586609, -0.2844793200492859, 0.10777734220027924, 0.1062159463763237, 0.5707740783691406, -0.08483616262674332, 0.12602552771568298, 0.019398221746087074, -0.25576674938201904, -0.2817690968513489], [0.41616272926330566, -0.28447937965393066, 0.10777648538351059, 0.10621587187051773, 0.5707740187644958, -0.08483550697565079, 0.12602581083774567, 0.019398504868149757, -0.25576716661453247, -0.2817685604095459], [0.41616255044937134, -0.2844783663749695, 0.10777876526117325, 0.10621631145477295, 0.5707736015319824, -0.08483583480119705, 0.12602411210536957, 0.019396696239709854, -0.25576668977737427, -0.28176993131637573], [0.4161618947982788, -0.2844749093055725, 0.10778379440307617, 0.10621777176856995, 0.5707721710205078, -0.08483380824327469, 0.126018688082695, 0.019391072914004326, -0.2557673156261444, -0.2817726731300354], [0.41616392135620117, -0.28447476029396057, 0.10777915269136429, 0.10621486604213715, 0.5707712769508362, -0.0848279818892479, 0.12602123618125916, 0.019393306225538254, -0.25576984882354736, -0.28176623582839966], [0.416163831949234, -0.2844756245613098, 0.10777802020311356, 0.10621389746665955, 0.5707715749740601, -0.08483061194419861, 0.12602455914020538, 0.019395191222429276, -0.2557674050331116, -0.281766414642334], [0.4161624014377594, -0.28447407484054565, 0.1077810674905777, 0.10621657967567444, 0.5707710981369019, -0.08483265340328217, 0.12602084875106812, 0.019391460344195366, -0.25576654076576233, -0.28177133202552795], [0.41616347432136536, -0.28447237610816956, 0.10778194665908813, 0.1062164306640625, 0.5707697868347168, -0.08482882380485535, 0.12601785361766815, 0.01938980631530285, -0.2557685375213623, -0.2817695736885071], [0.4161648750305176, -0.28447484970092773, 0.10777576267719269, 0.1062135249376297, 0.5707705616950989, -0.08482685685157776, 0.12602399289608002, 0.019395533949136734, -0.25576937198638916, -0.28176358342170715], [0.41616252064704895, -0.2844730019569397, 0.10778331756591797, 0.1062164157629013, 0.5707706212997437, -0.08483271300792694, 0.12601996958255768, 0.01939023844897747, -0.2557656466960907, -0.28177183866500854], [0.4161628186702728, -0.2844700813293457, 0.10778467357158661, 0.10621759295463562, 0.5707688331604004, -0.08482726663351059, 0.12601463496685028, 0.019385911524295807, -0.2557690739631653, -0.28177157044410706], [0.41616424918174744, -0.2844671905040741, 0.10778746008872986, 0.10621572285890579, 0.5707669854164124, -0.08482278138399124, 0.12601238489151, 0.019383393228054047, -0.25576990842819214, -0.28176891803741455], [0.41616392135620117, -0.28446486592292786, 0.10778794437646866, 0.10621534287929535, 0.5707658529281616, -0.08481983840465546, 0.12601187825202942, 0.019380757585167885, -0.2557702958583832, -0.2817687690258026], [0.4161653220653534, -0.2844647765159607, 0.10778430849313736, 0.10621332377195358, 0.57076495885849, -0.08481768518686295, 0.12601438164710999, 0.019382411614060402, -0.2557704448699951, -0.2817654609680176], [0.4161652624607086, -0.28446584939956665, 0.10778164118528366, 0.10621324926614761, 0.5707651376724243, -0.08481986820697784, 0.12601689994335175, 0.01938474178314209, -0.2557690143585205, -0.28176558017730713], [0.4161640405654907, -0.2844639718532562, 0.10778678208589554, 0.10621614754199982, 0.5707646012306213, -0.0848221629858017, 0.12601183354854584, 0.019380437210202217, -0.2557678818702698, -0.28177082538604736], [0.41616687178611755, -0.28446897864341736, 0.10777416080236435, 0.10621213912963867, 0.5707658529281616, -0.08481749147176743, 0.12602084875106812, 0.01939087174832821, -0.25577157735824585, -0.2817598879337311], [0.4161640703678131, -0.2844688892364502, 0.1077834963798523, 0.10621508955955505, 0.5707672238349915, -0.08482813835144043, 0.12601836025714874, 0.019387468695640564, -0.25576522946357727, -0.2817697823047638], [0.41616353392601013, -0.28446856141090393, 0.10778156667947769, 0.1062171533703804, 0.5707672238349915, -0.08482423424720764, 0.12601545453071594, 0.019385889172554016, -0.25576940178871155, -0.2817695736885071], [0.41616523265838623, -0.2844679057598114, 0.10778423398733139, 0.1062147468328476, 0.5707665681838989, -0.0848228856921196, 0.12601493299007416, 0.019386030733585358, -0.25576913356781006, -0.2817668318748474], [0.4161648452281952, -0.2844708263874054, 0.10777729749679565, 0.10621355473995209, 0.5707681775093079, -0.08482258021831512, 0.12602151930332184, 0.01939103566110134, -0.2557697892189026, -0.28176379203796387], [0.41616374254226685, -0.2844698429107666, 0.10778343677520752, 0.10621534287929535, 0.5707681179046631, -0.08482837677001953, 0.12601816654205322, 0.01938749849796295, -0.25576627254486084, -0.28177008032798767], [0.4161642789840698, -0.2844710052013397, 0.10777805745601654, 0.10621534287929535, 0.5707682967185974, -0.08482475578784943, 0.12601938843727112, 0.019390134140849113, -0.2557695806026459, -0.28176653385162354], [0.416164368391037, -0.2844705879688263, 0.10778257995843887, 0.10621513426303864, 0.5707682967185974, -0.08482732623815536, 0.12601810693740845, 0.019388994202017784, -0.2557674050331116, -0.281768262386322], [0.41616424918174744, -0.2844727039337158, 0.10777678340673447, 0.10621467977762222, 0.5707694292068481, -0.084825798869133, 0.12602196633815765, 0.019392548128962517, -0.255769282579422, -0.2817654609680176], [0.41616445779800415, -0.2844741940498352, 0.10777775198221207, 0.10621414333581924, 0.5707702040672302, -0.0848299190402031, 0.12602348625659943, 0.019394230097532272, -0.2557668089866638, -0.28176647424697876], [0.41616368293762207, -0.28447669744491577, 0.10777396708726883, 0.10621507465839386, 0.5707716345787048, -0.08483157306909561, 0.1260260045528412, 0.019397322088479996, -0.2557673752307892, -0.2817665636539459], [0.4161640703678131, -0.28447937965393066, 0.10777299106121063, 0.10621463507413864, 0.5707730054855347, -0.08483488857746124, 0.12602819502353668, 0.019400710240006447, -0.25576627254486084, -0.2817661166191101], [0.41616296768188477, -0.28448188304901123, 0.10777171701192856, 0.10621573776006699, 0.5707748532295227, -0.08483812212944031, 0.1260300725698471, 0.01940319687128067, -0.2557659447193146, -0.28176745772361755], [0.4161624312400818, -0.28448250889778137, 0.1077745109796524, 0.10621675103902817, 0.5707756280899048, -0.08484052121639252, 0.1260284185409546, 0.019402379170060158, -0.2557654082775116, -0.281769722700119], [0.4161626696586609, -0.2844841182231903, 0.10777199268341064, 0.10621608793735504, 0.5707765817642212, -0.08483956009149551, 0.12603040039539337, 0.019404835999011993, -0.2557668089866638, -0.28176748752593994], [0.4161611497402191, -0.2844812273979187, 0.10778062045574188, 0.10621809214353561, 0.5707759857177734, -0.08484198898077011, 0.12602461874485016, 0.019398460164666176, -0.2557649612426758, -0.28177353739738464], [0.4161638617515564, -0.28448551893234253, 0.10776680707931519, 0.10621371865272522, 0.5707768797874451, -0.08483552187681198, 0.1260339617729187, 0.019408104941248894, -0.2557694613933563, -0.2817620635032654], [0.41616228222846985, -0.28448694944381714, 0.10777179896831512, 0.10621466487646103, 0.5707784295082092, -0.08484605699777603, 0.12603528797626495, 0.019408440217375755, -0.25576287508010864, -0.28176867961883545], [0.4161601662635803, -0.28448572754859924, 0.10777389258146286, 0.10621914267539978, 0.5707784295082092, -0.0848461166024208, 0.12602968513965607, 0.019404083490371704, -0.25576475262641907, -0.2817738652229309], [0.41616231203079224, -0.2844841182231903, 0.10777653008699417, 0.10621731728315353, 0.5707770586013794, -0.08484157919883728, 0.1260266751050949, 0.019402876496315002, -0.25576677918434143, -0.28177013993263245], [0.4161624312400818, -0.28448566794395447, 0.10777197778224945, 0.10621528327465057, 0.570777952671051, -0.08483972400426865, 0.1260320097208023, 0.019406475126743317, -0.2557675242424011, -0.28176626563072205], [0.4161609709262848, -0.2844833433628082, 0.10777880996465683, 0.10621712356805801, 0.5707773566246033, -0.08484375476837158, 0.1260279417037964, 0.019400985911488533, -0.2557643949985504, -0.2817728817462921], [0.4161614179611206, -0.2844808101654053, 0.10777835547924042, 0.10621772706508636, 0.5707756876945496, -0.08483842760324478, 0.12602435052394867, 0.019398080185055733, -0.2557675540447235, -0.2817716598510742], [0.41616296768188477, -0.28447940945625305, 0.10777895897626877, 0.10621564835309982, 0.5707743763923645, -0.0848354920744896, 0.1260242909193039, 0.019397851079702377, -0.25576770305633545, -0.2817685604095459], [0.41616228222846985, -0.2844786047935486, 0.10777844488620758, 0.10621585696935654, 0.5707740783691406, -0.0848349779844284, 0.12602487206459045, 0.019396919757127762, -0.2557674050331116, -0.2817692160606384], [0.4161626696586609, -0.28447720408439636, 0.10777965188026428, 0.1062159314751625, 0.5707730054855347, -0.08483435213565826, 0.12602315843105316, 0.01939507946372032, -0.2557671070098877, -0.28176984190940857], [0.41616374254226685, -0.28447893261909485, 0.1077738031744957, 0.10621435195207596, 0.5707732439041138, -0.08483260124921799, 0.12602722644805908, 0.019399458542466164, -0.25576820969581604, -0.28176552057266235], [0.41616249084472656, -0.28447818756103516, 0.10777871310710907, 0.10621613264083862, 0.5707734227180481, -0.08483706414699554, 0.12602484226226807, 0.01939685270190239, -0.2557653784751892, -0.28177058696746826], [0.4161624014377594, -0.2844770550727844, 0.10777883976697922, 0.10621722787618637, 0.5707727670669556, -0.08483406156301498, 0.12602218985557556, 0.019394945353269577, -0.2557676434516907, -0.28177040815353394], [0.4161626100540161, -0.28447335958480835, 0.10778545588254929, 0.10621735453605652, 0.5707710981369019, -0.08483194559812546, 0.12601691484451294, 0.019389500841498375, -0.2557676434516907, -0.2817719578742981], [0.4161640703678131, -0.28447410464286804, 0.10777835547924042, 0.10621444135904312, 0.570770800113678, -0.08482614159584045, 0.1260216385126114, 0.019393060356378555, -0.2557704448699951, -0.2817651331424713], [0.4161643981933594, -0.2844761312007904, 0.10777615010738373, 0.10621289163827896, 0.5707715153694153, -0.08483049273490906, 0.1260264664888382, 0.019396644085645676, -0.2557671070098877, -0.28176501393318176], [0.41616180539131165, -0.2844736874103546, 0.10778219997882843, 0.10621759295463562, 0.5707710981369019, -0.08483429253101349, 0.12601996958255768, 0.019390499219298363, -0.25576555728912354, -0.28177350759506226], [0.4161643087863922, -0.2844740152359009, 0.10777803510427475, 0.10621560364961624, 0.5707702040672302, -0.08482784032821655, 0.12602029740810394, 0.019392963498830795, -0.25576961040496826, -0.2817666828632355], [0.416164755821228, -0.2844771146774292, 0.1077742725610733, 0.10621318966150284, 0.5707718133926392, -0.08483010530471802, 0.1260269582271576, 0.019398750737309456, -0.25576794147491455, -0.28176355361938477], [0.41616255044937134, -0.2844780385494232, 0.10777650028467178, 0.10621582716703415, 0.5707730650901794, -0.08483598381280899, 0.1260264366865158, 0.019397418946027756, -0.2557654082775116, -0.28176960349082947], [0.4161621928215027, -0.2844754457473755, 0.10778162628412247, 0.10621803253889084, 0.5707719326019287, -0.08483487367630005, 0.126019686460495, 0.0193923469632864, -0.2557666301727295, -0.2817727029323578], [0.41616442799568176, -0.2844772934913635, 0.10777503997087479, 0.10621456056833267, 0.5707721710205078, -0.08482933789491653, 0.12602446973323822, 0.019397731870412827, -0.2557697594165802, -0.28176432847976685], [0.4161628484725952, -0.28447699546813965, 0.10777971148490906, 0.10621537268161774, 0.5707727670669556, -0.08483478426933289, 0.12602438032627106, 0.019395750015974045, -0.2557658851146698, -0.2817693054676056], [0.4161625802516937, -0.28447672724723816, 0.10777763277292252, 0.10621634125709534, 0.5707725286483765, -0.08483295142650604, 0.12602344155311584, 0.01939508691430092, -0.25576770305633545, -0.28176936507225037], [0.41616392135620117, -0.2844773530960083, 0.10777679085731506, 0.10621477663516998, 0.5707722902297974, -0.08483265340328217, 0.12602466344833374, 0.019397106021642685, -0.25576749444007874, -0.2817668318748474], [0.4161635935306549, -0.284480482339859, 0.1077716276049614, 0.10621427744626999, 0.5707740187644958, -0.08483442664146423, 0.12602989375591278, 0.019402043893933296, -0.25576719641685486, -0.2817651927471161], [0.41616153717041016, -0.28447768092155457, 0.10778185725212097, 0.10621802508831024, 0.5707734823226929, -0.08483953028917313, 0.1260223239660263, 0.01939469203352928, -0.25576433539390564, -0.28177422285079956], [0.41616255044937134, -0.28447574377059937, 0.10778038948774338, 0.10621772706508636, 0.5707721710205078, -0.0848316177725792, 0.12601938843727112, 0.019392913207411766, -0.2557693123817444, -0.2817702293395996], [0.4161633849143982, -0.28447309136390686, 0.10778491199016571, 0.10621584206819534, 0.570770800113678, -0.08482969552278519, 0.12601777911186218, 0.019389977678656578, -0.255768358707428, -0.28176942467689514], [0.4161628186702728, -0.2844710052013397, 0.10778411477804184, 0.1062159463763237, 0.570769727230072, -0.08482658863067627, 0.12601730227470398, 0.01938743144273758, -0.2557693123817444, -0.2817695438861847], [0.4161643981933594, -0.2844703495502472, 0.10778212547302246, 0.1062140017747879, 0.5707685351371765, -0.08482471108436584, 0.1260184347629547, 0.0193882267922163, -0.25576916337013245, -0.28176677227020264], [0.4161641597747803, -0.2844708561897278, 0.10777981579303741, 0.10621423274278641, 0.5707685351371765, -0.08482575416564941, 0.12602023780345917, 0.01938975416123867, -0.2557683289051056, -0.2817668616771698], [0.4161646068096161, -0.284472793340683, 0.10777688026428223, 0.10621409118175507, 0.570769190788269, -0.08482728898525238, 0.1260225921869278, 0.019392868503928185, -0.25576791167259216, -0.2817658483982086], [0.4161645174026489, -0.28447604179382324, 0.10777348279953003, 0.10621410608291626, 0.5707708597183228, -0.08483041822910309, 0.12602628767490387, 0.019397463649511337, -0.25576722621917725, -0.2817651033401489], [0.41616326570510864, -0.2844772934913635, 0.10777604579925537, 0.10621600598096848, 0.5707721710205078, -0.08483488857746124, 0.1260252594947815, 0.019397322088479996, -0.25576576590538025, -0.28176888823509216], [0.41616275906562805, -0.2844768166542053, 0.10777857899665833, 0.10621724277734756, 0.5707724094390869, -0.08483439683914185, 0.12602229416370392, 0.01939532533288002, -0.25576695799827576, -0.281770259141922], [0.4161634147167206, -0.2844768166542053, 0.10777847468852997, 0.1062159463763237, 0.5707724094390869, -0.08483217656612396, 0.12602274119853973, 0.019395742565393448, -0.2557681202888489, -0.2817678451538086], [0.4161624312400818, -0.28447455167770386, 0.10778312385082245, 0.10621675103902817, 0.5707717537879944, -0.0848325788974762, 0.12601979076862335, 0.01939149759709835, -0.25576722621917725, -0.28177106380462646], [0.4161628186702728, -0.2844717800617218, 0.10778439790010452, 0.1062166839838028, 0.5707701444625854, -0.08482836931943893, 0.12601672112941742, 0.01938796043395996, -0.25576892495155334, -0.2817705571651459], [0.41616523265838623, -0.28447428345680237, 0.10777565836906433, 0.1062125414609909, 0.5707702040672302, -0.08482515066862106, 0.12602412700653076, 0.01939491555094719, -0.2557700574398041, -0.2817624509334564], [0.4161636531352997, -0.28447598218917847, 0.10777627676725388, 0.10621395707130432, 0.5707715153694153, -0.084832563996315, 0.12602640688419342, 0.01939627155661583, -0.25576573610305786, -0.28176721930503845], [0.41616278886795044, -0.28447604179382324, 0.1077771782875061, 0.1062166839838028, 0.5707716345787048, -0.08483395725488663, 0.12602326273918152, 0.019394833594560623, -0.2557663917541504, -0.2817702889442444], [0.41616353392601013, -0.28447550535202026, 0.10777921229600906, 0.10621653497219086, 0.570771336555481, -0.08483220636844635, 0.12602102756500244, 0.019394230097532272, -0.2557676434516907, -0.2817690372467041], [0.41616305708885193, -0.28447455167770386, 0.10778126865625381, 0.10621650516986847, 0.570771336555481, -0.08483090996742249, 0.1260201334953308, 0.01939248852431774, -0.2557680904865265, -0.2817692756652832], [0.4161633253097534, -0.28447356820106506, 0.10778170078992844, 0.10621567815542221, 0.570770800113678, -0.08482919633388519, 0.1260198950767517, 0.019391177222132683, -0.25576844811439514, -0.28176864981651306], [0.4161640703678131, -0.2844744622707367, 0.10777770727872849, 0.10621412843465805, 0.570770800113678, -0.08482836186885834, 0.12602317333221436, 0.019393932074308395, -0.25576862692832947, -0.281765878200531], [0.4161628782749176, -0.28447285294532776, 0.10778236389160156, 0.10621613264083862, 0.5707703232765198, -0.08483140915632248, 0.12601977586746216, 0.019390298053622246, -0.25576648116111755, -0.28177085518836975], [0.41616448760032654, -0.2844752371311188, 0.1077745258808136, 0.10621429234743118, 0.5707706809043884, -0.08482759445905685, 0.12602411210536957, 0.01939569041132927, -0.25576940178871155, -0.28176453709602356], [0.4161648154258728, -0.28447961807250977, 0.10777086019515991, 0.10621273517608643, 0.5707728862762451, -0.08483331650495529, 0.126030832529068, 0.019402431324124336, -0.2557663917541504, -0.2817632853984833], [0.4161614775657654, -0.2844788730144501, 0.10777776688337326, 0.1062178909778595, 0.5707738399505615, -0.08483997732400894, 0.12602537870407104, 0.01939735934138298, -0.2557641267776489, -0.2817731201648712], [0.41616302728652954, -0.28447848558425903, 0.10777701437473297, 0.10621727257966995, 0.570773184299469, -0.08483456820249557, 0.12602287530899048, 0.01939718797802925, -0.2557680904865265, -0.2817692160606384], [0.41616326570510864, -0.2844783365726471, 0.10777845978736877, 0.10621567815542221, 0.5707734227180481, -0.0848340392112732, 0.12602414190769196, 0.019397560507059097, -0.2557676136493683, -0.2817677855491638], [0.4161626100540161, -0.28447842597961426, 0.10777760297060013, 0.10621567815542221, 0.570773720741272, -0.08483433723449707, 0.12602537870407104, 0.019397225230932236, -0.2557673454284668, -0.2817685306072235], [0.41616305708885193, -0.28447839617729187, 0.10777701437473297, 0.10621531307697296, 0.5707734227180481, -0.08483467251062393, 0.1260254979133606, 0.01939745619893074, -0.25576695799827576, -0.2817683815956116], [0.4161629378795624, -0.28447863459587097, 0.10777624696493149, 0.10621566325426102, 0.5707734227180481, -0.0848350077867508, 0.12602569162845612, 0.019398042932152748, -0.25576695799827576, -0.28176847100257874], [0.4161624014377594, -0.2844770550727844, 0.1077801063656807, 0.1062169000506401, 0.5707728862762451, -0.08483538776636124, 0.1260223090648651, 0.0193948857486248, -0.2557665705680847, -0.2817709743976593], [0.41616323590278625, -0.2844769358634949, 0.10777802020311356, 0.10621587187051773, 0.5707725286483765, -0.08483194559812546, 0.1260230541229248, 0.019395682960748672, -0.25576847791671753, -0.281767874956131], [0.4161638021469116, -0.2844785749912262, 0.1077752634882927, 0.10621414333581924, 0.5707731246948242, -0.08483292162418365, 0.1260269582271576, 0.019398944452404976, -0.2557675242424011, -0.28176575899124146], [0.4161626398563385, -0.28447920083999634, 0.10777580738067627, 0.10621560364961624, 0.5707738399505615, -0.08483637869358063, 0.12602704763412476, 0.019398728385567665, -0.25576597452163696, -0.2817689776420593], [0.4161634147167206, -0.2844814360141754, 0.10777181386947632, 0.10621504485607147, 0.570774495601654, -0.08483638614416122, 0.12602941691875458, 0.019402453675866127, -0.255766898393631, -0.28176644444465637], [0.4161624014377594, -0.28448161482810974, 0.10777547210454941, 0.10621649026870728, 0.5707752108573914, -0.08484000712633133, 0.1260278970003128, 0.01940138079226017, -0.2557651996612549, -0.28176993131637573], [0.4161624014377594, -0.2844824194908142, 0.10777389258146286, 0.10621659457683563, 0.5707756876945496, -0.08483850210905075, 0.12602822482585907, 0.019402192905545235, -0.25576692819595337, -0.28176864981651306], [0.41616255044937134, -0.28448250889778137, 0.10777535289525986, 0.10621597617864609, 0.5707759261131287, -0.08483944833278656, 0.1260283887386322, 0.01940225251019001, -0.2557661533355713, -0.28176870942115784], [0.41616129875183105, -0.28448012471199036, 0.10777987539768219, 0.10621783137321472, 0.5707752704620361, -0.0848393663764, 0.12602414190769196, 0.01939743384718895, -0.2557661235332489, -0.28177255392074585], [0.4161628484725952, -0.28447943925857544, 0.10777752846479416, 0.10621597617864609, 0.570774257183075, -0.0848345160484314, 0.126024529337883, 0.019397923722863197, -0.25576838850975037, -0.28176820278167725], [0.41616296768188477, -0.2844794988632202, 0.10777688026428223, 0.10621492564678192, 0.570774257183075, -0.0848352238535881, 0.12602657079696655, 0.019398899748921394, -0.2557671368122101, -0.2817676365375519], [0.4161626398563385, -0.28448015451431274, 0.10777515918016434, 0.10621535778045654, 0.570774495601654, -0.08483636379241943, 0.12602771818637848, 0.019399704411625862, -0.2557666301727295, -0.281768262386322], [0.4161631166934967, -0.2844814658164978, 0.10777319967746735, 0.10621517896652222, 0.5707748532295227, -0.08483747392892838, 0.1260291337966919, 0.019401999190449715, -0.2557663917541504, -0.28176745772361755], [0.4161616265773773, -0.28447943925857544, 0.10777956247329712, 0.10621783137321472, 0.570774495601654, -0.08483951538801193, 0.12602387368679047, 0.019397150725126266, -0.2557653784751892, -0.2817727029323578], [0.4161617159843445, -0.2844753861427307, 0.1077844649553299, 0.10621864348649979, 0.5707725286483765, -0.0848340392112732, 0.12601743638515472, 0.01939099095761776, -0.2557680606842041, -0.2817731499671936], [0.41616255044937134, -0.28447026014328003, 0.10778944939374924, 0.10621736943721771, 0.5707697868347168, -0.0848274677991867, 0.1260126531124115, 0.019384704530239105, -0.25576961040496826, -0.2817719280719757], [0.4161624014377594, -0.28446295857429504, 0.10779604315757751, 0.10621744394302368, 0.570766031742096, -0.08482096344232559, 0.12600572407245636, 0.01937497779726982, -0.2557704746723175, -0.28177374601364136], [0.41616588830947876, -0.28446221351623535, 0.1077861487865448, 0.10621228814125061, 0.5707637071609497, -0.08481161296367645, 0.1260114461183548, 0.019379006698727608, -0.2557735741138458, -0.2817631959915161], [0.4161672294139862, -0.2844676971435547, 0.10777471959590912, 0.10620877146720886, 0.5707653164863586, -0.08481677621603012, 0.126024067401886, 0.019390230998396873, -0.25576961040496826, -0.2817583978176117], [0.4161651134490967, -0.28447356820106506, 0.1077699288725853, 0.10621221363544464, 0.5707685351371765, -0.08482874929904938, 0.1260291337966919, 0.019396718591451645, -0.2557651400566101, -0.28176409006118774], [0.4161633551120758, -0.28447455167770386, 0.10777626186609268, 0.10621756315231323, 0.5707697868347168, -0.08483505249023438, 0.12602229416370392, 0.01939437910914421, -0.2557643949985504, -0.2817715108394623], [0.4161648154258728, -0.28447869420051575, 0.10777097940444946, 0.10621576756238937, 0.5707718729972839, -0.08483131974935532, 0.12602610886096954, 0.019401000812649727, -0.2557687759399414, -0.2817641496658325], [0.41616466641426086, -0.28448525071144104, 0.10776644200086594, 0.10621295124292374, 0.5707759857177734, -0.08483763784170151, 0.1260361671447754, 0.01940985582768917, -0.2557661235332489, -0.2817615866661072], [0.41616132855415344, -0.28448763489723206, 0.10776951909065247, 0.1062166839838028, 0.5707787275314331, -0.08484716713428497, 0.12603579461574554, 0.01940900646150112, -0.25576284527778625, -0.2817702889442444], [0.41616153717041016, -0.28448817133903503, 0.10777047276496887, 0.1062178760766983, 0.570779025554657, -0.08484675735235214, 0.12603259086608887, 0.01940855197608471, -0.25576484203338623, -0.2817706763744354], [0.4161611497402191, -0.28448644280433655, 0.10777603089809418, 0.10621843487024307, 0.5707787871360779, -0.08484575897455215, 0.12602874636650085, 0.019405215978622437, -0.2557653784751892, -0.28177204728126526], [0.4161607027053833, -0.2844829857349396, 0.1077805906534195, 0.10621862858533859, 0.5707774758338928, -0.08484175056219101, 0.126024529337883, 0.01939956285059452, -0.2557668387889862, -0.28177303075790405], [0.4161622226238251, -0.28448110818862915, 0.1077788695693016, 0.1062159463763237, 0.5707759261131287, -0.08483639359474182, 0.12602530419826508, 0.019398855045437813, -0.25576844811439514, -0.2817688286304474], [0.41616183519363403, -0.28447821736335754, 0.10778158158063889, 0.10621607303619385, 0.5707743763923645, -0.08483618497848511, 0.12602335214614868, 0.01939518377184868, -0.2557668685913086, -0.2817710340023041], [0.41616201400756836, -0.2844747006893158, 0.10778337717056274, 0.10621694475412369, 0.5707721710205078, -0.08483259379863739, 0.1260191798210144, 0.01939070038497448, -0.25576791167259216, -0.2817718982696533], [0.4161645174026489, -0.28447622060775757, 0.10777561366558075, 0.10621341317892075, 0.5707715749740601, -0.08482816070318222, 0.12602463364601135, 0.0193963460624218, -0.25576964020729065, -0.2817640006542206], [0.4161643981933594, -0.28448089957237244, 0.10776947438716888, 0.10621224343776703, 0.5707737803459167, -0.08483409136533737, 0.12603293359279633, 0.019403882324695587, -0.2557663917541504, -0.2817629277706146], [0.41616085171699524, -0.28447842597961426, 0.10778022557497025, 0.10621862858533859, 0.5707738399505615, -0.0848417803645134, 0.1260237842798233, 0.019395653158426285, -0.25576311349868774, -0.28177565336227417], [0.4161631166934967, -0.2844778895378113, 0.1077769547700882, 0.10621745884418488, 0.5707727670669556, -0.08483283221721649, 0.12602174282073975, 0.019396420568227768, -0.255769282579422, -0.2817687690258026], [0.41616398096084595, -0.28447890281677246, 0.10777701437473297, 0.10621442645788193, 0.5707734227180481, -0.08483319729566574, 0.12602584064006805, 0.019399160519242287, -0.25576773285865784, -0.2817656695842743], [0.41616156697273254, -0.2844773530960083, 0.10778049379587173, 0.1062169149518013, 0.5707736015319824, -0.08483589440584183, 0.12602348625659943, 0.019394677132368088, -0.25576624274253845, -0.2817716598510742], [0.41616350412368774, -0.2844773828983307, 0.10777691006660461, 0.10621519386768341, 0.570772647857666, -0.08483213186264038, 0.1260240525007248, 0.019396331161260605, -0.25576838850975037, -0.281767338514328], [0.41616371273994446, -0.2844791114330292, 0.10777434706687927, 0.10621418803930283, 0.5707733631134033, -0.08483394235372543, 0.12602777779102325, 0.01939988322556019, -0.2557670772075653, -0.2817659378051758], [0.41616290807724, -0.28448110818862915, 0.10777289420366287, 0.1062152236700058, 0.5707745552062988, -0.08483738452196121, 0.12602956593036652, 0.019401760771870613, -0.2557659149169922, -0.28176766633987427], [0.4161622226238251, -0.28448066115379333, 0.10777635127305984, 0.10621701925992966, 0.5707747340202332, -0.0848393514752388, 0.12602634727954865, 0.019399704411625862, -0.25576549768447876, -0.281770795583725], [0.4161614179611206, -0.2844766676425934, 0.10778380185365677, 0.10621900856494904, 0.5707732439041138, -0.08483676612377167, 0.12601877748966217, 0.0193925928324461, -0.2557668089866638, -0.2817740738391876], [0.41616353392601013, -0.28447583317756653, 0.10778016597032547, 0.10621563345193863, 0.5707721710205078, -0.08482913672924042, 0.12602074444293976, 0.01939379796385765, -0.25577017664909363, -0.28176698088645935], [0.41616302728652954, -0.2844740152359009, 0.10778298228979111, 0.10621502995491028, 0.5707714557647705, -0.08483074605464935, 0.1260208636522293, 0.019391467794775963, -0.2557675242424011, -0.28176915645599365], [0.41616344451904297, -0.28447437286376953, 0.10777802020311356, 0.1062147244811058, 0.5707709789276123, -0.08482876420021057, 0.12602268159389496, 0.019392941147089005, -0.25576862692832947, -0.28176721930503845], [0.41616442799568176, -0.28447622060775757, 0.10777520388364792, 0.10621361434459686, 0.5707712769508362, -0.08483085036277771, 0.12602576613426208, 0.019396867603063583, -0.255767285823822, -0.2817654609680176], [0.41616198420524597, -0.28447386622428894, 0.10778260976076126, 0.10621781647205353, 0.5707710385322571, -0.08483435213565826, 0.1260194629430771, 0.019390856847167015, -0.2557656764984131, -0.28177326917648315], [0.4161635935306549, -0.28447267413139343, 0.10778144747018814, 0.1062166690826416, 0.5707699060440063, -0.0848277285695076, 0.1260175257921219, 0.01939011923968792, -0.2557695806026459, -0.2817687690258026], [0.41616398096084595, -0.28447166085243225, 0.1077829971909523, 0.10621501505374908, 0.5707694888114929, -0.08482685685157776, 0.1260184496641159, 0.01938963495194912, -0.2557687759399414, -0.2817676067352295], [0.41616401076316833, -0.28447291254997253, 0.10777842998504639, 0.10621412098407745, 0.5707699060440063, -0.0848264992237091, 0.12602214515209198, 0.019391989335417747, -0.25576889514923096, -0.28176596760749817], [0.4161635637283325, -0.2844720184803009, 0.10778147727251053, 0.10621523857116699, 0.5707694888114929, -0.08482960611581802, 0.12602001428604126, 0.019390089437365532, -0.2557668089866638, -0.28176942467689514], [0.4161622226238251, -0.2844669818878174, 0.107789546251297, 0.10621869564056396, 0.5707674026489258, -0.0848272517323494, 0.12601053714752197, 0.01938125677406788, -0.25576797127723694, -0.28177475929260254], [0.4161648750305176, -0.28446486592292786, 0.10778723657131195, 0.10621542483568192, 0.5707653164863586, -0.08481772989034653, 0.1260102093219757, 0.019381018355488777, -0.25577208399772644, -0.2817670702934265], [0.41616517305374146, -0.28446435928344727, 0.10778620839118958, 0.10621321946382523, 0.5707650184631348, -0.0848175585269928, 0.12601377069950104, 0.01938186027109623, -0.2557702958583832, -0.28176552057266235], [0.4161636233329773, -0.2844608426094055, 0.10779109597206116, 0.10621588677167892, 0.5707634687423706, -0.08481881767511368, 0.12600859999656677, 0.01937536522746086, -0.2557688057422638, -0.2817716598510742], [0.41616594791412354, -0.2844600975513458, 0.10778636485338211, 0.10621403157711029, 0.5707618594169617, -0.08481255918741226, 0.1260090321302414, 0.019377049058675766, -0.2557719349861145, -0.28176572918891907], [0.4161664545536041, -0.28446149826049805, 0.10778418928384781, 0.1062125414609909, 0.5707622766494751, -0.0848141685128212, 0.12601296603679657, 0.019380422309041023, -0.255770206451416, -0.2817639112472534], [0.41616445779800415, -0.2844598889350891, 0.10778898745775223, 0.1062157079577446, 0.5707621574401855, -0.08481734991073608, 0.12600892782211304, 0.01937592402100563, -0.2557685673236847, -0.281770259141922], [0.4161660969257355, -0.28446000814437866, 0.10778576135635376, 0.10621441155672073, 0.570761501789093, -0.08481281250715256, 0.12600912153720856, 0.019377443939447403, -0.2557715177536011, -0.28176572918891907], [0.4161677360534668, -0.28446587920188904, 0.10777561366558075, 0.10621044784784317, 0.570763885974884, -0.08481442928314209, 0.12602035701274872, 0.019388487562537193, -0.25577080249786377, -0.2817584276199341], [0.4161641299724579, -0.2844669222831726, 0.10778217017650604, 0.1062149852514267, 0.5707658529281616, -0.08482582122087479, 0.12601816654205322, 0.019385740160942078, -0.2557653486728668, -0.2817695438861847], [0.4161645770072937, -0.28446781635284424, 0.10777996480464935, 0.10621629655361176, 0.570766031742096, -0.08482294529676437, 0.12601585686206818, 0.01938634365797043, -0.25576919317245483, -0.28176799416542053], [0.41616788506507874, -0.28447696566581726, 0.1077653244137764, 0.10620994865894318, 0.5707696676254272, -0.08482356369495392, 0.12603135406970978, 0.01940315216779709, -0.2557699382305145, -0.2817552089691162], [0.41616103053092957, -0.28447476029396057, 0.1077837347984314, 0.10621853917837143, 0.5707717537879944, -0.08484041690826416, 0.12602177262306213, 0.01939200423657894, -0.2557612657546997, -0.28177669644355774], [0.41616320610046387, -0.2844744324684143, 0.10777776688337326, 0.10621825605630875, 0.5707706809043884, -0.08482874929904938, 0.12601852416992188, 0.019392160698771477, -0.2557704746723175, -0.28176918625831604], [0.4161647856235504, -0.28447380661964417, 0.10778224468231201, 0.10621451586484909, 0.5707704424858093, -0.08482909947633743, 0.1260198950767517, 0.019392861053347588, -0.2557681202888489, -0.281766414642334], [0.41616296768188477, -0.2844753563404083, 0.10777707397937775, 0.10621501505374908, 0.5707717537879944, -0.08482926338911057, 0.12602432072162628, 0.019394520670175552, -0.2557685971260071, -0.2817668318748474], [0.41616424918174744, -0.28447675704956055, 0.10777594149112701, 0.10621374845504761, 0.5707718133926392, -0.08483221381902695, 0.12602598965168, 0.01939687505364418, -0.25576668977737427, -0.28176629543304443], [0.41616329550743103, -0.2844790816307068, 0.10777247697114944, 0.10621510446071625, 0.5707731246948242, -0.08483469486236572, 0.12602828443050385, 0.019400151446461678, -0.2557666301727295, -0.28176695108413696], [0.41616344451904297, -0.2844812870025635, 0.10777267068624496, 0.10621541738510132, 0.5707743167877197, -0.08483777940273285, 0.1260291039943695, 0.01940234936773777, -0.2557657063007355, -0.28176742792129517], [0.4161617159843445, -0.28448012471199036, 0.10777808725833893, 0.10621802508831024, 0.5707746744155884, -0.08483956009149551, 0.1260247379541397, 0.01939847506582737, -0.25576555728912354, -0.28177207708358765], [0.41616353392601013, -0.2844822108745575, 0.10777240246534348, 0.1062152087688446, 0.5707752108573914, -0.08483537286520004, 0.12602877616882324, 0.019402973353862762, -0.25576841831207275, -0.2817654311656952], [0.41616296768188477, -0.28448450565338135, 0.10777167230844498, 0.10621439665555954, 0.5707767605781555, -0.0848403200507164, 0.12603294849395752, 0.019406020641326904, -0.25576549768447876, -0.281766414642334], [0.41616153717041016, -0.2844853401184082, 0.10777205228805542, 0.1062166690826416, 0.5707775950431824, -0.08484365791082382, 0.1260320246219635, 0.019405417144298553, -0.25576475262641907, -0.2817702293395996], [0.4161624014377594, -0.2844865620136261, 0.10777069628238678, 0.10621623694896698, 0.570777952671051, -0.0848432183265686, 0.12603230774402618, 0.019407466053962708, -0.25576579570770264, -0.281768262386322], [0.4161614775657654, -0.2844862937927246, 0.10777393728494644, 0.10621727257966995, 0.5707784295082092, -0.08484487235546112, 0.12603090703487396, 0.019405998289585114, -0.25576505064964294, -0.28177061676979065], [0.41616126894950867, -0.2844850420951843, 0.10777576267719269, 0.10621760785579681, 0.5707780718803406, -0.08484308421611786, 0.12602871656417847, 0.019403591752052307, -0.2557661235332489, -0.28177112340927124], [0.41616198420524597, -0.284484326839447, 0.10777539759874344, 0.10621631145477295, 0.570777416229248, -0.08484082669019699, 0.12602895498275757, 0.019403405487537384, -0.2557668089866638, -0.28176912665367126], [0.4161619246006012, -0.28448405861854553, 0.10777488350868225, 0.10621591657400131, 0.5707772374153137, -0.08484074473381042, 0.12602977454662323, 0.0194033682346344, -0.255766361951828, -0.2817690670490265], [0.4161616563796997, -0.28448283672332764, 0.10777644068002701, 0.10621660947799683, 0.5707765817642212, -0.08484092354774475, 0.12602795660495758, 0.01940138079226017, -0.2557659447193146, -0.2817706763744354], [0.416162371635437, -0.28448283672332764, 0.1077745109796524, 0.10621599107980728, 0.5707761645317078, -0.08483888953924179, 0.12602852284908295, 0.01940229721367359, -0.25576695799827576, -0.2817685604095459], [0.4161621034145355, -0.2844821512699127, 0.10777635127305984, 0.10621625185012817, 0.5707759857177734, -0.08483976125717163, 0.12602771818637848, 0.01940120942890644, -0.25576603412628174, -0.2817698121070862], [0.4161624014377594, -0.2844826877117157, 0.10777399688959122, 0.10621588677167892, 0.5707759857177734, -0.08483856916427612, 0.12602898478507996, 0.01940244622528553, -0.25576692819595337, -0.28176820278167725], [0.41616290807724, -0.28448450565338135, 0.10777156800031662, 0.10621488094329834, 0.5707767009735107, -0.08484002202749252, 0.1260320246219635, 0.019405581057071686, -0.2557661235332489, -0.281766802072525], [0.4161612391471863, -0.28448328375816345, 0.10777632147073746, 0.10621747374534607, 0.5707768201828003, -0.08484315127134323, 0.12602829933166504, 0.01940190978348255, -0.2557646930217743, -0.2817722260951996], [0.41616225242614746, -0.28448301553726196, 0.1077747493982315, 0.10621682554483414, 0.5707762241363525, -0.08483923971652985, 0.12602759897708893, 0.019402185454964638, -0.25576725602149963, -0.28176915645599365], [0.41616326570510864, -0.28448548913002014, 0.10777045786380768, 0.10621432214975357, 0.5707772374153137, -0.08483950793743134, 0.12603311240673065, 0.019407249987125397, -0.2557668387889862, -0.2817651331424713], [0.41616201400756836, -0.28448790311813354, 0.10776904970407486, 0.1062152236700058, 0.5707789063453674, -0.08484482765197754, 0.12603607773780823, 0.01940958760678768, -0.2557644844055176, -0.2817678153514862], [0.4161604940891266, -0.28448575735092163, 0.10777595639228821, 0.10621872544288635, 0.5707784295082092, -0.08484742045402527, 0.12602916359901428, 0.019403904676437378, -0.25576379895210266, -0.28177428245544434], [0.4161621034145355, -0.2844855785369873, 0.10777321457862854, 0.10621712356805801, 0.5707778334617615, -0.08484120666980743, 0.12602916359901428, 0.019405215978622437, -0.2557676136493683, -0.2817687392234802], [0.41616177558898926, -0.2844843864440918, 0.10777702927589417, 0.10621646046638489, 0.5707777142524719, -0.0848422423005104, 0.12602880597114563, 0.01940327137708664, -0.255765825510025, -0.2817700505256653], [0.41616058349609375, -0.2844807207584381, 0.1077812984585762, 0.10621827095746994, 0.5707761645317078, -0.08484027534723282, 0.12602365016937256, 0.019396867603063583, -0.2557664215564728, -0.28177374601364136], [0.4161628782749176, -0.28447937965393066, 0.10777819156646729, 0.10621557384729385, 0.5707743763923645, -0.08483415096998215, 0.1260242611169815, 0.019397545605897903, -0.255768746137619, -0.2817680239677429], [0.41616296768188477, -0.28447943925857544, 0.10777675360441208, 0.10621460527181625, 0.570774257183075, -0.08483496308326721, 0.1260269284248352, 0.019398869946599007, -0.25576716661453247, -0.28176742792129517], [0.4161636531352997, -0.2844833433628082, 0.10776861757040024, 0.10621338337659836, 0.5707756280899048, -0.08483659476041794, 0.12603355944156647, 0.01940557360649109, -0.255766898393631, -0.2817641496658325], [0.4161622226238251, -0.28448450565338135, 0.10777205228805542, 0.1062159463763237, 0.5707767009735107, -0.08484381437301636, 0.12603220343589783, 0.01940535008907318, -0.25576362013816833, -0.28176987171173096], [0.4161607325077057, -0.28448164463043213, 0.10777883976697922, 0.10621970146894455, 0.5707759857177734, -0.08484289050102234, 0.12602399289608002, 0.019398869946599007, -0.25576525926589966, -0.2817747890949249], [0.4161631166934967, -0.2844814658164978, 0.10777636617422104, 0.10621640086174011, 0.5707752704620361, -0.08483567833900452, 0.1260252594947815, 0.01940060593187809, -0.25576892495155334, -0.281767338514328], [0.41616299748420715, -0.28448307514190674, 0.10777381807565689, 0.10621420294046402, 0.5707763433456421, -0.08483745902776718, 0.12603087723255157, 0.01940375566482544, -0.25576698780059814, -0.28176581859588623], [0.41616132855415344, -0.2844819724559784, 0.10777686536312103, 0.10621663928031921, 0.5707762241363525, -0.0848412960767746, 0.12602825462818146, 0.019400300458073616, -0.2557649314403534, -0.2817716598510742], [0.4161621630191803, -0.2844805121421814, 0.10777702927589417, 0.10621701925992966, 0.5707749724388123, -0.08483809977769852, 0.12602511048316956, 0.019398795440793037, -0.25576695799827576, -0.28177058696746826], [0.4161633849143982, -0.28448185324668884, 0.10777358710765839, 0.10621491074562073, 0.5707751512527466, -0.0848361924290657, 0.1260286569595337, 0.01940249092876911, -0.2557676434516907, -0.2817660868167877], [0.4161623418331146, -0.28448283672332764, 0.10777408629655838, 0.10621554404497147, 0.570776104927063, -0.08483979851007462, 0.12603016197681427, 0.019402936100959778, -0.2557656168937683, -0.2817685306072235], [0.4161616861820221, -0.2844817042350769, 0.10777672380208969, 0.10621725767850876, 0.5707757472991943, -0.08484048396348953, 0.12602674961090088, 0.0194000992923975, -0.2557657063007355, -0.2817714214324951], [0.41616255044937134, -0.28448113799095154, 0.10777629166841507, 0.10621650516986847, 0.5707752108573914, -0.08483748883008957, 0.12602604925632477, 0.01940016634762287, -0.2557673156261444, -0.2817690372467041], [0.41616252064704895, -0.2844808101654053, 0.10777698457241058, 0.1062159463763237, 0.5707750916481018, -0.08483730256557465, 0.12602657079696655, 0.019399860873818398, -0.2557668685913086, -0.2817688286304474], [0.4161626100540161, -0.284481406211853, 0.10777480900287628, 0.10621543973684311, 0.5707752704620361, -0.08483710139989853, 0.12602831423282623, 0.01940104551613331, -0.25576698780059814, -0.28176793456077576], [0.4161626100540161, -0.2844819724559784, 0.10777439177036285, 0.1062154695391655, 0.5707754492759705, -0.08483865112066269, 0.12602896988391876, 0.019401879981160164, -0.2557660937309265, -0.28176841139793396], [0.4161614179611206, -0.28447940945625305, 0.10778004676103592, 0.10621793568134308, 0.5707746148109436, -0.0848393514752388, 0.12602350115776062, 0.019396696239709854, -0.2557657063007355, -0.28177300095558167], [0.41616225242614746, -0.2844763994216919, 0.10778230428695679, 0.10621762275695801, 0.5707728862762451, -0.08483368903398514, 0.12601947784423828, 0.01939300075173378, -0.255768358707428, -0.28177130222320557], [0.4161626100540161, -0.2844725549221039, 0.10778634995222092, 0.10621678084135056, 0.5707709193229675, -0.08482969552278519, 0.1260162889957428, 0.019388271495699883, -0.255768746137619, -0.28177106380462646], [0.4161633849143982, -0.2844703793525696, 0.10778458416461945, 0.10621525347232819, 0.5707692503929138, -0.08482497185468674, 0.12601660192012787, 0.019386813044548035, -0.2557699680328369, -0.28176844120025635], [0.4161642789840698, -0.2844696342945099, 0.10778260976076126, 0.10621385276317596, 0.5707681775093079, -0.0848241075873375, 0.1260182410478592, 0.01938745379447937, -0.25576910376548767, -0.2817668616771698], [0.41616353392601013, -0.2844676375389099, 0.10778495669364929, 0.10621560364961624, 0.5707671642303467, -0.08482491225004196, 0.1260153204202652, 0.01938433200120926, -0.2557680904865265, -0.28177011013031006], [0.4161642789840698, -0.2844659090042114, 0.10778539627790451, 0.1062157079577446, 0.5707657933235168, -0.08482153713703156, 0.12601284682750702, 0.019382620230317116, -0.25576961040496826, -0.28176888823509216], [0.416164755821228, -0.28446459770202637, 0.1077863797545433, 0.10621501505374908, 0.5707650184631348, -0.08481944352388382, 0.1260121464729309, 0.01938151754438877, -0.25576990842819214, -0.2817677855491638], [0.41616538166999817, -0.2844657897949219, 0.10778209567070007, 0.10621343553066254, 0.5707652568817139, -0.08481831848621368, 0.12601593136787415, 0.019384481012821198, -0.2557702958583832, -0.2817647457122803], [0.4161660969257355, -0.2844703793525696, 0.10777468979358673, 0.10621165484189987, 0.5707671046257019, -0.08482183516025543, 0.12602369487285614, 0.01939222775399685, -0.2557687759399414, -0.28176167607307434], [0.4161638617515564, -0.284471720457077, 0.10777834057807922, 0.1062152236700058, 0.5707685947418213, -0.08483000099658966, 0.12602192163467407, 0.019391370937228203, -0.25576546788215637, -0.2817690372467041], [0.4161635637283325, -0.2844712734222412, 0.10778069496154785, 0.10621733963489532, 0.5707685947418213, -0.0848287045955658, 0.12601742148399353, 0.019389284774661064, -0.2557677626609802, -0.281770259141922], [0.4161652624607086, -0.2844740152359009, 0.10777609050273895, 0.10621412843465805, 0.5707696676254272, -0.08482606709003448, 0.12602241337299347, 0.019394878298044205, -0.2557695209980011, -0.28176361322402954], [0.41616368293762207, -0.28447583317756653, 0.10777710378170013, 0.10621460527181625, 0.5707715153694153, -0.08483166247606277, 0.12602519989013672, 0.019395973533391953, -0.2557665705680847, -0.28176695108413696], [0.4161635637283325, -0.28447818756103516, 0.10777348279953003, 0.10621495544910431, 0.570772647857666, -0.08483327925205231, 0.12602725625038147, 0.01939871348440647, -0.25576701760292053, -0.28176674246788025], [0.41616320610046387, -0.2844788432121277, 0.10777579247951508, 0.10621587187051773, 0.570773184299469, -0.08483640849590302, 0.12602607905864716, 0.01939878799021244, -0.255765825510025, -0.2817688584327698], [0.41616398096084595, -0.28448352217674255, 0.10776757448911667, 0.1062142476439476, 0.5707753300666809, -0.08483610302209854, 0.12603288888931274, 0.01940649002790451, -0.2557675242424011, -0.28176355361938477], [0.41616106033325195, -0.28448086977005005, 0.10778070986270905, 0.10621840506792068, 0.5707755088806152, -0.0848439559340477, 0.12602505087852478, 0.019398408010601997, -0.2557630240917206, -0.2817749083042145], [0.4161616563796997, -0.2844785153865814, 0.10777957737445831, 0.10621875524520874, 0.5707741379737854, -0.08483515679836273, 0.12602093815803528, 0.019395355135202408, -0.25576892495155334, -0.28177157044410706], [0.4161643385887146, -0.2844795286655426, 0.10777639597654343, 0.10621364414691925, 0.5707738399505615, -0.08483229577541351, 0.12602637708187103, 0.019399793818593025, -0.2557687759399414, -0.28176426887512207], [0.4161614179611206, -0.28447774052619934, 0.10778063535690308, 0.10621653497219086, 0.5707740187644958, -0.08483688533306122, 0.12602438032627106, 0.01939517632126808, -0.2557656764984131, -0.2817718982696533], [0.41616326570510864, -0.2844778001308441, 0.10777626186609268, 0.10621541738510132, 0.5707728862762451, -0.08483276516199112, 0.1260245144367218, 0.01939668133854866, -0.2557682394981384, -0.28176772594451904], [0.4161641001701355, -0.28448033332824707, 0.10777247697114944, 0.10621374845504761, 0.5707738399505615, -0.08483447879552841, 0.126029372215271, 0.01940193958580494, -0.2557670772075653, -0.28176483511924744], [0.4161630868911743, -0.28448402881622314, 0.10776904970407486, 0.10621457546949387, 0.5707759857177734, -0.08483953773975372, 0.1260336935520172, 0.019406266510486603, -0.255765438079834, -0.2817661166191101], [0.41616180539131165, -0.2844843864440918, 0.10777336359024048, 0.10621722787618637, 0.5707768201828003, -0.08484406024217606, 0.12603029608726501, 0.019404344260692596, -0.25576406717300415, -0.281771183013916], [0.41616225242614746, -0.2844853401184082, 0.10777188837528229, 0.10621707886457443, 0.5707772970199585, -0.08484166860580444, 0.12603023648262024, 0.019405722618103027, -0.2557665705680847, -0.2817687392234802], [0.4161623418331146, -0.28448641300201416, 0.10777247697114944, 0.1062159463763237, 0.5707781910896301, -0.08484284579753876, 0.12603208422660828, 0.019407115876674652, -0.255765825510025, -0.28176799416542053], [0.41616103053092957, -0.28448548913002014, 0.10777520388364792, 0.10621736943721771, 0.5707783102989197, -0.08484428375959396, 0.12603016197681427, 0.019404292106628418, -0.25576522946357727, -0.2817714512348175], [0.41616249084472656, -0.28448688983917236, 0.10777048766613007, 0.1062154695391655, 0.5707784295082092, -0.08484179526567459, 0.1260329931974411, 0.01940770447254181, -0.2557668387889862, -0.28176695108413696], [0.4161621332168579, -0.28448882699012756, 0.10776932537555695, 0.10621516406536102, 0.57077956199646, -0.08484546095132828, 0.12603606283664703, 0.019410504028201103, -0.25576481223106384, -0.28176748752593994], [0.41616109013557434, -0.2844896912574768, 0.10776981711387634, 0.1062169149518013, 0.5707802772521973, -0.08484827727079391, 0.1260354220867157, 0.01941034011542797, -0.2557642161846161, -0.28177034854888916], [0.41616126894950867, -0.28448978066444397, 0.10777091979980469, 0.10621733218431473, 0.570780336856842, -0.0848480835556984, 0.12603387236595154, 0.019410042092204094, -0.2557648718357086, -0.28177037835121155], [0.41616103053092957, -0.2844892144203186, 0.10777274519205093, 0.10621748864650726, 0.5707803964614868, -0.08484737575054169, 0.126032754778862, 0.01940888725221157, -0.25576528906822205, -0.2817706763744354], [0.41616111993789673, -0.28448861837387085, 0.10777312517166138, 0.10621698945760727, 0.5707801580429077, -0.08484605699777603, 0.12603259086608887, 0.019408075138926506, -0.25576576590538025, -0.28177008032798767], [0.416161447763443, -0.28448864817619324, 0.10777200758457184, 0.1062161922454834, 0.5707800388336182, -0.08484550565481186, 0.1260336935520172, 0.019408633932471275, -0.25576573610305786, -0.28176912665367126], [0.4161621034145355, -0.28449124097824097, 0.10776667296886444, 0.10621485114097595, 0.570780873298645, -0.08484639972448349, 0.12603852152824402, 0.019413400441408157, -0.25576549768447876, -0.2817663550376892], [0.4161612391471863, -0.28449326753616333, 0.10776644200086594, 0.1062159463763237, 0.5707821846008301, -0.08485153317451477, 0.12603998184204102, 0.01941538229584694, -0.25576329231262207, -0.28176894783973694], [0.4161597192287445, -0.28449150919914246, 0.10777252167463303, 0.10621926188468933, 0.570781946182251, -0.08485326915979385, 0.12603382766246796, 0.019410451874136925, -0.2557631731033325, -0.2817744314670563], [0.4161607623100281, -0.28448981046676636, 0.10777371376752853, 0.10621846467256546, 0.5707809329032898, -0.08484768122434616, 0.12603114545345306, 0.019408581778407097, -0.25576627254486084, -0.2817714214324951], [0.4161609709262848, -0.2844878137111664, 0.10777617990970612, 0.1062171533703804, 0.5707801580429077, -0.08484547585248947, 0.1260305494070053, 0.019406288862228394, -0.2557661533355713, -0.2817707359790802], [0.41616010665893555, -0.28448331356048584, 0.10778138786554337, 0.10621827095746994, 0.5707780718803406, -0.08484332263469696, 0.12602533400058746, 0.019399205222725868, -0.25576603412628174, -0.28177422285079956], [0.4161616265773773, -0.2844794690608978, 0.10778158158063889, 0.10621701925992966, 0.5707752704620361, -0.08483648300170898, 0.1260223090648651, 0.019395705312490463, -0.2557682991027832, -0.28177130222320557], [0.416162371635437, -0.28447631001472473, 0.10778281837701797, 0.10621590167284012, 0.5707731246948242, -0.08483301103115082, 0.1260208934545517, 0.019392970949411392, -0.25576820969581604, -0.2817701995372772], [0.4161624610424042, -0.2844732701778412, 0.10778390616178513, 0.10621610283851624, 0.5707712173461914, -0.08483016490936279, 0.12601862847805023, 0.01938948594033718, -0.25576838850975037, -0.28177064657211304], [0.4161643981933594, -0.28447413444519043, 0.10777752846479416, 0.10621355473995209, 0.5707705616950989, -0.08482690900564194, 0.1260228157043457, 0.01939353719353676, -0.25576940178871155, -0.28176501393318176], [0.4161642789840698, -0.28447696566581726, 0.10777375847101212, 0.10621314495801926, 0.5707716941833496, -0.08483128994703293, 0.12602777779102325, 0.01939825899899006, -0.2557668685913086, -0.2817648649215698], [0.4161641299724579, -0.28448235988616943, 0.10776670277118683, 0.10621345043182373, 0.570774257183075, -0.08483617007732391, 0.1260339766740799, 0.019405759871006012, -0.25576600432395935, -0.28176382184028625], [0.4161626696586609, -0.28448498249053955, 0.10776972770690918, 0.10621613264083862, 0.5707764029502869, -0.08484385162591934, 0.12603315711021423, 0.01940702646970749, -0.255763441324234, -0.28176894783973694], [0.41616031527519226, -0.28448137640953064, 0.10778070986270905, 0.10622081905603409, 0.5707759261131287, -0.0848442018032074, 0.12602250277996063, 0.019397946074604988, -0.25576457381248474, -0.2817765772342682], [0.4161631166934967, -0.284481018781662, 0.10777686536312103, 0.10621671378612518, 0.5707750916481018, -0.08483429253101349, 0.12602415680885315, 0.01939987577497959, -0.25576990842819214, -0.2817670404911041], [0.41616255044937134, -0.28448015451431274, 0.1077793538570404, 0.10621502995491028, 0.5707752108573914, -0.08483648300170898, 0.12602640688419342, 0.019398817792534828, -0.2557668387889862, -0.2817683815956116], [0.41616249084472656, -0.2844812572002411, 0.10777358710765839, 0.10621480643749237, 0.5707753300666809, -0.08483613282442093, 0.12602950632572174, 0.01940091885626316, -0.255767285823822, -0.281767338514328], [0.41616296768188477, -0.28448182344436646, 0.10777395218610764, 0.10621504485607147, 0.5707752108573914, -0.08483916521072388, 0.1260293871164322, 0.0194020364433527, -0.25576546788215637, -0.2817683815956116], [0.4161611795425415, -0.2844790816307068, 0.10778019577264786, 0.10621862858533859, 0.570774495601654, -0.08483967185020447, 0.12602277100086212, 0.019396211951971054, -0.25576555728912354, -0.2817738652229309], [0.4161631166934967, -0.2844782769680023, 0.107778400182724, 0.1062164455652237, 0.5707734227180481, -0.08483315259218216, 0.12602262198925018, 0.019396644085645676, -0.25576895475387573, -0.28176820278167725], [0.41616398096084595, -0.2844809591770172, 0.10777293890714645, 0.10621330887079239, 0.5707745552062988, -0.08483365178108215, 0.12602993845939636, 0.01940232701599598, -0.25576794147491455, -0.28176385164260864], [0.4161616861820221, -0.2844802439212799, 0.10777746140956879, 0.10621635615825653, 0.5707749724388123, -0.08483988046646118, 0.1260274052619934, 0.019398817792534828, -0.25576457381248474, -0.2817714810371399], [0.41616255044937134, -0.28447994589805603, 0.10777556896209717, 0.10621672868728638, 0.570774257183075, -0.08483652770519257, 0.1260254681110382, 0.019398855045437813, -0.255767285823822, -0.28176945447921753], [0.41616231203079224, -0.28447726368904114, 0.1077820360660553, 0.10621731728315353, 0.5707732439041138, -0.08483617007732391, 0.12602108716964722, 0.01939460262656212, -0.2557666003704071, -0.2817716598510742], [0.41616347432136536, -0.28447866439819336, 0.10777517408132553, 0.10621492564678192, 0.5707734227180481, -0.08483133465051651, 0.12602578103542328, 0.01939842291176319, -0.25576937198638916, -0.28176555037498474], [0.41616445779800415, -0.28448328375816345, 0.10776867717504501, 0.1062120571732521, 0.5707753300666809, -0.08483599126338959, 0.12603457272052765, 0.01940641552209854, -0.25576651096343994, -0.28176239132881165], [0.41616156697273254, -0.28448477387428284, 0.10777119547128677, 0.10621632635593414, 0.5707769989967346, -0.08484449982643127, 0.12603320181369781, 0.019405566155910492, -0.2557632327079773, -0.28177061676979065], [0.4161621630191803, -0.28448569774627686, 0.10777099430561066, 0.1062173843383789, 0.5707772970199585, -0.0848434641957283, 0.1260307878255844, 0.019406214356422424, -0.25576552748680115, -0.2817697525024414], [0.41616228222846985, -0.28448668122291565, 0.107772096991539, 0.10621669888496399, 0.5707781910896301, -0.08484350144863129, 0.1260315477848053, 0.01940753310918808, -0.2557658553123474, -0.28176847100257874], [0.41616085171699524, -0.2844851315021515, 0.1077769547700882, 0.10621802508831024, 0.5707782506942749, -0.08484435081481934, 0.12602859735488892, 0.01940334588289261, -0.25576531887054443, -0.2817722260951996], [0.41616156697273254, -0.2844833731651306, 0.10777713358402252, 0.10621710866689682, 0.570777177810669, -0.08484037220478058, 0.1260269582271576, 0.01940140314400196, -0.25576716661453247, -0.2817704677581787], [0.4161619544029236, -0.2844814956188202, 0.10777853429317474, 0.10621628165245056, 0.5707759857177734, -0.08483868837356567, 0.12602607905864716, 0.01939954049885273, -0.25576692819595337, -0.2817700505256653], [0.41616252064704895, -0.28448164463043213, 0.10777509957551956, 0.10621529817581177, 0.5707756280899048, -0.08483688533306122, 0.12602822482585907, 0.01940097101032734, -0.25576743483543396, -0.2817678153514862], [0.4161619246006012, -0.28447970747947693, 0.10777919739484787, 0.10621652007102966, 0.5707747340202332, -0.08483860641717911, 0.12602508068084717, 0.019397635012865067, -0.25576573610305786, -0.28177130222320557], [0.41616207361221313, -0.2844775915145874, 0.10777997970581055, 0.10621719807386398, 0.5707734227180481, -0.08483494818210602, 0.12602202594280243, 0.019394908100366592, -0.25576767325401306, -0.2817709743976593], [0.41616392135620117, -0.2844787538051605, 0.10777553915977478, 0.1062142625451088, 0.5707732439041138, -0.08483213186264038, 0.12602609395980835, 0.019398802891373634, -0.2557685375213623, -0.2817654013633728], [0.4161621332168579, -0.2844773828983307, 0.10778000205755234, 0.10621625185012817, 0.5707732439041138, -0.08483614772558212, 0.12602394819259644, 0.019395429641008377, -0.25576579570770264, -0.2817709445953369], [0.41616326570510864, -0.28447815775871277, 0.10777536779642105, 0.10621548444032669, 0.5707730054855347, -0.08483278006315231, 0.1260252296924591, 0.019397560507059097, -0.25576820969581604, -0.2817672789096832], [0.41616296768188477, -0.28447720408439636, 0.10777944326400757, 0.10621588677167892, 0.5707727670669556, -0.08483508229255676, 0.12602350115776062, 0.019395869225263596, -0.2557663023471832, -0.28176963329315186], [0.4161624610424042, -0.2844761610031128, 0.1077796071767807, 0.10621684044599533, 0.5707724094390869, -0.08483289182186127, 0.12602178752422333, 0.019393961876630783, -0.2557677924633026, -0.28177008032798767], [0.4161638021469116, -0.28447622060775757, 0.1077783852815628, 0.10621495544910431, 0.5707719326019287, -0.0848311260342598, 0.126023069024086, 0.01939527317881584, -0.25576817989349365, -0.2817670702934265], [0.4161628782749176, -0.2844756245613098, 0.1077796220779419, 0.10621576756238937, 0.5707719922065735, -0.08483247458934784, 0.12602268159389496, 0.019394006580114365, -0.25576716661453247, -0.2817692160606384], [0.4161631464958191, -0.28447484970092773, 0.10777987539768219, 0.10621591657400131, 0.570771336555481, -0.08483127504587173, 0.1260213702917099, 0.019392933696508408, -0.2557677626609802, -0.28176915645599365], [0.41616445779800415, -0.28447750210762024, 0.10777363181114197, 0.10621370375156403, 0.570772111415863, -0.08483031392097473, 0.12602674961090088, 0.01939857192337513, -0.25576847791671753, -0.2817641794681549], [0.416162371635437, -0.28447628021240234, 0.10778043419122696, 0.10621656477451324, 0.5707724094390869, -0.08483607321977615, 0.12602294981479645, 0.01939437910914421, -0.2557651102542877, -0.28177160024642944], [0.4161621332168579, -0.2844730019569397, 0.10778389126062393, 0.10621839016675949, 0.570770800113678, -0.08483143895864487, 0.12601648271083832, 0.019388912245631218, -0.2557681202888489, -0.28177276253700256], [0.4161646366119385, -0.2844730019569397, 0.10778038948774338, 0.10621451586484909, 0.5707699060440063, -0.08482570946216583, 0.12601950764656067, 0.01939171366393566, -0.255770206451416, -0.2817653715610504], [0.41616350412368774, -0.28447291254997253, 0.10778097808361053, 0.10621451586484909, 0.570770263671875, -0.08482858538627625, 0.12602147459983826, 0.0193913783878088, -0.25576770305633545, -0.28176772594451904], [0.4161641299724579, -0.28447502851486206, 0.10777520388364792, 0.10621389746665955, 0.5707707405090332, -0.08482880890369415, 0.12602493166923523, 0.019395139068365097, -0.2557681202888489, -0.28176552057266235], [0.41616353392601013, -0.2844754457473755, 0.10777773708105087, 0.10621532797813416, 0.5707711577415466, -0.08483301103115082, 0.12602367997169495, 0.01939493790268898, -0.25576603412628174, -0.281768798828125], [0.41616296768188477, -0.28447502851486206, 0.10777903348207474, 0.10621694475412369, 0.5707712173461914, -0.08483219891786575, 0.126021146774292, 0.019393417984247208, -0.2557674050331116, -0.28176993131637573], [0.4161643087863922, -0.28447678685188293, 0.10777588188648224, 0.10621469467878342, 0.5707717537879944, -0.08483042567968369, 0.12602442502975464, 0.0193970687687397, -0.25576847791671753, -0.2817654311656952], [0.41616395115852356, -0.28448033332824707, 0.10777171701192856, 0.10621374845504761, 0.5707737803459167, -0.08483421802520752, 0.1260303556919098, 0.019402170553803444, -0.2557668387889862, -0.2817646265029907], [0.4161624014377594, -0.284481406211853, 0.10777398198843002, 0.10621607303619385, 0.5707749128341675, -0.08483981341123581, 0.12602922320365906, 0.01940152235329151, -0.2557647228240967, -0.28176966309547424], [0.41616299748420715, -0.2844836711883545, 0.10777051746845245, 0.1062159314751625, 0.5707758665084839, -0.08483915030956268, 0.12603068351745605, 0.01940491795539856, -0.2557665705680847, -0.2817671597003937], [0.4161611795425415, -0.2844805121421814, 0.1077812984585762, 0.10621868073940277, 0.5707754492759705, -0.08484218269586563, 0.12602342665195465, 0.019397731870412827, -0.25576460361480713, -0.2817743122577667], [0.4161616861820221, -0.2844774127006531, 0.10778218507766724, 0.10621841996908188, 0.570773720741272, -0.08483421802520752, 0.12601955235004425, 0.01939353719353676, -0.25576895475387573, -0.281771719455719], [0.41616353392601013, -0.28447583317756653, 0.10778168588876724, 0.10621479153633118, 0.5707724094390869, -0.08483026176691055, 0.12602132558822632, 0.019393663853406906, -0.2557690739631653, -0.2817673087120056], [0.4161625802516937, -0.28447434306144714, 0.10778150707483292, 0.10621525347232819, 0.5707716941833496, -0.08483071625232697, 0.1260216236114502, 0.01939174346625805, -0.2557677924633026, -0.28176936507225037], [0.4161631464958191, -0.28447234630584717, 0.10778236389160156, 0.1062157079577446, 0.5707700252532959, -0.08482935279607773, 0.1260189563035965, 0.01938938908278942, -0.25576791167259216, -0.28176993131637573], [0.4161640405654907, -0.28447213768959045, 0.10777997970581055, 0.10621494054794312, 0.5707694292068481, -0.08482688665390015, 0.12601971626281738, 0.019390715286135674, -0.25576892495155334, -0.28176721930503845], [0.4161641001701355, -0.2844727337360382, 0.10777948796749115, 0.10621464997529984, 0.5707696676254272, -0.0848279744386673, 0.1260211318731308, 0.019391803070902824, -0.25576797127723694, -0.2817670702934265], [0.41616371273994446, -0.2844732403755188, 0.10777901858091354, 0.10621526837348938, 0.5707699656486511, -0.08482901006937027, 0.12602141499519348, 0.019392138347029686, -0.25576767325401306, -0.28176793456077576], [0.4161641299724579, -0.284474641084671, 0.10777692496776581, 0.1062147468328476, 0.5707705616950989, -0.0848294124007225, 0.12602315843105316, 0.019394468516111374, -0.2557678818702698, -0.28176647424697876], [0.4161636233329773, -0.2844756245613098, 0.10777734220027924, 0.10621528327465057, 0.5707712769508362, -0.08483176678419113, 0.12602373957633972, 0.01939525082707405, -0.25576698780059814, -0.2817677855491638], [0.41616296768188477, -0.2844749391078949, 0.10777994990348816, 0.10621660947799683, 0.5707712769508362, -0.08483240008354187, 0.12602123618125916, 0.019393105059862137, -0.2557670474052429, -0.2817700207233429], [0.41616228222846985, -0.28447043895721436, 0.10778782516717911, 0.10621831566095352, 0.5707694888114929, -0.08482997864484787, 0.12601357698440552, 0.019385457038879395, -0.2557677924633026, -0.2817736268043518], [0.4161643981933594, -0.2844693660736084, 0.1077834963798523, 0.10621510446071625, 0.5707681775093079, -0.08482193946838379, 0.12601545453071594, 0.019386596977710724, -0.25577136874198914, -0.281766414642334], [0.416166216135025, -0.28447458148002625, 0.10777241736650467, 0.10621028393507004, 0.5707699060440063, -0.08482372760772705, 0.1260279268026352, 0.019397292286157608, -0.2557695209980011, -0.2817591726779938], [0.41616255044937134, -0.2844749093055725, 0.10777826607227325, 0.1062154695391655, 0.5707711577415466, -0.08483528345823288, 0.1260250210762024, 0.019393984228372574, -0.2557637691497803, -0.28177115321159363], [0.41616353392601013, -0.28447583317756653, 0.1077752336859703, 0.10621673613786697, 0.5707710385322571, -0.08483182638883591, 0.1260225921869278, 0.019395258277654648, -0.2557678520679474, -0.28176864981651306], [0.4161641597747803, -0.28447675704956055, 0.10777738690376282, 0.1062154695391655, 0.5707717537879944, -0.08483254909515381, 0.12602341175079346, 0.019396979361772537, -0.2557673156261444, -0.28176695108413696], [0.4161624312400818, -0.28447648882865906, 0.10777951776981354, 0.10621681064367294, 0.5707725286483765, -0.08483346551656723, 0.12602268159389496, 0.01939474418759346, -0.25576719641685486, -0.28176990151405334], [0.4161631166934967, -0.2844753563404083, 0.10778065025806427, 0.10621604323387146, 0.5707717537879944, -0.08483169227838516, 0.126021146774292, 0.019393112510442734, -0.25576791167259216, -0.2817692160606384], [0.41616353392601013, -0.2844753563404083, 0.10777868330478668, 0.10621507465839386, 0.5707715749740601, -0.08483031392097473, 0.12602265179157257, 0.01939418539404869, -0.2557683289051056, -0.2817673981189728], [0.4161635935306549, -0.284476101398468, 0.10777728259563446, 0.10621467977762222, 0.5707718133926392, -0.08483152836561203, 0.12602441012859344, 0.019395601004362106, -0.25576743483543396, -0.2817671597003937], [0.4161636531352997, -0.2844780385494232, 0.10777433216571808, 0.10621466487646103, 0.5707725882530212, -0.08483312278985977, 0.12602686882019043, 0.01939849741756916, -0.2557670474052429, -0.2817665636539459], [0.41616228222846985, -0.2844764292240143, 0.10778038948774338, 0.10621721297502518, 0.5707724094390869, -0.08483601361513138, 0.12602205574512482, 0.01939428225159645, -0.2557656764984131, -0.2817718982696533], [0.4161645472049713, -0.2844806909561157, 0.10776947438716888, 0.10621385276317596, 0.5707736015319824, -0.08483141660690308, 0.12602965533733368, 0.019402913749217987, -0.25576937198638916, -0.2817624509334564], [0.4161619544029236, -0.284479022026062, 0.10778050869703293, 0.10621673613786697, 0.5707741379737854, -0.08484037965536118, 0.12602508068084717, 0.01939733698964119, -0.2557636499404907, -0.2817724943161011], [0.41616174578666687, -0.28447726368904114, 0.10777918249368668, 0.10621831566095352, 0.5707732439041138, -0.08483421802520752, 0.12602123618125916, 0.019394319504499435, -0.25576838850975037, -0.28177154064178467], [0.4161638617515564, -0.2844759225845337, 0.10778111219406128, 0.1062152236700058, 0.5707719922065735, -0.08483143150806427, 0.1260211169719696, 0.019394222646951675, -0.2557682991027832, -0.28176775574684143], [0.4161625802516937, -0.28447508811950684, 0.1077803447842598, 0.10621581226587296, 0.5707719922065735, -0.08483100682497025, 0.12602205574512482, 0.019393008202314377, -0.2557681202888489, -0.2817690074443817], [0.41616305708885193, -0.2844727635383606, 0.10778334736824036, 0.10621597617864609, 0.5707704424858093, -0.08483029901981354, 0.126018688082695, 0.019389552995562553, -0.2557675838470459, -0.2817704677581787], [0.4161629378795624, -0.28446945548057556, 0.1077859103679657, 0.10621684044599533, 0.5707687139511108, -0.0848267525434494, 0.12601453065872192, 0.019385337829589844, -0.25576889514923096, -0.281771183013916], [0.4161643385887146, -0.28446781635284424, 0.10778512805700302, 0.10621505975723267, 0.5707671642303467, -0.08482221513986588, 0.1260143667459488, 0.019384652376174927, -0.25577014684677124, -0.28176769614219666], [0.41616517305374146, -0.2844696044921875, 0.10777931660413742, 0.10621284693479538, 0.5707675218582153, -0.0848216563463211, 0.12602008879184723, 0.019389210268855095, -0.2557697892189026, -0.28176382184028625], [0.416163831949234, -0.28446921706199646, 0.10778239369392395, 0.10621492564678192, 0.5707677006721497, -0.08482666313648224, 0.1260184794664383, 0.01938720792531967, -0.2557668685913086, -0.28176918625831604], [0.41616469621658325, -0.2844708561897278, 0.10777760297060013, 0.1062147319316864, 0.5707679390907288, -0.08482467383146286, 0.12601995468139648, 0.019390402361750603, -0.25576910376548767, -0.28176599740982056], [0.41616472601890564, -0.2844725251197815, 0.10777822136878967, 0.10621438175439835, 0.5707689523696899, -0.08482775837182999, 0.1260216385126114, 0.01939263753592968, -0.25576749444007874, -0.28176620602607727], [0.41616278886795044, -0.2844710052013397, 0.10778328776359558, 0.10621727257966995, 0.570769190788269, -0.08482950180768967, 0.12601730227470398, 0.01938810758292675, -0.2557671070098877, -0.2817715108394623], [0.41616562008857727, -0.28447484970092773, 0.10777337849140167, 0.10621311515569687, 0.5707699656486511, -0.08482503145933151, 0.12602461874485016, 0.01939631626009941, -0.2557702660560608, -0.2817617952823639], [0.4161636233329773, -0.2844763398170471, 0.10777702927589417, 0.10621444135904312, 0.5707717537879944, -0.08483371883630753, 0.12602604925632477, 0.019396718591451645, -0.25576528906822205, -0.28176772594451904], [0.41616204380989075, -0.28447481989860535, 0.10778044909238815, 0.10621803253889084, 0.5707715153694153, -0.08483395725488663, 0.12602031230926514, 0.01939200423657894, -0.2557665705680847, -0.28177252411842346], [0.41616350412368774, -0.2844723165035248, 0.10778383165597916, 0.10621697455644608, 0.5707699060440063, -0.08482909947633743, 0.1260162889957428, 0.01938922517001629, -0.255768746137619, -0.28177008032798767], [0.4161641597747803, -0.2844727635383606, 0.10778015106916428, 0.10621459037065506, 0.5707699656486511, -0.08482573926448822, 0.12602026760578156, 0.019391564652323723, -0.25576987862586975, -0.28176575899124146], [0.4161638021469116, -0.28447312116622925, 0.10778003185987473, 0.10621417313814163, 0.5707702040672302, -0.08482857048511505, 0.1260220855474472, 0.01939184032380581, -0.2557675838470459, -0.28176724910736084], [0.41616305708885193, -0.284471720457077, 0.10778181999921799, 0.10621613264083862, 0.5707695484161377, -0.08482935279607773, 0.1260189563035965, 0.019389135763049126, -0.2557673752307892, -0.28177037835121155], [0.4161633551120758, -0.2844686210155487, 0.107786163687706, 0.10621700435876846, 0.5707678198814392, -0.08482642471790314, 0.12601353228092194, 0.019384659826755524, -0.2557685375213623, -0.2817712724208832], [0.4161643981933594, -0.28446725010871887, 0.10778506845235825, 0.10621538758277893, 0.570766806602478, -0.08482132107019424, 0.12601375579833984, 0.01938430219888687, -0.2557705342769623, -0.28176748752593994], [0.41616523265838623, -0.2844685912132263, 0.10778093338012695, 0.10621301084756851, 0.5707671046257019, -0.08482106775045395, 0.1260187327861786, 0.019387729465961456, -0.2557697892189026, -0.28176429867744446], [0.41616466641426086, -0.28447064757347107, 0.10777805745601654, 0.10621339827775955, 0.5707680583000183, -0.08482515066862106, 0.12602189183235168, 0.01939048431813717, -0.2557677626609802, -0.2817656993865967], [0.4161653220653534, -0.2844756245613098, 0.10777054727077484, 0.10621287673711777, 0.5707700252532959, -0.08482836931943893, 0.12602786719799042, 0.019398251548409462, -0.2557675838470459, -0.28176289796829224], [0.4161635637283325, -0.2844778895378113, 0.10777416080236435, 0.10621563345193863, 0.5707720518112183, -0.08483613282442093, 0.12602701783180237, 0.019398989155888557, -0.2557646632194519, -0.2817685306072235], [0.41616326570510864, -0.284480482339859, 0.10777208209037781, 0.10621652007102966, 0.570773720741272, -0.08483613282442093, 0.1260276883840561, 0.019401485100388527, -0.2557668387889862, -0.28176748752593994], [0.41616290807724, -0.2844810485839844, 0.10777606070041656, 0.10621650516986847, 0.5707747340202332, -0.08483850955963135, 0.12602674961090088, 0.01940089650452137, -0.2557658553123474, -0.2817690372467041], [0.41616159677505493, -0.2844792306423187, 0.10777974128723145, 0.10621793568134308, 0.5707745552062988, -0.08483760803937912, 0.12602335214614868, 0.019396763294935226, -0.25576677918434143, -0.28177177906036377], [0.4161628186702728, -0.28447771072387695, 0.10778015106916428, 0.10621626675128937, 0.5707734227180481, -0.08483364433050156, 0.1260223388671875, 0.019395392388105392, -0.25576820969581604, -0.28176918625831604], [0.41616252064704895, -0.2844754457473755, 0.10778211057186127, 0.10621611773967743, 0.5707724094390869, -0.08483241498470306, 0.12602093815803528, 0.01939265988767147, -0.2557677924633026, -0.28177011013031006], [0.41616368293762207, -0.28447601199150085, 0.10777735710144043, 0.10621442645788193, 0.5707718729972839, -0.0848298892378807, 0.12602387368679047, 0.01939510926604271, -0.255768746137619, -0.2817663550376892], [0.4161635637283325, -0.2844769060611725, 0.10777657479047775, 0.10621439665555954, 0.5707722306251526, -0.0848328024148941, 0.12602561712265015, 0.01939673349261284, -0.25576677918434143, -0.28176718950271606], [0.4161628782749176, -0.28447726368904114, 0.10777673870325089, 0.10621599107980728, 0.5707724690437317, -0.08483432978391647, 0.12602466344833374, 0.019396457821130753, -0.2557665705680847, -0.28176915645599365], [0.4161631464958191, -0.28447699546813965, 0.10777811706066132, 0.10621629655361176, 0.5707723498344421, -0.08483383804559708, 0.1260230839252472, 0.019395839422941208, -0.2557671368122101, -0.28176915645599365], [0.41616326570510864, -0.28447747230529785, 0.10777716338634491, 0.1062156930565834, 0.5707727074623108, -0.08483287692070007, 0.12602421641349792, 0.0193968303501606, -0.2557677626609802, -0.28176769614219666], [0.41616353392601013, -0.2844792306423187, 0.10777467489242554, 0.10621462017297745, 0.5707734823226929, -0.08483397215604782, 0.1260274052619934, 0.01939958520233631, -0.25576722621917725, -0.28176629543304443], [0.4161619246006012, -0.2844773232936859, 0.10778055340051651, 0.10621721297502518, 0.570773184299469, -0.08483695983886719, 0.1260228157043457, 0.01939484104514122, -0.2557655870914459, -0.281772255897522], [0.4161628484725952, -0.2844759225845337, 0.10777981579303741, 0.10621681064367294, 0.5707721710205078, -0.08483196049928665, 0.12602078914642334, 0.01939362660050392, -0.2557685375213623, -0.2817695736885071], [0.41616329550743103, -0.28447428345680237, 0.1077822744846344, 0.10621575266122818, 0.5707712769508362, -0.08483065664768219, 0.1260199397802353, 0.01939195953309536, -0.2557680904865265, -0.2817689776420593], [0.41616326570510864, -0.28447380661964417, 0.10778031498193741, 0.10621534287929535, 0.5707709193229675, -0.08482885360717773, 0.12602102756500244, 0.0193918626755476, -0.25576862692832947, -0.2817680537700653], [0.4161628782749176, -0.2844705283641815, 0.10778594017028809, 0.10621647536754608, 0.5707693099975586, -0.08482911437749863, 0.1260160505771637, 0.019386500120162964, -0.25576743483543396, -0.281771719455719], [0.41616350412368774, -0.2844678461551666, 0.10778582096099854, 0.10621635615825653, 0.5707674622535706, -0.08482350409030914, 0.12601338326931, 0.019383825361728668, -0.2557700276374817, -0.2817697823047638], [0.4161655902862549, -0.28446927666664124, 0.10778006166219711, 0.10621277987957001, 0.570767343044281, -0.08482081443071365, 0.1260189563035965, 0.019388733431696892, -0.25577038526535034, -0.28176337480545044], [0.41616424918174744, -0.2844705581665039, 0.1077796071767807, 0.10621380805969238, 0.5707682967185974, -0.08482608199119568, 0.12602125108242035, 0.019389865919947624, -0.2557673454284668, -0.281766802072525], [0.41616353392601013, -0.2844696044921875, 0.1077822595834732, 0.10621626675128937, 0.570767879486084, -0.08482740074396133, 0.12601715326309204, 0.019387073814868927, -0.2557673454284668, -0.28177037835121155], [0.4161648750305176, -0.28447046875953674, 0.10777954757213593, 0.1062149852514267, 0.5707678198814392, -0.0848243236541748, 0.12601831555366516, 0.01938965730369091, -0.2557694613933563, -0.2817660868167877], [0.4161650240421295, -0.2844735383987427, 0.1077759861946106, 0.10621345043182373, 0.5707695484161377, -0.08482663333415985, 0.12602387368679047, 0.01939457282423973, -0.2557682991027832, -0.2817640006542206], [0.41616520285606384, -0.28448063135147095, 0.10776600241661072, 0.10621193796396255, 0.5707729458808899, -0.08483198285102844, 0.12603414058685303, 0.019405007362365723, -0.25576701760292053, -0.2817608118057251], [0.4161635935306549, -0.2844865322113037, 0.107764333486557, 0.10621403157711029, 0.5707765817642212, -0.08484327793121338, 0.1260383129119873, 0.019410988315939903, -0.25576311349868774, -0.2817654311656952], [0.41616201400756836, -0.28449052572250366, 0.10776442289352417, 0.10621722787618637, 0.5707795023918152, -0.0848490297794342, 0.12603794038295746, 0.019413787871599197, -0.2557632029056549, -0.28176888823509216], [0.41616126894950867, -0.284491628408432, 0.10776931047439575, 0.10621856898069382, 0.5707810521125793, -0.08485117554664612, 0.12603501975536346, 0.019412893801927567, -0.2557637095451355, -0.2817710041999817], [0.4161607027053833, -0.28449156880378723, 0.10777156800031662, 0.10621843487024307, 0.5707818269729614, -0.08484960347414017, 0.12603400647640228, 0.019411517307162285, -0.25576531887054443, -0.28177082538604736], [0.4161607027053833, -0.28449031710624695, 0.10777389258146286, 0.10621744394302368, 0.5707815289497375, -0.08484838157892227, 0.12603317201137543, 0.019409386441111565, -0.25576546788215637, -0.28177088499069214], [0.4161616265773773, -0.28449198603630066, 0.10776790231466293, 0.1062152087688446, 0.5707818865776062, -0.08484674245119095, 0.126038059592247, 0.01941331848502159, -0.25576621294021606, -0.281766802072525], [0.4161592721939087, -0.2844870686531067, 0.10777987539768219, 0.10621917247772217, 0.5707802772521973, -0.08485125005245209, 0.12602882087230682, 0.019403517246246338, -0.25576263666152954, -0.2817770838737488], [0.41616126894950867, -0.2844853103160858, 0.10777486860752106, 0.10621781647205353, 0.5707783102989197, -0.0848408192396164, 0.12602762877941132, 0.019403353333473206, -0.25576862692832947, -0.28177008032798767], [0.4161624014377594, -0.28448405861854553, 0.1077771931886673, 0.1062152236700058, 0.5707773566246033, -0.08484075963497162, 0.12602883577346802, 0.01940317451953888, -0.2557663917541504, -0.2817685008049011], [0.41616055369377136, -0.2844814658164978, 0.10777916759252548, 0.10621754825115204, 0.5707764625549316, -0.084840327501297, 0.12602593004703522, 0.019398445263504982, -0.25576627254486084, -0.2817726731300354], [0.4161626696586609, -0.28447988629341125, 0.10777810215950012, 0.10621584206819534, 0.5707746148109436, -0.08483603596687317, 0.1260247528553009, 0.019397975876927376, -0.25576770305633545, -0.2817690968513489], [0.41616225242614746, -0.2844780683517456, 0.10777981579303741, 0.10621622204780579, 0.5707737803459167, -0.08483540266752243, 0.126023530960083, 0.019395995885133743, -0.2557671368122101, -0.28177013993263245], [0.4161628782749176, -0.2844774127006531, 0.10777847468852997, 0.10621567815542221, 0.5707730054855347, -0.08483321219682693, 0.12602367997169495, 0.01939575746655464, -0.2557678818702698, -0.2817686200141907], [0.41616275906562805, -0.28447583317756653, 0.10778069496154785, 0.10621603578329086, 0.5707722306251526, -0.08483314514160156, 0.1260218322277069, 0.01939362660050392, -0.25576719641685486, -0.28176993131637573], [0.41616344451904297, -0.2844761610031128, 0.10777757316827774, 0.10621516406536102, 0.5707719326019287, -0.0848308652639389, 0.12602338194847107, 0.01939515396952629, -0.25576838850975037, -0.2817672789096832], [0.4161643087863922, -0.2844792902469635, 0.10777230560779572, 0.10621332377195358, 0.5707731246948242, -0.08483266830444336, 0.12602919340133667, 0.01940091885626316, -0.2557674050331116, -0.2817641496658325], [0.4161618947982788, -0.28447821736335754, 0.10777878016233444, 0.10621707886457443, 0.5707734823226929, -0.08483856916427612, 0.12602472305297852, 0.019396524876356125, -0.25576460361480713, -0.28177228569984436], [0.41616296768188477, -0.28447815775871277, 0.1077764704823494, 0.10621678084135056, 0.5707730054855347, -0.08483380079269409, 0.12602350115776062, 0.0193970687687397, -0.25576820969581604, -0.2817687392234802], [0.41616326570510864, -0.2844776511192322, 0.10777918249368668, 0.10621573776006699, 0.5707730054855347, -0.08483413606882095, 0.12602351605892181, 0.019396569579839706, -0.25576716661453247, -0.28176847100257874], [0.4161626398563385, -0.2844775915145874, 0.10777788609266281, 0.1062159314751625, 0.570773184299469, -0.08483339846134186, 0.12602433562278748, 0.019396226853132248, -0.25576767325401306, -0.28176864981651306], [0.4161629378795624, -0.28447628021240234, 0.10778018087148666, 0.10621588677167892, 0.5707724094390869, -0.08483357727527618, 0.12602238357067108, 0.019394267350435257, -0.25576701760292053, -0.281769722700119], [0.41616398096084595, -0.28447890281677246, 0.10777268558740616, 0.10621406137943268, 0.5707730650901794, -0.08483163267374039, 0.12602780759334564, 0.019399913027882576, -0.2557685375213623, -0.28176453709602356], [0.41616296768188477, -0.28447970747947693, 0.10777582228183746, 0.1062152087688446, 0.5707738995552063, -0.08483758568763733, 0.12602771818637848, 0.01939971186220646, -0.2557651102542877, -0.2817687690258026], [0.41616198420524597, -0.2844790518283844, 0.10777707397937775, 0.10621747374534607, 0.5707738995552063, -0.08483710139989853, 0.126024529337883, 0.019397486001253128, -0.25576651096343994, -0.2817710340023041], [0.4161633849143982, -0.28447917103767395, 0.10777685046195984, 0.10621581226587296, 0.5707736015319824, -0.08483470976352692, 0.12602481245994568, 0.01939854957163334, -0.25576767325401306, -0.28176775574684143], [0.4161626696586609, -0.28447937965393066, 0.10777692496776581, 0.10621575266122818, 0.5707741379737854, -0.08483553677797318, 0.12602606415748596, 0.01939866878092289, -0.25576701760292053, -0.28176841139793396], [0.41616204380989075, -0.28447720408439636, 0.10778114199638367, 0.10621701925992966, 0.5707732439041138, -0.08483582735061646, 0.12602214515209198, 0.019394326955080032, -0.25576654076576233, -0.2817716896533966], [0.41616228222846985, -0.2844736576080322, 0.10778424888849258, 0.10621745884418488, 0.570771336555481, -0.08483143895864487, 0.12601739168167114, 0.019389664754271507, -0.2557683289051056, -0.28177180886268616], [0.4161628186702728, -0.28446900844573975, 0.10778895765542984, 0.10621701925992966, 0.5707688331604004, -0.08482642471790314, 0.12601256370544434, 0.019383788108825684, -0.2557693123817444, -0.2817717492580414], [0.41616255044937134, -0.28446164727211, 0.10779660195112228, 0.10621778666973114, 0.5707650780677795, -0.08482027053833008, 0.12600433826446533, 0.019373532384634018, -0.25577032566070557, -0.28177425265312195], [0.4161648154258728, -0.28445640206336975, 0.10779580473899841, 0.10621510446071625, 0.5707612037658691, -0.08480992913246155, 0.12600190937519073, 0.019369376823306084, -0.2557734251022339, -0.28176891803741455], [0.41616764664649963, -0.28445860743522644, 0.107784204185009, 0.10620978474617004, 0.5707606673240662, -0.08480630815029144, 0.1260121464729309, 0.019377578049898148, -0.2557733356952667, -0.28175950050354004], [0.4161668121814728, -0.28446322679519653, 0.10777793079614639, 0.10621020942926407, 0.5707626342773438, -0.08481547981500626, 0.1260199397802353, 0.019384577870368958, -0.2557682991027832, -0.28176164627075195], [0.4161665141582489, -0.2844702899456024, 0.10776947438716888, 0.10621199756860733, 0.5707658529281616, -0.08482296019792557, 0.12602604925632477, 0.019393976777791977, -0.2557671070098877, -0.2817617952823639], [0.41616392135620117, -0.28447118401527405, 0.10777916759252548, 0.10621725767850876, 0.5707677006721497, -0.08483197540044785, 0.1260194182395935, 0.019390886649489403, -0.255764365196228, -0.2817712426185608], [0.4161636531352997, -0.2844710052013397, 0.10778126120567322, 0.10621841996908188, 0.570768415927887, -0.08482720702886581, 0.1260155737400055, 0.019389016553759575, -0.2557690739631653, -0.28176984190940857], [0.416166752576828, -0.2844778001308441, 0.10776951909065247, 0.10621127486228943, 0.5707712769508362, -0.08482518047094345, 0.12602931261062622, 0.019401872530579567, -0.2557704448699951, -0.2817574739456177], [0.4161626696586609, -0.2844804525375366, 0.10777387768030167, 0.10621451586484909, 0.5707743167877197, -0.0848391130566597, 0.12603141367435455, 0.019401559606194496, -0.25576335191726685, -0.2817685008049011], [0.41616255044937134, -0.2844826281070709, 0.1077701523900032, 0.10621660947799683, 0.5707752108573914, -0.08483939617872238, 0.12603023648262024, 0.01940333843231201, -0.2557659447193146, -0.2817688286304474], [0.41616320610046387, -0.28448396921157837, 0.10777240246534348, 0.10621613264083862, 0.5707759857177734, -0.08484119176864624, 0.12602989375591278, 0.01940523087978363, -0.25576546788215637, -0.28176799416542053], [0.41616255044937134, -0.28448763489723206, 0.10776785761117935, 0.10621566325426102, 0.5707783699035645, -0.08484216779470444, 0.12603506445884705, 0.019409997388720512, -0.2557663023471832, -0.28176599740982056], [0.41616183519363403, -0.2844892740249634, 0.10777007788419724, 0.10621605813503265, 0.5707798004150391, -0.0848473608493805, 0.12603574991226196, 0.019410548731684685, -0.2557638883590698, -0.2817689776420593], [0.416160523891449, -0.28448837995529175, 0.10777290910482407, 0.1062183603644371, 0.5707799196243286, -0.0848480686545372, 0.12603212893009186, 0.019407570362091064, -0.25576460361480713, -0.2817724347114563], [0.41616177558898926, -0.28448811173439026, 0.10777267068624496, 0.10621697455644608, 0.57077956199646, -0.08484496176242828, 0.12603171169757843, 0.01940791867673397, -0.25576624274253845, -0.28176936507225037], [0.4161617159843445, -0.2844892144203186, 0.1077706515789032, 0.10621575266122818, 0.5707801580429077, -0.08484520763158798, 0.1260349005460739, 0.019410056993365288, -0.2557658553123474, -0.2817678451538086], [0.4161604344844818, -0.284487247467041, 0.1077757179737091, 0.10621771216392517, 0.5707796812057495, -0.08484755456447601, 0.1260310709476471, 0.0194055438041687, -0.2557642459869385, -0.2817729711532593], [0.4161602556705475, -0.28448227047920227, 0.10778167098760605, 0.10621938854455948, 0.570777177810669, -0.08484292030334473, 0.12602299451828003, 0.019397908821702003, -0.2557663023471832, -0.28177517652511597], [0.41616368293762207, -0.28448402881622314, 0.10777179896831512, 0.10621397197246552, 0.5707765817642212, -0.08483505249023438, 0.1260303407907486, 0.019404910504817963, -0.2557697594165802, -0.28176349401474], [0.41616153717041016, -0.28448301553726196, 0.10777738690376282, 0.10621552914381027, 0.5707768797874451, -0.08484240621328354, 0.1260298490524292, 0.01940193958580494, -0.2557641565799713, -0.281770795583725], [0.41616111993789673, -0.28448107838630676, 0.10777711868286133, 0.10621783137321472, 0.5707756876945496, -0.08483948558568954, 0.12602558732032776, 0.019398512318730354, -0.2557666301727295, -0.28177228569984436], [0.41616398096084595, -0.28448277711868286, 0.10777217149734497, 0.10621421784162521, 0.5707754492759705, -0.08483631163835526, 0.12602968513965607, 0.01940397173166275, -0.2557678818702698, -0.2817648649215698], [0.41616290807724, -0.28448671102523804, 0.10776779800653458, 0.10621403157711029, 0.5707777738571167, -0.08484151214361191, 0.1260363608598709, 0.01940952055156231, -0.255765438079834, -0.2817651629447937], [0.41616228222846985, -0.2844908535480499, 0.10776457190513611, 0.10621502995491028, 0.5707800388336182, -0.08484746515750885, 0.12603983283042908, 0.019414033740758896, -0.2557637691497803, -0.2817668318748474], [0.4161606431007385, -0.28449082374572754, 0.10777030140161514, 0.10621844977140427, 0.570780873298645, -0.08485210686922073, 0.12603503465652466, 0.01941126398742199, -0.25576266646385193, -0.28177279233932495], [0.41616079211235046, -0.2844899296760559, 0.10777243226766586, 0.10621890425682068, 0.5707807540893555, -0.08484850078821182, 0.1260317713022232, 0.019409341737627983, -0.2557656168937683, -0.2817716896533966], [0.4161616265773773, -0.2844902575016022, 0.10777179896831512, 0.10621646046638489, 0.5707809925079346, -0.08484624326229095, 0.12603402137756348, 0.01941060833632946, -0.25576627254486084, -0.281768262386322], [0.41616079211235046, -0.2844901382923126, 0.10777203738689423, 0.1062164157629013, 0.5707812309265137, -0.08484777808189392, 0.1260351687669754, 0.01940990798175335, -0.25576499104499817, -0.28176993131637573], [0.416159987449646, -0.28448641300201416, 0.10777802020311356, 0.10621853917837143, 0.57077956199646, -0.0848475769162178, 0.1260286569595337, 0.019403383135795593, -0.25576460361480713, -0.2817746698856354], [0.41616225242614746, -0.28448665142059326, 0.10777175426483154, 0.10621579736471176, 0.5707785487174988, -0.08484090864658356, 0.12603138387203217, 0.019406713545322418, -0.2557680308818817, -0.2817671597003937], [0.41616204380989075, -0.2844873070716858, 0.10777240246534348, 0.10621507465839386, 0.5707789659500122, -0.08484434336423874, 0.12603387236595154, 0.019407955929636955, -0.25576502084732056, -0.28176817297935486], [0.41616055369377136, -0.28448599576950073, 0.10777460038661957, 0.10621774196624756, 0.5707787275314331, -0.08484553545713425, 0.12603060901165009, 0.019404537975788116, -0.25576484203338623, -0.2817724645137787], [0.41616153717041016, -0.2844836115837097, 0.10777746140956879, 0.10621766746044159, 0.5707771182060242, -0.08484216034412384, 0.1260264813899994, 0.0194015521556139, -0.2557663321495056, -0.2817716598510742], [0.41616228222846985, -0.28448328375816345, 0.10777532309293747, 0.10621605813503265, 0.5707767009735107, -0.08483867347240448, 0.12602825462818146, 0.01940261758863926, -0.2557676434516907, -0.28176820278167725], [0.4161618649959564, -0.2844821810722351, 0.10777735710144043, 0.10621607303619385, 0.5707763433456421, -0.0848398432135582, 0.12602771818637848, 0.019400740042328835, -0.25576603412628174, -0.2817700207233429], [0.4161619544029236, -0.2844812870025635, 0.1077764704823494, 0.10621635615825653, 0.5707756280899048, -0.08483822643756866, 0.12602688372135162, 0.019399838522076607, -0.2557668685913086, -0.2817698121070862], [0.41616272926330566, -0.28448110818862915, 0.10777591168880463, 0.10621560364961624, 0.5707750916481018, -0.08483743667602539, 0.1260271817445755, 0.019400397315621376, -0.2557668089866638, -0.28176847100257874], [0.4161624014377594, -0.28448113799095154, 0.10777553915977478, 0.1062159314751625, 0.5707752108573914, -0.08483786135911942, 0.12602756917476654, 0.019400591030716896, -0.2557665705680847, -0.28176888823509216], [0.41616225242614746, -0.2844802141189575, 0.10777755826711655, 0.10621657967567444, 0.5707747936248779, -0.08483798056840897, 0.12602566182613373, 0.019398780539631844, -0.255766361951828, -0.281770259141922], [0.41616278886795044, -0.28448036313056946, 0.10777576267719269, 0.10621587187051773, 0.5707746148109436, -0.08483606576919556, 0.1260264664888382, 0.01939971186220646, -0.25576746463775635, -0.28176820278167725], [0.4161626994609833, -0.2844804525375366, 0.10777635127305984, 0.10621564835309982, 0.5707747340202332, -0.08483704924583435, 0.1260269433259964, 0.01939980871975422, -0.25576654076576233, -0.2817685902118683], [0.41616302728652954, -0.2844824194908142, 0.1077721118927002, 0.10621494054794312, 0.5707754492759705, -0.08483722060918808, 0.12603028118610382, 0.019403189420700073, -0.25576695799827576, -0.28176653385162354], [0.4161621332168579, -0.2844821512699127, 0.10777567327022552, 0.1062164306640625, 0.5707757472991943, -0.08484086394309998, 0.12602832913398743, 0.019401544705033302, -0.25576505064964294, -0.28177034854888916], [0.41616255044937134, -0.284483402967453, 0.10777238011360168, 0.10621616244316101, 0.5707761645317078, -0.08483894914388657, 0.1260296255350113, 0.01940370351076126, -0.25576698780059814, -0.281767874956131], [0.41616278886795044, -0.28448495268821716, 0.107772096991539, 0.10621529817581177, 0.5707770586013794, -0.08484117686748505, 0.12603183090686798, 0.01940598338842392, -0.25576573610305786, -0.2817673683166504], [0.41616103053092957, -0.2844836115837097, 0.1077764555811882, 0.10621781647205353, 0.5707771182060242, -0.08484330028295517, 0.12602820992469788, 0.019402073696255684, -0.25576499104499817, -0.28177234530448914], [0.41616174578666687, -0.284481406211853, 0.10777860879898071, 0.10621769726276398, 0.5707758665084839, -0.08483926206827164, 0.126024529337883, 0.019399011507630348, -0.2557670474052429, -0.28177136182785034], [0.4161640703678131, -0.28448542952537537, 0.10776805877685547, 0.1062130406498909, 0.5707768797874451, -0.08483622968196869, 0.1260342001914978, 0.019408179447054863, -0.2557685673236847, -0.2817619740962982], [0.41616183519363403, -0.2844873368740082, 0.10777056217193604, 0.10621492564678192, 0.5707786679267883, -0.08484597504138947, 0.12603610754013062, 0.01940879039466381, -0.25576311349868774, -0.2817688286304474], [0.4161612391471863, -0.2844885587692261, 0.10776882618665695, 0.10621731728315353, 0.5707793235778809, -0.08484677970409393, 0.12603449821472168, 0.019409222528338432, -0.2557646930217743, -0.28177037835121155], [0.4161628186702728, -0.28449177742004395, 0.1077655702829361, 0.10621538758277893, 0.5707805752754211, -0.08484716713428497, 0.1260381042957306, 0.019414860755205154, -0.25576522946357727, -0.2817659378051758], [0.4161613881587982, -0.28449559211730957, 0.10776353627443314, 0.10621588677167892, 0.5707833170890808, -0.08485236018896103, 0.1260426789522171, 0.019419075921177864, -0.25576356053352356, -0.2817672789096832], [0.4161594808101654, -0.284494549036026, 0.10777068138122559, 0.106219083070755, 0.570783793926239, -0.08485671132802963, 0.12603721022605896, 0.019414152950048447, -0.25576213002204895, -0.2817743122577667], [0.41616109013557434, -0.2844960689544678, 0.10776536911725998, 0.10621713846921921, 0.5707840919494629, -0.08485163748264313, 0.1260395348072052, 0.019417816773056984, -0.25576597452163696, -0.2817680537700653], [0.4161592721939087, -0.2844923138618469, 0.1077766939997673, 0.106219083070755, 0.5707833170890808, -0.08485522866249084, 0.12603315711021423, 0.019410138949751854, -0.25576263666152954, -0.28177544474601746], [0.4161599576473236, -0.28449001908302307, 0.10777396708726883, 0.10621852427721024, 0.5707817077636719, -0.0848471075296402, 0.12603144347667694, 0.019407829269766808, -0.25576722621917725, -0.28177180886268616], [0.41616085171699524, -0.28448572754859924, 0.10778030008077621, 0.10621721297502518, 0.5707793235778809, -0.08484530448913574, 0.1260274350643158, 0.01940261758863926, -0.2557656466960907, -0.2817726731300354], [0.4161596894264221, -0.2844793200492859, 0.10778551548719406, 0.10621929168701172, 0.5707761645317078, -0.08483966439962387, 0.12602004408836365, 0.01939334347844124, -0.2557673156261444, -0.28177595138549805], [0.416163831949234, -0.2844789922237396, 0.10777704417705536, 0.10621374845504761, 0.5707740187644958, -0.08483060449361801, 0.12602499127388, 0.0193977989256382, -0.25577038526535034, -0.2817647457122803], [0.41616272926330566, -0.2844788730144501, 0.10777738690376282, 0.1062140166759491, 0.5707740187644958, -0.08483553677797318, 0.12602759897708893, 0.019398236647248268, -0.25576603412628174, -0.28176799416542053], [0.4161614775657654, -0.28447604179382324, 0.1077813133597374, 0.1062176376581192, 0.570772647857666, -0.08483598381280899, 0.12602123618125916, 0.01939251832664013, -0.2557660639286041, -0.2817734479904175], [0.4161645770072937, -0.28447794914245605, 0.10777365416288376, 0.10621420294046402, 0.5707722902297974, -0.0848301500082016, 0.1260255128145218, 0.019398683682084084, -0.25576943159103394, -0.2817641794681549], [0.41616329550743103, -0.2844795882701874, 0.10777518898248672, 0.10621457546949387, 0.570773720741272, -0.08483605831861496, 0.12602831423282623, 0.01940029300749302, -0.2557657063007355, -0.2817671597003937], [0.41616132855415344, -0.2844773232936859, 0.10778066515922546, 0.10621827095746994, 0.5707733631134033, -0.08483748883008957, 0.1260220855474472, 0.019394252449274063, -0.25576573610305786, -0.28177353739738464], [0.41616374254226685, -0.2844773232936859, 0.10777731239795685, 0.1062157079577446, 0.5707724690437317, -0.08483143895864487, 0.1260228157043457, 0.019396331161260605, -0.2557690739631653, -0.28176698088645935], [0.4161626398563385, -0.2844754755496979, 0.10778222978115082, 0.1062161773443222, 0.5707722306251526, -0.0848333090543747, 0.12602123618125916, 0.01939314231276512, -0.255766898393631, -0.281770259141922], [0.4161628484725952, -0.2844744026660919, 0.10778062045574188, 0.10621608793735504, 0.5707713961601257, -0.08483000844717026, 0.12602059543132782, 0.019391847774386406, -0.2557685971260071, -0.28176915645599365], [0.41616302728652954, -0.2844710648059845, 0.10778571665287018, 0.10621634125709534, 0.5707696080207825, -0.08482912927865982, 0.1260162889957428, 0.019387252628803253, -0.255767822265625, -0.28177112340927124], [0.4161638021469116, -0.2844700217247009, 0.10778255015611649, 0.10621537268161774, 0.5707685351371765, -0.08482418954372406, 0.12601692974567413, 0.01938740164041519, -0.2557700574398041, -0.28176769614219666], [0.4161657691001892, -0.28447383642196655, 0.10777433216571808, 0.10621165484189987, 0.5707694888114929, -0.08482472598552704, 0.1260254979133606, 0.01939546689391136, -0.2557692229747772, -0.2817614674568176], [0.4161631464958191, -0.2844749689102173, 0.1077771931886673, 0.10621502995491028, 0.5707709193229675, -0.08483324199914932, 0.12602496147155762, 0.01939469203352928, -0.2557651102542877, -0.28176915645599365], [0.4161634147167206, -0.284475713968277, 0.10777632147073746, 0.10621649026870728, 0.5707710981369019, -0.08483229577541351, 0.12602278590202332, 0.01939501240849495, -0.25576722621917725, -0.28176891803741455], [0.41616353392601013, -0.2844752371311188, 0.10777981579303741, 0.1062164157629013, 0.5707712769508362, -0.08483217656612396, 0.12602096796035767, 0.01939406618475914, -0.2557673156261444, -0.2817690074443817], [0.4161640405654907, -0.2844780385494232, 0.10777398198843002, 0.10621447116136551, 0.570772647857666, -0.08483073115348816, 0.12602660059928894, 0.019398855045437813, -0.25576868653297424, -0.2817646265029907], [0.4161636531352997, -0.28448066115379333, 0.10777293890714645, 0.1062140166759491, 0.5707741379737854, -0.08483625948429108, 0.12603020668029785, 0.019401947036385536, -0.255765825510025, -0.2817660868167877], [0.4161616861820221, -0.2844798266887665, 0.10777696967124939, 0.10621750354766846, 0.570774495601654, -0.08483957499265671, 0.12602584064006805, 0.019398408010601997, -0.25576508045196533, -0.28177207708358765], [0.416162371635437, -0.2844776213169098, 0.10778043419122696, 0.1062178909778595, 0.5707732439041138, -0.0848357155919075, 0.12602096796035767, 0.019395027309656143, -0.2557673752307892, -0.2817714214324951], [0.41616344451904297, -0.28447777032852173, 0.10777793079614639, 0.10621537268161774, 0.5707731246948242, -0.08483174443244934, 0.12602370977401733, 0.01939692720770836, -0.25576892495155334, -0.2817666828632355], [0.41616320610046387, -0.2844787538051605, 0.10777651518583298, 0.10621441155672073, 0.5707736611366272, -0.08483391255140305, 0.1260269731283188, 0.01939835585653782, -0.2557671070098877, -0.2817669212818146], [0.4161628782749176, -0.2844797670841217, 0.10777440667152405, 0.10621508955955505, 0.5707740783691406, -0.08483605086803436, 0.12602807581424713, 0.019399652257561684, -0.2557663917541504, -0.28176799416542053], [0.41616159677505493, -0.28447607159614563, 0.10778319835662842, 0.1062183752655983, 0.570772647857666, -0.08483738452196121, 0.12601977586746216, 0.01939242146909237, -0.25576549768447876, -0.2817744016647339], [0.4161628186702728, -0.28447335958480835, 0.1077832281589508, 0.10621753334999084, 0.5707709193229675, -0.08482921868562698, 0.12601664662361145, 0.01938982866704464, -0.2557697594165802, -0.2817702889442444], [0.41616541147232056, -0.2844768166542053, 0.10777410119771957, 0.10621190816164017, 0.5707716345787048, -0.08482660353183746, 0.12602679431438446, 0.01939837820827961, -0.2557700276374817, -0.28176093101501465], [0.4161616265773773, -0.28447437286376953, 0.10778336226940155, 0.10621660947799683, 0.5707718133926392, -0.08483579009771347, 0.12602171301841736, 0.019391192123293877, -0.25576427578926086, -0.28177347779273987], [0.4161638915538788, -0.2844754755496979, 0.10777511447668076, 0.10621548444032669, 0.5707710385322571, -0.08482873439788818, 0.1260228157043457, 0.019394811242818832, -0.25576967000961304, -0.28176647424697876], [0.41616523265838623, -0.28447943925857544, 0.10777150839567184, 0.10621251165866852, 0.5707727074623108, -0.084832563996315, 0.12602989375591278, 0.019402364268898964, -0.25576701760292053, -0.28176257014274597], [0.4161616563796997, -0.2844799757003784, 0.10777591168880463, 0.10621712356805801, 0.5707743763923645, -0.08483964949846268, 0.12602750957012177, 0.019399257376790047, -0.2557643949985504, -0.28177154064178467], [0.41616344451904297, -0.28448179364204407, 0.10777214169502258, 0.1062159314751625, 0.5707747340202332, -0.0848366767168045, 0.12602825462818146, 0.01940239407122135, -0.25576743483543396, -0.28176695108413696], [0.41616278886795044, -0.2844827175140381, 0.10777431726455688, 0.10621584206819534, 0.5707758069038391, -0.08483976870775223, 0.12602925300598145, 0.019403278827667236, -0.25576573610305786, -0.28176823258399963], [0.4161616265773773, -0.2844822108745575, 0.10777630656957626, 0.10621733963489532, 0.570776104927063, -0.08484028279781342, 0.12602731585502625, 0.019400866702198982, -0.25576600432395935, -0.2817709147930145], [0.4161633849143982, -0.2844846248626709, 0.1077704206109047, 0.10621457546949387, 0.570776641368866, -0.08483821898698807, 0.12603197991847992, 0.019406072795391083, -0.25576746463775635, -0.2817651629447937], [0.4161619544029236, -0.28448545932769775, 0.10777284950017929, 0.10621582716703415, 0.5707777142524719, -0.0848437249660492, 0.12603244185447693, 0.01940596103668213, -0.2557644248008728, -0.28176936507225037], [0.4161612391471863, -0.28448486328125, 0.10777422040700912, 0.10621769726276398, 0.5707775950431824, -0.08484350889921188, 0.12602946162223816, 0.019403807818889618, -0.25576549768447876, -0.2817714512348175], [0.4161621034145355, -0.28448399901390076, 0.10777553915977478, 0.10621687024831772, 0.5707769989967346, -0.08484123647212982, 0.12602804601192474, 0.0194031223654747, -0.25576651096343994, -0.2817697525024414], [0.41616225242614746, -0.28448474407196045, 0.1077733039855957, 0.10621573776006699, 0.5707773566246033, -0.08484023064374924, 0.12603071331977844, 0.019404858350753784, -0.2557668387889862, -0.28176772594451904], [0.4161621034145355, -0.2844855785369873, 0.10777256637811661, 0.10621549934148788, 0.5707778334617615, -0.08484230190515518, 0.126032292842865, 0.019405849277973175, -0.25576555728912354, -0.28176841139793396], [0.41616111993789673, -0.2844839096069336, 0.10777627676725388, 0.10621756315231323, 0.5707772970199585, -0.08484353870153427, 0.1260283887386322, 0.019402282312512398, -0.25576508045196533, -0.28177228569984436], [0.41616183519363403, -0.2844821810722351, 0.10777735710144043, 0.1062173843383789, 0.5707761645317078, -0.08483967930078506, 0.1260257065296173, 0.01940031535923481, -0.25576701760292053, -0.2817707359790802], [0.4161629378795624, -0.2844831645488739, 0.1077738031744957, 0.10621500015258789, 0.5707762241363525, -0.08483745157718658, 0.12602950632572174, 0.019403405487537384, -0.2557676434516907, -0.28176644444465637], [0.4161624312400818, -0.28448486328125, 0.10777178406715393, 0.10621476173400879, 0.570777177810669, -0.0848408192396164, 0.12603288888931274, 0.019405700266361237, -0.2557656466960907, -0.2817672789096832], [0.4161621630191803, -0.2844867408275604, 0.10776954889297485, 0.10621557384729385, 0.5707780718803406, -0.08484358340501785, 0.12603428959846497, 0.01940797083079815, -0.25576508045196533, -0.28176820278167725], [0.41616150736808777, -0.28448647260665894, 0.10777299106121063, 0.1062173843383789, 0.5707783102989197, -0.08484586328268051, 0.1260313242673874, 0.019406333565711975, -0.2557644248008728, -0.281771183013916], [0.41616109013557434, -0.28448453545570374, 0.10777678340673447, 0.10621849447488785, 0.5707777142524719, -0.08484353125095367, 0.1260271519422531, 0.01940271444618702, -0.25576597452163696, -0.28177231550216675], [0.41616183519363403, -0.2844826877117157, 0.10777823626995087, 0.10621709376573563, 0.5707767009735107, -0.08483953028917313, 0.12602588534355164, 0.019400687888264656, -0.2557673752307892, -0.2817701995372772], [0.4161619544029236, -0.28448107838630676, 0.1077786237001419, 0.10621611773967743, 0.5707758665084839, -0.0848376676440239, 0.1260259747505188, 0.019399071112275124, -0.255767285823822, -0.28176966309547424], [0.4161616563796997, -0.2844778001308441, 0.10778200626373291, 0.1062169149518013, 0.5707741379737854, -0.08483640849590302, 0.12602220475673676, 0.019394349306821823, -0.2557668685913086, -0.28177204728126526], [0.41616296768188477, -0.28447651863098145, 0.1077793538570404, 0.10621561855077744, 0.570772647857666, -0.08483173698186874, 0.12602226436138153, 0.019394438713788986, -0.25576871633529663, -0.28176844120025635], [0.4161633253097534, -0.28447601199150085, 0.10777927190065384, 0.10621488094329834, 0.5707720518112183, -0.08483190089464188, 0.12602320313453674, 0.01939466968178749, -0.2557675838470459, -0.28176796436309814], [0.41616252064704895, -0.2844741940498352, 0.10778173059225082, 0.10621650516986847, 0.5707712769508362, -0.08483199030160904, 0.12602026760578156, 0.0193913783878088, -0.25576722621917725, -0.2817709147930145], [0.4161646068096161, -0.28447645902633667, 0.10777436196804047, 0.10621374845504761, 0.5707714557647705, -0.08482871949672699, 0.1260252594947815, 0.01939709112048149, -0.25576919317245483, -0.28176409006118774], [0.41616323590278625, -0.28447702527046204, 0.10777754336595535, 0.10621510446071625, 0.5707723498344421, -0.08483463525772095, 0.12602540850639343, 0.019396673887968063, -0.2557656466960907, -0.28176864981651306], [0.4161619544029236, -0.2844747304916382, 0.10778168588876724, 0.10621806234121323, 0.5707716345787048, -0.08483391255140305, 0.12601956725120544, 0.019391564652323723, -0.2557668089866638, -0.2817727029323578], [0.41616392135620117, -0.28447389602661133, 0.10778066515922546, 0.10621581226587296, 0.5707705616950989, -0.08482855558395386, 0.12601928412914276, 0.01939203403890133, -0.2557693421840668, -0.2817676365375519], [0.4161636531352997, -0.28447386622428894, 0.10778040438890457, 0.10621480643749237, 0.570770800113678, -0.08482886850833893, 0.12602147459983826, 0.019392510876059532, -0.2557682991027832, -0.28176724910736084], [0.4161638617515564, -0.2844754159450531, 0.10777644068002701, 0.10621414333581924, 0.5707712769508362, -0.08482972532510757, 0.12602469325065613, 0.019395146518945694, -0.25576794147491455, -0.2817661166191101], [0.4161625802516937, -0.28447312116622925, 0.10778284817934036, 0.10621678084135056, 0.5707705616950989, -0.0848328024148941, 0.12601928412914276, 0.019390253350138664, -0.25576603412628174, -0.28177204728126526], [0.4161624014377594, -0.28446826338768005, 0.10778877139091492, 0.10621869564056396, 0.5707681775093079, -0.08482717722654343, 0.12601102888584137, 0.019382702186703682, -0.25576889514923096, -0.28177374601364136], [0.4161648154258728, -0.28446635603904724, 0.1077866181731224, 0.10621494054794312, 0.5707663297653198, -0.08481910079717636, 0.12601213157176971, 0.019382910802960396, -0.2557717561721802, -0.28176650404930115], [0.41616493463516235, -0.2844665050506592, 0.10778401046991348, 0.1062130406498909, 0.570766270160675, -0.08481956273317337, 0.12601645290851593, 0.019384481012821198, -0.25576987862586975, -0.28176531195640564], [0.4161636233329773, -0.2844637632369995, 0.10778815299272537, 0.10621558874845505, 0.5707650184631348, -0.08482181280851364, 0.1260119080543518, 0.01937931962311268, -0.2557680904865265, -0.28177112340927124], [0.4161642789840698, -0.28445956110954285, 0.10779168456792831, 0.10621673613786697, 0.5707623958587646, -0.08481656014919281, 0.1260051727294922, 0.01937389001250267, -0.2557704448699951, -0.28177130222320557], [0.41616666316986084, -0.2844601273536682, 0.10778583586215973, 0.10621295124292374, 0.5707616806030273, -0.0848105326294899, 0.1260097473859787, 0.01937812753021717, -0.25577276945114136, -0.28176310658454895], [0.4161671996116638, -0.28446564078330994, 0.10777664929628372, 0.10621009767055511, 0.5707640647888184, -0.08481507748365402, 0.12602099776268005, 0.019387632608413696, -0.2557699978351593, -0.2817592918872833], [0.41616499423980713, -0.2844693660736084, 0.1077759712934494, 0.1062132939696312, 0.5707665085792542, -0.08482549339532852, 0.12602302432060242, 0.019390439614653587, -0.2557658851146698, -0.28176599740982056], [0.4161651134490967, -0.28447359800338745, 0.10777221620082855, 0.10621479153633118, 0.5707685947418213, -0.08482832461595535, 0.12602438032627106, 0.01939551904797554, -0.2557671070098877, -0.281765341758728], [0.4161636531352997, -0.28447404503822327, 0.10777928680181503, 0.10621710866689682, 0.5707700252532959, -0.08483274281024933, 0.1260206401348114, 0.019393470138311386, -0.2557658851146698, -0.2817699909210205], [0.41616350412368774, -0.28447476029396057, 0.10777866840362549, 0.10621681064367294, 0.5707709193229675, -0.08482977002859116, 0.12602072954177856, 0.01939362660050392, -0.25576871633529663, -0.2817680537700653], [0.41616466641426086, -0.2844776213169098, 0.10777463018894196, 0.10621355473995209, 0.5707722306251526, -0.08483031392097473, 0.1260267198085785, 0.019398735836148262, -0.2557682991027832, -0.28176379203796387], [0.4161626398563385, -0.2844782769680023, 0.10777657479047775, 0.10621552914381027, 0.5707733631134033, -0.08483604341745377, 0.12602673470973969, 0.019397806376218796, -0.25576555728912354, -0.2817692160606384], [0.41616225242614746, -0.2844763994216919, 0.10778016597032547, 0.10621759295463562, 0.5707724690437317, -0.08483531326055527, 0.12602132558822632, 0.019393812865018845, -0.2557665705680847, -0.2817719876766205], [0.41616520285606384, -0.284481406211853, 0.10776820778846741, 0.1062128096818924, 0.5707738399505615, -0.0848311111330986, 0.1260310709476471, 0.01940460503101349, -0.2557694911956787, -0.28176066279411316], [0.4161631166934967, -0.2844853401184082, 0.10776925086975098, 0.10621383786201477, 0.5707768201828003, -0.0848422423005104, 0.1260358691215515, 0.019408171996474266, -0.2557636499404907, -0.2817661762237549], [0.4161587059497833, -0.2844783663749695, 0.10778646916151047, 0.10622250288724899, 0.5707750916481018, -0.08484566956758499, 0.12601841986179352, 0.019391899928450584, -0.2557629644870758, -0.2817820906639099], [0.41616347432136536, -0.284475713968277, 0.10778146237134933, 0.10621757805347443, 0.5707721710205078, -0.08482854068279266, 0.1260167360305786, 0.019392473623156548, -0.2557721436023712, -0.2817680835723877], [0.41616401076316833, -0.2844752073287964, 0.10778205096721649, 0.10621342062950134, 0.5707719922065735, -0.08482887595891953, 0.12602238357067108, 0.019393932074308395, -0.2557688057422638, -0.2817654609680176], [0.4161631166934967, -0.28447750210762024, 0.10777425765991211, 0.10621338337659836, 0.5707728862762451, -0.08483095467090607, 0.12602835893630981, 0.01939743384718895, -0.255767822265625, -0.2817656099796295], [0.41616323590278625, -0.2844775319099426, 0.10777641087770462, 0.10621489584445953, 0.5707724690437317, -0.08483592420816422, 0.12602607905864716, 0.019397031515836716, -0.2557651400566101, -0.2817692756652832], [0.41616174578666687, -0.2844744324684143, 0.10778249800205231, 0.10621887445449829, 0.5707713961601257, -0.08483473211526871, 0.1260181963443756, 0.01939096860587597, -0.25576654076576233, -0.28177395462989807], [0.4161631464958191, -0.28447070717811584, 0.10778685659170151, 0.10621774196624756, 0.5707693099975586, -0.08482753485441208, 0.12601324915885925, 0.01938636600971222, -0.2557695508003235, -0.28177112340927124], [0.4161642789840698, -0.2844700515270233, 0.10778345167636871, 0.10621441155672073, 0.5707687139511108, -0.08482252806425095, 0.12601707875728607, 0.019387684762477875, -0.25577086210250854, -0.28176581859588623], [0.4161645174026489, -0.28447115421295166, 0.10777987539768219, 0.10621283203363419, 0.5707688927650452, -0.08482469618320465, 0.12602169811725616, 0.019390208646655083, -0.2557685971260071, -0.2817651927471161], [0.41616326570510864, -0.2844698131084442, 0.10778253525495529, 0.10621561855077744, 0.5707682967185974, -0.08482801914215088, 0.126018226146698, 0.019387178122997284, -0.2557668387889862, -0.2817705273628235], [0.41616398096084595, -0.28446826338768005, 0.10778355598449707, 0.10621634125709534, 0.5707671046257019, -0.08482466638088226, 0.12601454555988312, 0.01938539743423462, -0.25576895475387573, -0.2817695438861847], [0.4161645770072937, -0.28446727991104126, 0.10778464376926422, 0.10621535778045654, 0.5707665085792542, -0.08482219278812408, 0.12601426243782043, 0.019384853541851044, -0.25576964020729065, -0.2817676365375519], [0.41616472601890564, -0.2844679057598114, 0.10778230428695679, 0.10621423274278641, 0.570766806602478, -0.0848214253783226, 0.12601695954799652, 0.01938621699810028, -0.2557696998119354, -0.28176602721214294], [0.41616520285606384, -0.28447020053863525, 0.10777807235717773, 0.10621308535337448, 0.5707676410675049, -0.08482342958450317, 0.12602120637893677, 0.019390223547816277, -0.25576865673065186, -0.2817644774913788], [0.41616421937942505, -0.2844714820384979, 0.10777844488620758, 0.1062147319316864, 0.5707685351371765, -0.08482783287763596, 0.12602131068706512, 0.019391043111681938, -0.25576695799827576, -0.2817675769329071], [0.41616320610046387, -0.2844695746898651, 0.10778402537107468, 0.1062173992395401, 0.5707680583000183, -0.08482832461595535, 0.12601545453071594, 0.019386492669582367, -0.2557673156261444, -0.2817716598510742], [0.4161655306816101, -0.2844725549221039, 0.10777592658996582, 0.1062137633562088, 0.5707687735557556, -0.08482328802347183, 0.12602150440216064, 0.019393261522054672, -0.25577065348625183, -0.2817627191543579], [0.4161647856235504, -0.2844763994216919, 0.10777395218610764, 0.10621277987957001, 0.5707711577415466, -0.0848304033279419, 0.1260279268026352, 0.019398318603634834, -0.2557666003704071, -0.28176388144493103], [0.416163831949234, -0.2844817638397217, 0.10776716470718384, 0.10621386766433716, 0.5707740783691406, -0.084835946559906, 0.12603352963924408, 0.019404828548431396, -0.2557659149169922, -0.28176453709602356], [0.4161633849143982, -0.2844858169555664, 0.10776717960834503, 0.10621516406536102, 0.5707764625549316, -0.08484302461147308, 0.12603497505187988, 0.01940896175801754, -0.2557638883590698, -0.281766802072525], [0.416161447763443, -0.2844870090484619, 0.10777091979980469, 0.10621827095746994, 0.5707781910896301, -0.08484645187854767, 0.12603209912776947, 0.01940779946744442, -0.2557641267776489, -0.28177115321159363], [0.4161621034145355, -0.2844882607460022, 0.10777094960212708, 0.10621719807386398, 0.5707791447639465, -0.08484473824501038, 0.12603247165679932, 0.019409043714404106, -0.25576603412628174, -0.2817685604095459], [0.41616135835647583, -0.284488320350647, 0.10777303576469421, 0.10621687024831772, 0.5707798600196838, -0.08484599739313126, 0.12603285908699036, 0.019408298656344414, -0.25576528906822205, -0.2817697823047638], [0.41616150736808777, -0.28448915481567383, 0.10777068138122559, 0.10621620714664459, 0.5707801580429077, -0.08484555035829544, 0.12603464722633362, 0.019409528002142906, -0.25576579570770264, -0.28176867961883545], [0.4161614775657654, -0.28448957204818726, 0.10777074098587036, 0.10621616244316101, 0.5707803964614868, -0.08484731614589691, 0.12603510916233063, 0.01941012404859066, -0.2557647228240967, -0.28176936507225037], [0.4161597788333893, -0.28448548913002014, 0.1077791377902031, 0.10621946305036545, 0.5707789659500122, -0.08484772592782974, 0.12602707743644714, 0.01940223015844822, -0.25576430559158325, -0.2817758023738861], [0.41616156697273254, -0.28448283672332764, 0.10777842998504639, 0.10621772706508636, 0.5707769393920898, -0.08483922481536865, 0.12602472305297852, 0.01940016634762287, -0.2557683289051056, -0.2817707061767578], [0.41616320610046387, -0.2844841778278351, 0.10777315497398376, 0.10621379315853119, 0.5707769393920898, -0.08483723551034927, 0.12603126466274261, 0.01940484344959259, -0.25576797127723694, -0.28176483511924744], [0.4161626100540161, -0.28448787331581116, 0.10776706039905548, 0.10621339827775955, 0.5707787275314331, -0.08484262228012085, 0.12603814899921417, 0.019410422071814537, -0.2557651698589325, -0.2817651927471161], [0.41616180539131165, -0.2844906747341156, 0.107765793800354, 0.10621555894613266, 0.5707801580429077, -0.08484895527362823, 0.12603896856307983, 0.019413109868764877, -0.25576311349868774, -0.2817686200141907], [0.4161597192287445, -0.2844872772693634, 0.10777666419744492, 0.10622051358222961, 0.5707794427871704, -0.08485116064548492, 0.12602850794792175, 0.019404985010623932, -0.2557629346847534, -0.2817768156528473], [0.4161617159843445, -0.2844862639904022, 0.10777470469474792, 0.10621816664934158, 0.5707785487174988, -0.08484169840812683, 0.12602774798870087, 0.01940508931875229, -0.255768358707428, -0.28176945447921753], [0.4161619544029236, -0.28448545932769775, 0.10777655988931656, 0.10621561855077744, 0.5707784295082092, -0.08484172821044922, 0.1260300725698471, 0.019404642283916473, -0.25576648116111755, -0.2817685008049011], [0.4161602556705475, -0.28448188304901123, 0.10778053849935532, 0.10621781647205353, 0.5707770586013794, -0.08484169095754623, 0.12602561712265015, 0.019398154690861702, -0.255765825510025, -0.28177377581596375], [0.4161614179611206, -0.2844764292240143, 0.10778509825468063, 0.10621802508831024, 0.5707736015319824, -0.08483567088842392, 0.12601830065250397, 0.019391341134905815, -0.25576773285865784, -0.28177374601364136], [0.41616252064704895, -0.2844718098640442, 0.10778704285621643, 0.10621684044599533, 0.5707706809043884, -0.08482836186885834, 0.12601490318775177, 0.019386954605579376, -0.2557696998119354, -0.28177112340927124], [0.4161636233329773, -0.28446924686431885, 0.10778598487377167, 0.10621480643749237, 0.5707686543464661, -0.08482376486063004, 0.12601546943187714, 0.019385389983654022, -0.25577014684677124, -0.28176820278167725], [0.41616642475128174, -0.284475713968277, 0.10776878148317337, 0.10620951652526855, 0.5707702040672302, -0.0848228707909584, 0.1260303258895874, 0.01939934678375721, -0.25577038526535034, -0.2817573547363281], [0.41616445779800415, -0.2844821512699127, 0.10776577889919281, 0.10621165484189987, 0.5707738399505615, -0.08483804017305374, 0.12603722512722015, 0.019406788051128387, -0.25576314330101013, -0.28176364302635193], [0.4161624014377594, -0.2844866216182709, 0.10776452720165253, 0.10621675103902817, 0.5707767605781555, -0.08484542369842529, 0.12603604793548584, 0.01940983347594738, -0.25576305389404297, -0.2817689776420593], [0.41616302728652954, -0.2844909131526947, 0.10776448249816895, 0.10621684044599533, 0.5707793235778809, -0.08484766632318497, 0.12603704631328583, 0.019414778798818588, -0.25576433539390564, -0.2817668616771698], [0.4161610007286072, -0.2844928801059723, 0.10776843130588531, 0.10621815174818039, 0.570781946182251, -0.08485156297683716, 0.1260371208190918, 0.019414659589529037, -0.2557637393474579, -0.28177008032798767], [0.4161599576473236, -0.2844911813735962, 0.10777413100004196, 0.10621918737888336, 0.5707821249961853, -0.08485132455825806, 0.1260327696800232, 0.019409706816077232, -0.2557643949985504, -0.2817733883857727], [0.41616082191467285, -0.28448954224586487, 0.10777411609888077, 0.10621754825115204, 0.5707810521125793, -0.08484673500061035, 0.12603189051151276, 0.019408246502280235, -0.25576651096343994, -0.28177058696746826], [0.41616180539131165, -0.28449052572250366, 0.10776994377374649, 0.10621501505374908, 0.5707811117172241, -0.0848456397652626, 0.1260363757610321, 0.019411427900195122, -0.25576621294021606, -0.28176701068878174], [0.4161616563796997, -0.2844935357570648, 0.10776492208242416, 0.10621453076601028, 0.5707823634147644, -0.08484947681427002, 0.12604162096977234, 0.019416186958551407, -0.25576433539390564, -0.2817666232585907], [0.4161595404148102, -0.28449127078056335, 0.10777316987514496, 0.10621894896030426, 0.570781946182251, -0.08485451340675354, 0.12603434920310974, 0.019410034641623497, -0.2557620108127594, -0.2817753851413727], [0.41616111993789673, -0.2844911217689514, 0.10776986926794052, 0.10621799528598785, 0.5707812905311584, -0.0848475843667984, 0.12603358924388885, 0.019411182031035423, -0.25576668977737427, -0.2817697525024414], [0.4161616563796997, -0.28449171781539917, 0.10777075588703156, 0.10621587187051773, 0.5707817077636719, -0.08484847098588943, 0.12603627145290375, 0.019412722438573837, -0.2557651400566101, -0.28176817297935486], [0.41616106033325195, -0.28449440002441406, 0.10776523500680923, 0.10621552914381027, 0.570783257484436, -0.08485009521245956, 0.12604130804538727, 0.019416559487581253, -0.255764901638031, -0.281767338514328], [0.4161602854728699, -0.28449392318725586, 0.10776974260807037, 0.10621733218431473, 0.5707831978797913, -0.08485475182533264, 0.12603822350502014, 0.019414205104112625, -0.2557624876499176, -0.2817722260951996], [0.4161600172519684, -0.2844928801059723, 0.10777036100625992, 0.10621868073940277, 0.5707827806472778, -0.08485198765993118, 0.1260351538658142, 0.019412441179156303, -0.25576481223106384, -0.28177228569984436], [0.41616153717041016, -0.28449392318725586, 0.1077682375907898, 0.10621614754199982, 0.5707828998565674, -0.08484990149736404, 0.12603795528411865, 0.019415292888879776, -0.25576555728912354, -0.28176775574684143], [0.4161601662635803, -0.28449392318725586, 0.10776978731155396, 0.10621700435876846, 0.5707834959030151, -0.08485276997089386, 0.12603837251663208, 0.01941431686282158, -0.25576379895210266, -0.28177085518836975], [0.41616153717041016, -0.28449758887290955, 0.10776159167289734, 0.10621507465839386, 0.5707845687866211, -0.0848521813750267, 0.12604431807994843, 0.019420893862843513, -0.25576499104499817, -0.28176578879356384], [0.4161604046821594, -0.2844997048377991, 0.10776321589946747, 0.10621634125709534, 0.57078617811203, -0.08485928922891617, 0.1260455697774887, 0.019422724843025208, -0.25576159358024597, -0.28176969289779663], [0.41615843772888184, -0.28449779748916626, 0.10776938498020172, 0.10622037947177887, 0.5707860589027405, -0.08486063033342361, 0.12603868544101715, 0.019417066127061844, -0.25576210021972656, -0.2817758321762085], [0.4161606431007385, -0.28449803590774536, 0.10776674747467041, 0.10621771216392517, 0.5707855820655823, -0.08485449105501175, 0.1260395497083664, 0.01941906102001667, -0.2557656466960907, -0.2817692160606384], [0.41615957021713257, -0.2844966650009155, 0.10777094960212708, 0.1062176525592804, 0.570785641670227, -0.08485634624958038, 0.12603901326656342, 0.019416499882936478, -0.2557635009288788, -0.2817719280719757], [0.4161597490310669, -0.28449633717536926, 0.10776828229427338, 0.10621733218431473, 0.5707851648330688, -0.08485395461320877, 0.12603959441184998, 0.019416306167840958, -0.2557648718357086, -0.2817706763744354], [0.4161600172519684, -0.2844944894313812, 0.1077713891863823, 0.1062173843383789, 0.5707840323448181, -0.084854356944561, 0.12603718042373657, 0.019413936883211136, -0.2557637691497803, -0.28177210688591003], [0.41616055369377136, -0.28449514508247375, 0.10776709020137787, 0.10621671378612518, 0.5707839727401733, -0.0848516970872879, 0.1260393112897873, 0.019416097551584244, -0.2557653486728668, -0.2817690968513489], [0.41615983843803406, -0.2844926416873932, 0.10777381807565689, 0.10621809214353561, 0.5707830190658569, -0.08485395461320877, 0.12603484094142914, 0.019411323592066765, -0.25576314330101013, -0.2817736566066742], [0.41615912318229675, -0.2844875454902649, 0.10777921229600906, 0.10622017085552216, 0.5707806944847107, -0.08484859764575958, 0.12602710723876953, 0.01940341293811798, -0.2557657063007355, -0.2817760705947876], [0.4161616265773773, -0.28448453545570374, 0.10777856409549713, 0.10621676594018936, 0.5707781910896301, -0.08484046161174774, 0.1260264366865158, 0.019401976838707924, -0.2557682693004608, -0.28176984190940857], [0.4161616861820221, -0.2844829559326172, 0.10777761787176132, 0.10621540248394012, 0.570777177810669, -0.08483913540840149, 0.12602832913398743, 0.01940123178064823, -0.2557671368122101, -0.2817690968513489], [0.4161611795425415, -0.28447961807250977, 0.10778091847896576, 0.10621688514947891, 0.5707752704620361, -0.08483881503343582, 0.12602415680885315, 0.019396167248487473, -0.2557661235332489, -0.281772643327713], [0.41616296768188477, -0.2844790816307068, 0.10777644068002701, 0.10621535778045654, 0.5707738995552063, -0.08483387529850006, 0.12602517008781433, 0.019397931173443794, -0.25576847791671753, -0.28176769614219666], [0.41616278886795044, -0.28447824716567993, 0.10777866840362549, 0.10621548444032669, 0.5707734823226929, -0.08483551442623138, 0.1260247379541397, 0.019397009164094925, -0.25576651096343994, -0.2817692160606384], [0.4161622226238251, -0.28447675704956055, 0.10777978599071503, 0.10621684044599533, 0.5707728862762451, -0.08483422547578812, 0.12602229416370392, 0.01939435675740242, -0.255767285823822, -0.2817707061767578], [0.41616350412368774, -0.2844763398170471, 0.10777869820594788, 0.10621538758277893, 0.5707721710205078, -0.08483166247606277, 0.12602268159389496, 0.019395064562559128, -0.25576817989349365, -0.28176775574684143], [0.4161624014377594, -0.2844736874103546, 0.1077837198972702, 0.10621684044599533, 0.5707712769508362, -0.08483216911554337, 0.1260189563035965, 0.019390380010008812, -0.2557671070098877, -0.28177160024642944], [0.4161619544029236, -0.28446730971336365, 0.10779180377721786, 0.10621874034404755, 0.5707681775093079, -0.08482716232538223, 0.12600946426391602, 0.019380467012524605, -0.25576871633529663, -0.2817750573158264], [0.4161642789840698, -0.28446313738822937, 0.107791006565094, 0.10621576756238937, 0.5707650780677795, -0.08481692522764206, 0.12600760161876678, 0.019377607852220535, -0.25577235221862793, -0.28176870942115784], [0.41616588830947876, -0.28446340560913086, 0.1077851727604866, 0.10621190816164017, 0.5707642436027527, -0.08481429517269135, 0.12601397931575775, 0.019381346181035042, -0.25577160716056824, -0.2817632555961609], [0.41616564989089966, -0.2844661474227905, 0.10777919739484787, 0.10621166974306107, 0.5707651376724243, -0.08481886237859726, 0.12601977586746216, 0.01938602328300476, -0.2557688355445862, -0.28176361322402954], [0.4161646366119385, -0.2844669222831726, 0.10778060555458069, 0.10621467977762222, 0.5707655549049377, -0.08482415974140167, 0.12601760029792786, 0.01938582956790924, -0.255766898393631, -0.28176841139793396], [0.41616466641426086, -0.2844671905040741, 0.10778174549341202, 0.10621616244316101, 0.5707657337188721, -0.08482325077056885, 0.12601487338542938, 0.019385598599910736, -0.25576862692832947, -0.28176844120025635], [0.41616562008857727, -0.2844698429107666, 0.10777844488620758, 0.10621407628059387, 0.5707671046257019, -0.08482225984334946, 0.12601915001869202, 0.019390186294913292, -0.25576964020729065, -0.2817639410495758], [0.4161640405654907, -0.2844706177711487, 0.10778112709522247, 0.10621505975723267, 0.5707683563232422, -0.08482687175273895, 0.12601962685585022, 0.019389426335692406, -0.2557673156261444, -0.28176790475845337], [0.41616395115852356, -0.2844710052013397, 0.1077800765633583, 0.10621552914381027, 0.5707685351371765, -0.08482645452022552, 0.12601909041404724, 0.019389426335692406, -0.25576841831207275, -0.28176799416542053], [0.41616368293762207, -0.2844688892364502, 0.1077851876616478, 0.10621640086174011, 0.5707678198814392, -0.08482658863067627, 0.12601496279239655, 0.01938576251268387, -0.25576791167259216, -0.28177040815353394], [0.41616496443748474, -0.28447073698043823, 0.10777841508388519, 0.10621407628059387, 0.5707681775093079, -0.08482252806425095, 0.1260197013616562, 0.01939029060304165, -0.2557704746723175, -0.28176426887512207], [0.4161660969257355, -0.28447720408439636, 0.10776916891336441, 0.10621074587106705, 0.5707709193229675, -0.08482770621776581, 0.12603110074996948, 0.01940116472542286, -0.255767822265625, -0.2817595899105072], [0.41616290807724, -0.28448060154914856, 0.1077708750963211, 0.10621507465839386, 0.570773720741272, -0.08483916521072388, 0.12603165209293365, 0.019402431324124336, -0.255763441324234, -0.2817685008049011], [0.4161623418331146, -0.2844809889793396, 0.10777410119771957, 0.106218121945858, 0.5707743167877197, -0.08484024554491043, 0.12602634727954865, 0.019400635734200478, -0.2557651996612549, -0.28177133202552795], [0.4161621630191803, -0.28447863459587097, 0.10778099298477173, 0.10621874034404755, 0.5707738399505615, -0.08483753353357315, 0.1260208636522293, 0.01939621940255165, -0.255766898393631, -0.28177210688591003], [0.4161621928215027, -0.284475713968277, 0.10778412967920303, 0.10621762275695801, 0.5707727670669556, -0.08483223617076874, 0.12601853907108307, 0.01939193718135357, -0.25576892495155334, -0.28177088499069214], [0.41616326570510864, -0.2844739556312561, 0.1077827587723732, 0.1062149703502655, 0.5707715153694153, -0.0848284512758255, 0.12601998448371887, 0.019391072914004326, -0.25576937198638916, -0.281767874956131], [0.41616320610046387, -0.28447243571281433, 0.1077822744846344, 0.10621469467878342, 0.5707703232765198, -0.08482840657234192, 0.12602011859416962, 0.019389783963561058, -0.25576815009117126, -0.28176867961883545], [0.4161638021469116, -0.28447219729423523, 0.10777981579303741, 0.10621469467878342, 0.5707694888114929, -0.08482745289802551, 0.12602050602436066, 0.01939055137336254, -0.2557683289051056, -0.28176766633987427], [0.4161631166934967, -0.2844694256782532, 0.10778538137674332, 0.10621662437915802, 0.5707682967185974, -0.08482804149389267, 0.12601539492607117, 0.019385896623134613, -0.25576743483543396, -0.2817715108394623], [0.4161651134490967, -0.28447166085243225, 0.10777707397937775, 0.10621383786201477, 0.5707684755325317, -0.08482281863689423, 0.1260206401348114, 0.019391587004065514, -0.25577065348625183, -0.2817636728286743], [0.4161645472049713, -0.2844734489917755, 0.10777802020311356, 0.1062135249376297, 0.570769727230072, -0.08482887595891953, 0.12602370977401733, 0.01939370110630989, -0.25576677918434143, -0.2817659378051758], [0.41616350412368774, -0.2844754457473755, 0.10777502506971359, 0.10621529817581177, 0.5707710385322571, -0.08483109623193741, 0.12602484226226807, 0.019395511597394943, -0.2557671368122101, -0.28176748752593994], [0.41616371273994446, -0.28447577357292175, 0.10777788609266281, 0.10621590167284012, 0.5707712769508362, -0.08483312278985977, 0.1260228157043457, 0.019395191222429276, -0.25576648116111755, -0.2817687690258026], [0.41616323590278625, -0.2844764292240143, 0.10777732729911804, 0.10621629655361176, 0.5707719326019287, -0.08483217656612396, 0.1260230839252472, 0.019395742565393448, -0.2557677924633026, -0.28176820278167725], [0.41616395115852356, -0.28447842597961426, 0.10777502506971359, 0.10621457546949387, 0.5707728862762451, -0.08483271300792694, 0.1260264813899994, 0.019398929551243782, -0.2557675540447235, -0.28176575899124146], [0.4161622226238251, -0.2844774127006531, 0.10777942836284637, 0.10621669888496399, 0.5707731246948242, -0.08483614772558212, 0.1260237693786621, 0.019395601004362106, -0.2557658553123474, -0.2817710041999817], [0.41616201400756836, -0.2844736874103546, 0.10778450965881348, 0.10621821135282516, 0.570771336555481, -0.08483271300792694, 0.1260170191526413, 0.019389456138014793, -0.2557676434516907, -0.28177306056022644]]], 'fractal_dimension': 4.25} 2025-07-28 22:58:54,534 - DEBUG - Sending response: { "message": "File uploaded successfully", "filename": "S001R01.edf", "shape": [ 64, 9760 ], "sampling_rate": 160.0, "channel_names": [ "Fc5.", "Fc3.", "Fc1.", "Fcz.", "Fc2.", "Fc4.", "Fc6.", "C5..", "C3..", "C1..", "Cz..", "C2..", "C4..", "C6..", "Cp5.", "Cp3.", "Cp1.", "Cpz.", "Cp2.", "Cp4.", "Cp6.", "Fp1.", "Fpz.", "Fp2.", "Af7.", "Af3.", "Afz.", "Af4.", "Af8.", "F7..", "F5..", "F3..", "F1..", "Fz..", "F2..", "F4..", "F6..", "F8..", "Ft7.", "Ft8.", "T7..", "T8..", "T9..", "T10.", "Tp7.", "Tp8.", "P7..", "P5..", "P3..", "P1..", "Pz..", "P2..", "P4..", "P6..", "P8..", "Po7.", "Po3.", "Poz.", "Po4.", "Po8.", "O1..", "Oz..", "O2..", "Iz.." ], "metrics": [ { "mean_amplitude": -0.7604508196721314, "mu_psd": 32.96217130036497, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.0400614754098365, "mu_psd": 42.208361534205906, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.0797131147540973, "mu_psd": 39.75499892768321, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.8452868852459003, "mu_psd": 38.731687895830035, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.4572745901639337, "mu_psd": 36.45671846636971, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 3.0593237704918033, "mu_psd": 33.12253401258297, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.7516393442622946, "mu_psd": 20.383899986541035, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.8946721311475412, "mu_psd": 36.13147005560294, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.358299180327869, "mu_psd": 42.707443489824996, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.18688524590164052, "mu_psd": 35.83879768589472, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.3882172131147534, "mu_psd": 32.816917407410266, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.692213114754098, "mu_psd": 31.95003385558746, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.224282786885246, "mu_psd": 28.29165483101699, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.628790983606558, "mu_psd": 17.01563826863389, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.463422131147541, "mu_psd": 36.32390309607568, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.16557377049180302, "mu_psd": 38.3608098936832, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.777049180327868, "mu_psd": 35.58889841907527, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6493852459016396, "mu_psd": 32.76094623423135, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.11547131147541033, "mu_psd": 30.293224827502296, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.5043032786885251, "mu_psd": 29.00179204029715, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.3472336065573767, "mu_psd": 21.313346303950205, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -8.763217213114755, "mu_psd": 30.889085201415394, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -7.782786885245901, "mu_psd": 27.436530092968738, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -8.68954918032787, "mu_psd": 26.901803396603853, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -10.696823770491802, "mu_psd": 31.79732985272577, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -9.142418032786885, "mu_psd": 30.979407517628683, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.964241803278689, "mu_psd": 33.534322865086395, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -4.732991803278689, "mu_psd": 28.50425245527458, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -6.505122950819672, "mu_psd": 23.90336767313496, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.3546106557377042, "mu_psd": 27.836928662869006, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -5.617827868852459, "mu_psd": 35.33012840136983, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.6713114754098355, "mu_psd": 32.67831622400885, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.14334016393442614, "mu_psd": 38.17433457556781, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8379098360655738, "mu_psd": 38.28653350595802, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.4547131147540994, "mu_psd": 35.04637279580251, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8713114754098362, "mu_psd": 31.850613664878395, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.163422131147541, "mu_psd": 25.829493870582244, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.7753073770491805, "mu_psd": 17.6736917924352, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.3829918032786885, "mu_psd": 28.17966031322613, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8619877049180324, "mu_psd": 11.291750159105318, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.9428278688524583, "mu_psd": 27.626524911435336, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.750409836065573, "mu_psd": 9.30286324704405, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.7112704918032788, "mu_psd": 26.482776617605577, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.09641393442622959, "mu_psd": 2.533695442731044, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.14477459016393418, "mu_psd": 30.068746868094838, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6962090163934423, "mu_psd": 11.550468816632018, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8612704918032791, "mu_psd": 37.79443489890606, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.0809426229508203, "mu_psd": 40.656749513463446, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.3059426229508198, "mu_psd": 41.330996096642515, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.5913934426229513, "mu_psd": 41.42380498373986, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.18893442622950787, "mu_psd": 38.186882884316766, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.7969262295081971, "mu_psd": 37.650624175942006, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.1698770491803276, "mu_psd": 33.958598201727426, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.8021516393442623, "mu_psd": 27.053105215942246, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.02530737704918, "mu_psd": 19.503264664200966, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.7867827868852455, "mu_psd": 47.11752538431089, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.0236680327868863, "mu_psd": 48.43728070052847, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.284118852459016, "mu_psd": 46.34457088667734, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.0335040983606556, "mu_psd": 41.35467641899583, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.2284836065573768, "mu_psd": 39.659832169131796, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6304303278688523, "mu_psd": 55.50730913514963, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.154713114754098, "mu_psd": 49.149252934165, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.3248975409836069, "mu_psd": 50.32309919576436, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.56875, "mu_psd": 44.79530326491978, "erd_amplitude": 0.0, "event_latency": 0.0 } ] } 2025-07-28 22:58:54,536 - INFO - 127.0.0.1 - - [28/Jul/2025 22:58:54] "POST /upload HTTP/1.1" 200 - 2025-07-28 23:04:42,136 - DEBUG - Received upload request 2025-07-28 23:04:42,170 - DEBUG - Saving file to C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001\S001R01.edf 2025-07-28 23:04:42,172 - DEBUG - Loading EDF: C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001\S001R01.edf 2025-07-28 23:04:42,191 - DEBUG - EDF loaded: shape=(64, 9760), sfreq=160.0, channels=64 2025-07-28 23:04:44,026 - DEBUG - Chaos metrics: {'lorentz_trajectory': [[1.0, 1.012526435333749, 1.0488427648448813, 1.1074268310054123, 1.1872456699842253, 1.2879299443535448, 1.4100743204422619, 1.5546044176661293, 1.7226797617541962, 1.9156937847488102, 2.135501404667851, 2.3848509372121334, 2.6668380107922536, 2.984813421248435, 3.342383141022818, 3.7434083191594643, 4.191980636293861, 4.690242034217356, 5.244446379255251, 5.862109805589737, 6.548741906638002, 7.30784573505223, 8.140917802719603, 9.047448080762301, 10.024919999537499, 11.068810448637375, 12.172454030074087, 13.319363905546792, 14.484208344247893, 15.63513294827697, 16.731680385697324, 17.72479039053596, 18.558078017232326, 19.181057568135333, 19.537958095934012, 19.590016084394605, 19.32129990077376, 18.738709795818533, 17.868310041649757, 16.737663372007585, 15.398614892117966, 13.908598791349505, 12.327156229548489, 10.712315173349486, 9.10947837720894, 7.555592979577969, 6.078057482050836, 4.694801809243179, 3.4162471900409197, 2.2452230013149133, 1.181297687437059, 0.22176199989058532, -0.6383710027299765, -1.4063843651789711, -2.090985274463022, -2.6997109542721507, -3.2398852910893883, -3.7188737648943477, -4.144083449163219, -4.522963010868772, -4.862968807665948, -5.170009255773388, -5.4479837854463495, -5.7006486432102905, -5.931734687064622, -6.144947386482708, -6.343966822411869, -6.532447687273377, -6.7136985588011795, -6.8888340066299065, -7.058731372860783, -7.224289979754371, -7.386339467345437, -7.5456397934429615, -7.7028812336301336, -7.858684381264349, -8.013593048435599, -8.167488545892828, -8.319479097017247, -8.46866633725987, -8.614142894434366, -8.754992388717069, -8.890289432646965, -9.019099631125703, -9.140479581417596, -9.253476873149609, -9.35713008831137, -9.450594422061542, -9.532791072591133, -9.602206389748064, -9.657597021076525, -9.698008423928131, -9.722774865461929, -9.731519422644384, -9.724153982249392, -9.700879240858276, -9.662184704859783, -9.608848690450083, -9.541938323632781, -9.462772849451799, -9.371685987178621, -9.269630020722667, -9.158148638239561, -9.038783951303282, -8.913076494906171, -8.782565227458925, -8.648787530790598, -8.513279210148607, -8.377574494198718, -8.243206035025063, -8.111704908130129, -7.984600612434762, -7.863404747441387, -7.7492423187050825, -7.642944184696112, -7.545282114131972, -7.456948549077124, -7.378556604942999, -7.310640070487999, -7.253653407817487, -7.207971752383799, -7.173890912986237, -7.15162737177107, -7.141318284231538, -7.143021479207844, -7.156715458887163, -7.181874959232638, -7.217409249226833, -7.263409657025492, -7.319893661722231, -7.386736338229492, -7.463670357278543, -7.550285985419476, -7.6460310850212085, -7.750211114271484, -7.861989127176871, -7.980385773562762, -8.10427929907338, -8.232405545171764, -8.363357949139786, -8.495914576487744, -8.629752863825058, -8.763459277088652, -8.895515835795143, -9.024427049858648, -9.14871991959078, -9.266943935700645, -9.377671079294855, -9.47949582187751, -9.571035125350217, -9.650928442012074, -9.717837714559675, -9.770447376087121, -9.807531613047413, -9.828752723335299, -9.83379993391946, -9.822445766314303, -9.794701473837263, -9.750817041608803, -9.691281186552414, -9.616821357394612, -9.528403734664938, -9.42723323069597, -9.314753489623305, -9.19264688738557, -9.062834531724416, -8.927461942101298, -8.787713390817125, -8.644830853165788, -8.500562729492893, -8.356569210284198, -8.214422276165605, -8.075605697903164, -7.941515036403072, -7.813457642711677, -7.692652658015469, -7.580231013641087, -7.47723543105532, -7.384620421865098, -7.302954716502444, -7.232317569344705, -7.173131836879367, -7.125744194242481, -7.090413688185375, -7.067311737074662, -7.056522130892233, -7.05804103123526, -7.071776971316195, -7.097550855962773, -7.1350959616180045, -7.184057936340187, -7.2438408624372475, -7.3133908061992265, -7.392661148749552, -7.481583732765693, -7.579917354594806, -7.687247764253738, -7.802987665429025, -7.926376715476891, -8.056481525423253, -8.192195659963717, -8.332239637463571, -8.4751609299578, -8.619333963151075, -8.762960116417757, -8.9040677228019, -9.041733651545048, -9.175411283227357, -9.303033623622047, -9.422692562313493, -9.53264852875856, -9.63133049228661, -9.717335962099487, -9.789430987271533, -9.846550156749583, -9.887796599352956, -9.91244198377347, -9.91992651857543, -9.909852492276912, -9.881840335197099, -9.83624943855869, -9.77383947072025, -9.695523211097457, -9.602366550163127, -9.49558848944719, -9.376561141536701, -9.246809730075842, -9.108012589765915, -8.962001166365349, -8.810760016689695, -8.656426808611627, -8.501215340287875, -8.34670564920694, -8.19447313415197, -8.046067250400013, -7.902926422881614, -7.766378046180814, -7.637638484535146, -7.517813071835638, -7.407896111626812, -7.308770877106684, -7.221209611126764, -7.145873526192057, -7.083219149135018, -7.032952714674168, -6.995232605770079, -6.970275303333803, -6.958205343333993, -6.959055316796903, -6.972765869806392, -6.9991857035039216, -7.038071574088554, -7.089088292816957, -7.151808726003399, -7.225713795019751, -7.31011357873849, -7.403957374717543, -7.507029474944586, -7.619107646305065, -7.739784593686578, -7.868467959978874, -8.004380326073855, -8.146559210865576, -8.293857071250242, -8.444941302126212, -8.598294236393995, -8.752213144956256, -8.904810236717807, -9.054012658585616, -9.197562495468803, -9.334624071478189, -9.464335474289687, -9.584388298062176, -9.692736107769305, -9.787594520645944, -9.86744120618821, -9.931015886153448, -9.97732033456024, -10.005618377688402, -10.015435894078982, -10.006560814534264, -9.979043122117771, -9.933063375833731, -9.868448237605362, -9.786257552142349, -9.687860380509992, -9.574725367862372, -9.448420743442336, -9.3106143205815, -9.163073496700262, -9.00766525330778, -8.846356156001994, -8.681212354469608, -8.514399582486101, -8.348183028946847, -8.184666843939338, -8.025445046639371, -7.871984306766961, -7.725636568489001, -7.587639050419258, -7.459114245618373, -7.341069921593863, -7.234399120300118, -7.139880158138405, -7.058176625956866, -6.989837389050518, -6.935296587161249, -6.894387842218629, -6.866686924439915, -6.8523863742908615, -6.8515848157115595, -6.864281849317243, -6.890378052398285, -6.929674978920194, -6.9818751595236215, -7.046582101524358, -7.12330028891333, -7.211435182356607, -7.310293219195396, -7.4187462322832065, -7.535703212393713, -7.661079587735009, -7.794606359599258, -7.935795192632162, -8.083938414832934, -8.23810901755431, -8.397160655502544, -8.559727646737409, -8.7242249726722, -8.888848278073729, -9.051573871062331, -9.210158723111856, -9.362140469049681, -9.504837407056696, -9.635386638281505, -9.753725229178356, -9.859024334812688, -9.949018731657922, -10.021835817013518, -10.075995609004963, -10.110410746583785, -10.124386489527545, -10.117620718439838, -10.0902039347503, -10.042619260714591, -9.97574243941442, -9.890841834757518, -9.789205553658606, -9.670831001584585, -9.537578170613347, -9.391603304905122, -9.235047511469363, -9.070036760164752, -8.898681883699199, -8.723078577629838, -8.545307400363033, -8.36743377315437, -8.19150798010867, -8.019565168179971, -7.8536288706212245, -7.695622850755487, -7.546800938397233, -7.40817111123786, -7.2806441676331755, -7.1650337266034025, -7.062056227833178, -6.97233093167155, -6.896379919131983, -6.83462809189235, -6.787403172294942, -6.754935703346462, -6.737359048718023, -6.73451248013291, -6.74518638294261, -6.769366675357218, -6.807161898345692, -6.858544770950088, -6.9233521902855575, -7.001285231540347, -7.091909147975802, -7.1946533709263605, -7.308811509799559, -7.4335413520760305, -7.567864863309502, -7.7106681871267995, -7.8607354828340545, -8.017212966693926, -8.179243679756066, -8.345772489958605, -8.5155896051879, -8.687330573278524, -8.859476282013276, -9.030352959123178, -9.198132172287472, -9.360830829133624, -9.516311177237323, -9.66228080412248, -9.796292637261226, -9.915744944073918, -10.017881331929136, -10.100764433156062, -10.164634780781967, -10.208156853214215, -10.230274453611187, -10.230338898474587, -10.20810901764944, -10.163751154324084, -10.097839165030187, -10.011354419642732, -9.905685801380024, -9.782629706803688, -9.64439004581867, -9.493578241673237, -9.333068906145296, -9.162981965277103, -8.98482878759277, -8.801160007163114, -8.614402586788056, -8.426859817996617, -8.240711321046913, -8.058013044926163, -7.880697267350682, -7.710572594765888, -7.549323962346295, -7.398512633995519, -7.2594784903540095, -7.132904663623455, -7.019415088932684, -6.919567309433686, -6.833826511422586, -6.762565524339654, -6.706064820769292, -6.664512516440045, -6.638004370224596, -6.626543784139766, -6.630041803346518, -6.648317116149947, -6.680228095852599, -6.725027301938794, -6.783159275420805, -6.854867279360083, -6.940191550021407, -7.0389692968728825, -7.1508347025859464, -7.275218923035359, -7.411350087299215, -7.55825329765893, -7.714750629599253, -7.879461131808261, -8.050800826177358, -8.226982707801273, -8.406017657705853, -8.587268944634591, -8.770039610765313, -8.952293440642876, -9.131972706673974, -9.306998169127132, -9.47526907613271, -9.6346631636829, -9.78303665563173, -9.918224263695059, -10.038039187450586, -10.140273114337834, -10.22269621965817, -10.283423763794456, -10.3218497007096, -10.337033842066914, -10.328383997380124, -10.295734067952337, -10.239344046876033, -10.159900019033067, -10.058514161094676, -9.936724741521465, -9.796496120563422, -9.640218750259907, -9.47070917443966, -9.291060150592779, -9.10236981618524, -8.906799278867322, -8.707076658711406, -8.505774646253728, -8.305310502494375, -8.107946058897298, -7.915787717390292, -7.730786450365016, -7.554737800676982, -7.389281881645554, -7.235903360998501, -7.095648944771609, -6.96909317908797, -6.8568150132149945, -6.759299456887157, -6.676937580305993, -6.6100265141401024, -6.558769449525145, -6.523275638063845, -6.503560391825989, -6.499545083348426, -6.511057145635067, -6.5372937525509816, -6.576950981572713, -6.6305074059456155, -6.698331105039451, -6.780576972210342, -6.87718671480078, -6.987888854139619, -7.112198725542077, -7.249418478309739, -7.398637075730553, -7.558730295078834, -7.728360727615259, -7.905977778586871, -8.089817667227079, -8.277903426755655, -8.468764577742625, -8.66246318804759, -8.857104546984818, -9.050584770576615, -9.240745084936115, -9.42537182626729, -9.602196440864931, -9.768895485114667, -9.92309062549295, -10.062348638567068, -10.184181410995134, -10.286045939526094, -10.365506505847325, -10.421659650759985, -10.453330840646105, -10.459546454825183, -10.439822357860882, -10.394163899561033, -10.32306591497764, -10.227512724406873, -10.108978133389076, -9.969425432708755, -9.811307398394593, -9.637566291719438, -9.451593963899635, -9.254733542434357, -9.04889371524319, -8.837115157064973, -8.622267102767625, -8.407047347348136, -8.19398224593258, -7.985426713776103, -7.78356422626293, -7.590406818906363, -7.407795087348783, -7.237398053982101, -7.080464817808489, -6.937711176584645, -6.809778415676883, -6.697208695053258, -6.600445049283575, -6.519831387539383, -6.455612493593976, -6.407934025822396, -6.376842517201431, -6.362285375309612, -6.36411088232722, -6.381287515149129, -6.413008531528666, -6.459742401128868, -6.521770632018398, -6.599180401355229, -6.691864555386654, -6.79952160944928, -6.921655747969031, -7.057576824461144, -7.206400361530175, -7.367047550869994, -7.538245253263787, -7.718525998584054, -7.906227985792615, -8.099753826467976, -8.29894800377932, -8.502516477912176, -8.708747135704986, -8.915772781495876, -9.12157113712266, -9.323964841922836, -9.520621452733591, -9.709053443891799, -9.886618207234019, -10.0505180520965, -10.197800205315172, -10.325356811225664, -10.429924931663273, -10.509242694274901, -10.563124617947837, -10.590243943545273, -10.589740727333378, -10.56128123162757, -10.505057924792517, -10.42178948124214, -10.312720781439607, -10.179622911897338, -10.024793165177003, -9.851055039889525, -9.661758240695073, -9.460647126667864, -9.248484210392412, -9.027377880178593, -8.800615601726816, -8.571285307507699, -8.342275396762046, -8.116274735500868, -7.895772656505365, -7.6830589593269405, -7.480223910287188, -7.289158242477907, -7.11152734778165, -6.9483904249257264, -6.80045151960636, -6.668326268035488, -6.552526918389259, -6.453462330808045, -6.371437977396435, -6.306655942223234, -6.259214921321466, -6.2291102226883766, -6.216233766285424, -6.220045735099047, -6.239236728324175, -6.274137938862359, -6.325085252704138, -6.392229563353213, -6.475536771826453, -6.574787786653891, -6.689578523878725, -6.819319907057318, -6.9632378672592, -7.120373343067063, -7.289582280576766, -7.469535633397332, -7.658719362650954, -7.855619290226343, -8.059963378901333, -8.270766971196366, -8.486606756326628, -8.705823907023454, -8.926524079534246, -9.146577413622595, -9.363618532568202, -9.575046543166891, -9.778025035730618, -9.969482084087467, -10.14611024558165, -10.3043665610735, -10.440472554939493, -10.552356346863064, -10.63906505743021, -10.69833474145512, -10.728540915647725, -10.728702008585254, -10.698479360712229, -10.638177224340467, -10.548742763649079, -10.431766054684475, -10.289480085360351, -10.124760755457707, -9.941126876624832, -9.74262704374555, -9.529299146131443, -9.302810678944223, -9.066844954678926, -8.824885570142529, -8.580216406453953, -8.335921629044055, -8.09488568765564, -7.859793316343454, -7.63312953347418, -7.417179641726447, -7.214018230909568, -7.025163097976971, -6.851545744292793, -6.693952201430297, -6.553050292730022, -6.429389633299802, -6.323401630014749, -6.235399481517266, -6.16557817821704, -6.1140145022910435, -6.0806670276835355, -6.065006490935123, -6.065987350328593, -6.083855888450332, -6.118801031573438, -6.170864571821662, -6.239941167169406, -6.325778341441723, -6.427976484314318, -6.545988851313546, -6.679121563816418, -6.826533609050591, -6.987236840094377, -7.16009597587674, -7.343914270556231, -7.538181974375951, -7.742465066178709, -7.955989176337656, -8.177654987369648, -8.40603823393523, -8.639389702838658, -8.875635233027872, -9.11237571559452, -9.346887093773946, -9.57612036294519, -9.796701570630992, -10.004931816497788, -10.196816989822064, -10.370828640690364, -10.524398286970609, -10.653691289698742, -10.755581716924958, -10.827652343713696, -10.868194652143652, -10.876208831307766, -10.851403777313232, -10.794197093281491, -10.705715089348239, -10.58779278266341, -10.441343065899435, -10.267497888805787, -10.069789389187859, -9.851753949508923, -9.616920773699706, -9.368811887158405, -9.110942136750674, -8.846819190809638, -8.579943539135877, -8.313808492997438, -8.051900447666117, -7.797754585466976, -7.553852312253302, -7.322005783592637, -7.103842314261366, -6.900804378244723, -6.714149608736789, -6.544950798140497, -6.394095898067622, -6.262288019338793, -6.15004543198348, -6.057701565240005, -5.984875493197264, -5.930640461362261, -5.895014964238059, -5.877960628182321, -5.879358024868149, -5.899006671284084, -5.936625029734106, -5.991850507837634, -6.064239458529525, -6.1532671800600784, -6.258327915995029, -6.378456196120566, -6.512769761829688, -6.661698356131369, -6.825438944131511, -7.003875176621308, -7.196577390077255, -7.402802606661146, -7.621494534220067, -7.851283566286405, -8.090486782077845, -8.337107946497365, -8.58883751013325, -8.843052609259068, -9.096817065833694, -9.347569994447012, -9.59412944296327, -9.83274892586172, -10.059610516710844, -10.271081476082484, -10.463714251551842, -10.634246477697486, -10.779600976101339, -10.896885755348693, -10.983394011028194, -11.036604125731854, -11.054376746189545, -11.035964280250669, -10.981481428092648, -10.891633084516688, -10.767718335565634, -10.611630458523976, -10.42585692191785, -10.213479385515033, -9.978173700324945, -9.724209908598652, -9.45645224382886, -9.17896518092362, -8.894633096706848, -8.607587271780016, -8.321634549912252, -8.040240932010176, -7.766531576117909, -7.50329079741706, -7.252962068226739, -7.0176480180035306, -6.799110182191392, -6.598588931593856, -6.416735423783791, -6.254060552391942, -6.110961268943225, -5.987720582856733, -5.884507561445735, -5.801377329917677, -5.738271071374176, -5.695016026811027, -5.67127437894807, -5.6655102725116535, -5.6775845494007395, -5.707948517525475, -5.756876214411522, -5.824464407200071, -5.910632592647825, -6.015122997127014, -6.137500576625385, -6.277153016746208, -6.433290732708274, -6.604946869345892, -6.790977301108893, -6.990060632062631, -7.200910734942229, -7.42371379485179, -7.658210899008282, -7.903596072099213, -8.158658812260963, -8.421784091078777, -8.690952353586773, -8.963739518267936, -9.237316977054117, -9.508451595326038, -9.773505711913291, -10.028437139094333, -10.268799162596492, -10.491400960811863, -10.693637330924663, -10.870423292222078, -11.017440698571619, -11.13118837122147, -11.20898209880049, -11.248954637318214, -11.250055710164856, -11.212052008111302, -11.135527189309116, -11.02172743836465, -10.870602508052292, -10.684879710285756, -10.468415406276245, -10.225188259471134, -9.959299235553976, -9.674971602444502, -9.376550930298624, -9.068505091508428, -8.755424260702176, -8.44202091474431, -8.133004873574595, -7.831871448514517, -7.541354957475765, -7.263910052704116, -7.001711959888221, -6.756656478159602, -6.5303599800926575, -6.324159411704661, -6.139112292455757, -5.975996715248969, -5.835304604083793, -5.716292932033446, -5.618266622153557, -5.541123268810432, -5.4846970173036524, -5.448758563866075, -5.43301515566383, -5.4371105907963235, -5.460625218296235, -5.503075938129518, -5.563916201195403, -5.642209880626704, -5.737553207744417, -5.850409462841139, -5.981033543624884, -6.129462862922454, -6.295517348679427, -6.478799443960166, -6.678694106947816, -6.8943688109443, -7.124773544370328, -7.368640810765387, -7.624485628787749, -7.890606252489617, -8.165667036782889, -8.448417166714737, -8.736931137785636, -9.028896019245243, -9.3216114540924, -9.611989659075137, -9.89655542469067, -10.171446115185397, -10.432411668554902, -10.674814596543957, -10.893629984646518, -11.083445492105726, -11.238561291235479, -11.356698628218233, -11.435698067506443, -11.473017788368411, -11.46714724858019, -11.417607184425583, -11.32494961069615, -11.1907578206912, -11.017646386217796, -10.80926115759075, -10.570279263632631, -10.306409111673759, -10.022959356072608, -9.719411807629815, -9.40060185698769, -9.071976456287343, -8.738589231017, -8.405100480012, -8.075777175454807, -7.754492962874992, -7.444728161149251, -7.149569790892485, -6.871673364793906, -6.612653403950992, -6.373609663912343, -6.1554519244162105, -5.958899989390499, -5.784483686952766, -5.632542869410221, -5.503227413259728, -5.396497219187801, -5.3119750101434, -5.2485317259284585, -5.205989294556362, -5.1842662824151, -5.183197665645914, -5.202534830143294, -5.241945571554977, -5.301014095281951, -5.379241016478454, -5.476043360051969, -5.590754560663235, -5.722624084685755, -5.8711576359978634, -6.036776221242916, -6.219829022346376, -6.420375336478269, -6.638184576053179, -6.872736268730252, -7.123220057413194, -7.388535700250272, -7.667293070634313, -7.957812157202707, -8.258123063837402, -8.565966009664908, -8.879230201532385, -9.195610178693487, -9.511529581946435, -9.823139927036284, -10.126340741415417, -10.416779564243566, -10.68985194638779, -10.940701450422498, -11.164219650629425, -11.355046132997652, -11.507976092598339, -11.620243917269454, -11.688180652420217, -11.708958266995737, -11.681046402318996, -11.60421237209083, -11.479521162389942, -11.309335431672897, -11.097315510774123, -10.84841940290591, -10.56884241458601, -10.261310820095364, -9.929917318524744, -9.581070675529574, -9.220776265837811, -8.854636073249953, -8.487848690639026, -8.125209319950601, -7.771109772202781, -7.42953846748621, -7.104115616864463, -6.7973797834087275, -6.510922775651294, -6.24606957502629, -6.003887644894541, -5.785186930543568, -5.590519859187591, -5.420181339967528, -5.274208763950994, -5.152299765221021], [1.0, 1.2602660236168577, 1.5246335723524451, 1.7991441836578583, 2.089728465710837, 2.402034337231003, 2.741062813428148, 3.112108094933138, 3.5209056034597817, 3.9736319818048305, 4.476508624259135, 5.0358407583463, 5.6584509900370925, 6.351383862848584, 7.121905813858448, 7.977505173704959, 8.925778443221201, 9.963354240539273, 11.1014214855464, 12.355152644794467, 13.72930570570825, 15.218224176585434, 16.805837086596576, 18.465658985785158, 20.160789945067535, 21.84391555623297, 23.45754370283531, 24.927788026075323, 26.130471116352034, 26.938428538030376, 27.23522106634597, 26.91513468740514, 25.879224671434386, 24.060423345716178, 21.57025996397508, 18.552428513235164, 15.152118776873753, 11.516016334621394, 7.810398882381861, 4.3020344437607125, 1.1578489839938353, -1.527493297304403, -3.7170042314612246, -5.428463401599892, -6.710890706310459, -7.623971241460531, -8.234967983687026, -8.617721943580147, -8.829542700730316, -8.914353821913945, -8.910905518039147, -8.850385250725857, -8.75641773230583, -8.645357756192142, -8.530342010868546, -8.419156527828727, -8.317372099743235, -8.229513447955323, -8.159059222480957, -8.108442002008802, -8.078837290813777, -8.069230532403084, -8.078846414866488, -8.106927167931449, -8.152570116259975, -8.214727679448623, -8.292207372028502, -8.38367180346526, -8.487560486117289, -8.602025828043356, -8.725544330125395, -8.856498079629198, -8.993125453940417, -9.133521120564568, -9.275636037127033, -9.417277451373055, -9.556125604289676, -9.690394953873497, -9.817943815603948, -9.936401239313605, -10.04354934905263, -10.137323343088783, -10.215811493907406, -10.277255148211436, -10.320048726921405, -10.34273972517543, -10.344028712329223, -10.322680317834667, -10.278289927274846, -10.211537685984485, -10.123326943851147, -10.014763721135683, -9.887156708472236, -9.742017266868242, -9.58105942770442, -9.406199892734783, -9.219558034086635, -9.023455894260566, -8.820418186130464, -8.6132106562799, -8.405927040773786, -8.201681620145132, -8.002745402265768, -7.811223147172688, -7.629053367068048, -7.45800832631916, -7.299694041458496, -7.155550281183689, -7.02685056635753, -6.914702170007971, -6.820046117328123, -6.743657185676255, -6.685937836956949, -6.644732023758531, -6.619692282099529, -6.61111038970383, -6.619082629546092, -6.643509789851739, -6.684097164096964, -6.740354551008731, -6.811596254564771, -6.896941083993584, -6.995312353774438, -7.105437883637372, -7.225849998563191, -7.3548855287834725, -7.491509520338424, -7.636624499743727, -7.789643601403191, -7.949756754880583, -8.116032680399787, -8.287418888844805, -8.462741681759757, -8.640706151348883, -8.819896180476544, -8.998774442667212, -9.175682402105481, -9.348840313636066, -9.516347222763795, -9.676180965653618, -9.826554038916548, -9.966258371830582, -10.09254942083166, -10.202850520156446, -10.294919311231842, -10.366847742674974, -10.417062070293197, -10.444322857084096, -10.447724973235482, -10.426697596125404, -10.381004210322127, -10.310742607584155, -10.216344886860217, -10.098425065093105, -9.957214359092408, -9.795729209724989, -9.617434121942843, -9.425627050255322, -9.223439398729127, -9.01383602098832, -8.799615220214317, -8.583408749145882, -8.367681810079148, -8.154733054867592, -7.946694584922046, -7.745531951210701, -7.553062448511212, -7.372350275021708, -7.205951003678668, -7.055342134229806, -6.921720456087645, -6.8060020483295105, -6.708822279697546, -6.630535808598694, -6.571216583104713, -6.5306578409521645, -6.508372109542423, -6.503591205941669, -6.515266236880893, -6.54236935793654, -6.584662041739082, -6.641834188471432, -6.713477573309693, -6.799092105287347, -6.898085827295245, -7.009774916081612, -7.133383682252044, -7.268044570269512, -7.4127981584543585, -7.566593158984299, -7.728286417894421, -7.896809001087917, -8.07184479382068, -8.25239957483902, -8.437248831803542, -8.625057029452362, -8.814377609601102, -9.003652991142893, -9.19121457004837, -9.375282719365675, -9.553966789220462, -9.725265106815879, -9.887064976432594, -10.037142679428774, -10.173163474240098, -10.292681596379747, -10.393717216933542, -10.474517429523797, -10.532908639749504, -10.567153794173173, -10.575957016070056, -10.558463605428146, -10.514260038948176, -10.443373970043618, -10.346274228840688, -10.223870822178338, -10.077514933608263, -9.9089989233949, -9.72055541490668, -9.515052647015864, -9.29626299993238, -9.06794955806303, -8.833682932642184, -8.596841261731788, -8.360610210221353, -8.12798296982796, -7.901760259096263, -7.684550323398485, -7.478768934934419, -7.286639392731429, -7.110192522644447, -6.951117403278269, -6.809815006407505, -6.6871417510202, -6.583890496458093, -6.500572878873887, -6.4374193112312525, -6.394378983304827, -6.371119861680209, -6.367028689753966, -6.38121098773363, -6.4124910526377, -6.459411958295636, -6.520442835165364, -6.595773970637356, -6.68521603668008, -6.788256273723043, -6.904308120981534, -7.032711216456628, -7.172731396935186, -7.32356069798985, -7.4843173539790495, -7.654045798046997, -7.831716662123689, -8.016226776924908, -8.206489615020677, -8.40188983596458, -8.601032770647816, -8.802271293580354, -9.00387051321159, -9.204007771930334, -9.40077264606482, -9.592166945882699, -9.776104715591044, -9.950412233336351, -10.11282801120453, -10.261002795220914, -10.392499565350258, -10.504793535496736, -10.595272153503942, -10.661656556610017, -10.7023287550876, -10.71592436965587, -10.701525286207318, -10.658659670044681, -10.587301965880943, -10.48787289783934, -10.36123946945335, -10.208714963666708, -10.032058942833391, -9.833477248717626, -9.61562200249389, -9.381760042433546, -9.136730589106863, -8.884701654725426, -8.629424742690311, -8.374436252987152, -8.123057482186137, -7.8783946234420235, -7.643338766494116, -7.420565897666283, -7.212536899866954, -7.021497552589114, -6.849478531910307, -6.698293466777031, -6.5677500260037025, -6.457323244134125, -6.3676369078951565, -6.2990410891210535, -6.251612144753469, -6.225152716841455, -6.219191732541458, -6.232984404117324, -6.265512228940295, -6.315482989489012, -6.381330753349513, -6.46121587321523, -6.554336972331245, -6.661382332747329, -6.781849389615288, -6.915149003489203, -7.06061622390393, -7.21751028937509, -7.385014627399081, -7.5622368544530705, -7.748208775994998, -7.9418863864635725, -8.142149869278278, -8.347803596839364, -8.557980380467752, -8.77180291844666, -8.987123441878142, -9.201725457844521, -9.41336194016083, -9.61975532937476, -9.818597532766685, -10.007549924349647, -10.184243344869369, -10.346278101804243, -10.491223969365343, -10.61662018849641, -10.71997546687387, -10.798767978906813, -10.850445365737016, -10.872415921555946, -10.86210051369038, -10.81948893533838, -10.74564738686183, -10.641874284474355, -10.50970026024133, -10.35088816207987, -10.167433053758835, -9.961562214898827, -9.735735140972196, -9.492643543303032, -9.23521134906717, -8.96659470129219, -8.690856814291855, -8.415235446305326, -8.143734357145652, -7.879551058515536, -7.625627433122485, -7.384649734678811, -7.159048587901633, -6.9509989885128745, -6.762420303239267, -6.594976269812345, -6.45007499696845, -6.328868964448729, -6.2321665349566615, -6.157526038713206, -6.103798228987777, -6.071128723577401, -6.059443944848854, -6.06845111973866, -6.097638279753093, -6.146274260968172, -6.213408704029669, -6.297872054153102, -6.39827556112374, -6.513011279296599, -6.640252067596444, -6.778354611239248, -6.9284279723473325, -7.0903909821508995, -7.2636388759413, -7.44744373552113, -7.640954489204228, -7.843196911815676, -8.053073624691802, -8.26936409568017, -8.490724639139597, -8.715688415940136, -8.942665433463088, -9.169942545600993, -9.395884592822021, -9.619835591874702, -9.83847389384135, -10.04808456902251, -10.245191467619236, -10.426557219733079, -10.5891832353661, -10.730309704420868, -10.847415596700452, -10.93821866190843, -11.000675429648885, -11.032981209426403, -11.03357009064608, -11.00111494261351, -10.9345274145348, -10.831400288699085, -10.690255494193734, -10.516649717766903, -10.315996399405586, -10.093247839368521, -9.852895198186172, -9.598968496660746, -9.335036615866178, -9.06420729714815, -8.78912714212407, -8.511981612683083, -8.234495030986075, -7.957930579465664, -7.683463094810176, -7.420063878312348, -7.173362379680764, -6.9456684645484, -6.738883840036248, -6.554502054753318, -6.393608498796637, -6.256880403751252, -6.144586842690225, -6.056588730174638, -5.992338822253589, -5.950881716464195, -5.930854310369259, -5.9311418712442325, -5.9512314668624295, -5.990563399909557, -6.0484966217145235, -6.124308732249446, -6.217195980129641, -6.32627326261363, -6.450574125603138, -6.589050763643094, -6.740574019921631, -6.903933386270086, -7.078459295575534, -7.264134734746131, -7.460418754846489, -7.6665909944080255, -7.881752468100064, -8.104825566729835, -8.334554057242476, -8.569503082721031, -8.808059162386451, -9.048430191597596, -9.288645441851227, -9.526555560782018, -9.759832572162548, -9.985969875903303, -10.202282970655363, -10.406749182970033, -10.595972282718538, -10.765607285317683, -10.911798558862214, -11.031179824124822, -11.120874154556127, -11.1784939762847, -11.202141068117047, -11.19040656153761, -11.142370940708778, -11.057604042470873, -10.936165056342162, -10.777692242489884, -10.582569593871934, -10.356504283511086, -10.105154784297792, -9.833798314820402, -9.547330839365184, -9.250267067916301, -8.946740456155826, -8.64050320546374, -8.334926262917925, -8.032999321294175, -7.7373308190661865, -7.450453707025828, -7.179245738589397, -6.927865561967064, -6.698522820648053, -6.492961086315876, -6.312457858848336, -6.157824566317523, -6.029406564989818, -5.927083139325892, -5.850267501980702, -5.797906793803497, -5.768482105676627, -5.760568271186873, -5.773560441437439, -5.806793236164028, -5.859545743910568, -5.9310415220292185, -6.02044859668037, -6.126879462832641, -6.24939108426288, -6.386984893556166, -6.5386067921058055, -6.703147150113336, -6.87969969613766, -7.068213675330882, -7.268288618858554, -7.479311277695299, -7.70048389880777, -7.930824225154646, -8.169165495686638, -8.414156445346489, -8.664261305068962, -8.917759801780859, -9.172747158401009, -9.427134093840266, -9.678646823001516, -9.924827056779678, -10.163032002061696, -10.390811590888177, -10.605325247384346, -10.801767671003725, -10.975703831997713, -11.123196013051032, -11.24080380928174, -11.325584128241218, -11.37509118991418, -11.387376526718667, -11.360988983506047, -11.294974717561017, -11.188877198601604, -11.042262232220867, -10.853583381015124, -10.628315564187176, -10.372833016851656, -10.093055681059026, -9.794449205795576, -9.482024946983433, -9.160339967480557, -8.833497037080729, -8.505144632513577, -8.17847693744455, -7.85623384247493, -7.5407903010030894, -7.239655168925597, -6.958826634744016, -6.700901214449172, -6.467952732624536, -6.261532322446217, -6.08266842568297, -5.931866792696189, -5.809110482439911, -5.713859862460816, -5.645052608898224, -5.601103882022646, -5.580407741761831, -5.582162607431239, -5.605593233580322, -5.6498736179106155, -5.714127001275738, -5.7974258676813895, -5.898791944285355, -6.0171962013975016, -6.151558852479781, -6.300749354146224, -6.46358640616295, -6.639406741704176, -6.828312811079023, -7.029888971805326, -7.243554498414342, -7.4685669335273985, -7.704022087855896, -7.948854040201311, -8.20183513745519, -8.461575994599151, -8.726525494704894, -8.994970788934182, -9.26503729653886, -9.534688704860836, -9.801726969332101, -10.064099037521494, -10.320065062194947, -10.564546842435643, -10.792408054358987, -10.998954454279172, -11.1799338787092, -11.331536244360855, -11.450393548144728, -11.5335798671702, -11.578611358745452, -11.583446260377457, -11.546484889771984, -11.466569644833601, -11.342985003665673, -11.17316494367021, -10.957237021758457, -10.703400931796075, -10.419312230621246, -10.11188554613122, -9.787294577282294, -9.450972094089831, -9.107609937628244, -8.761159020031009, -8.414829324490654, -8.07108990525877, -7.731668887645998, -7.39791824239769, -7.080274685960744, -6.785641599731247, -6.516639369418936, -6.275297930586426, -6.063056768649204, -5.88076491887563, -5.728680966386937, -5.606473046157235, -5.513218843013503, -5.447405591635597, -5.407013808592985, -5.390790291661755, -5.397886530448421, -5.427355115682728, -5.478217076152157, -5.549461878701931, -5.640047428235003, -5.748900067712068, -5.874914578151554, -6.016954178629629, -6.173850526280194, -6.344622508150169, -6.529388742166002, -6.727884120971334, -6.939624874707443, -7.163986482710667, -7.400203673512407, -7.647370424839124, -7.9044399636123375, -8.170224765948632, -8.443396557159645, -8.722486311752084, -9.00588425342771, -9.29183985508335, -9.578461838810886, -9.863919016332197, -10.14629252834597, -10.420695242656265, -10.682089979068808, -10.925723019366371, -11.147124107308706, -11.342106448632657, -11.506766711052082, -11.63748502425787, -11.73092497991795, -11.784033631677277, -11.794041495157844, -11.758462547958676, -11.675094229655835, -11.537916295668772, -11.347582271857162, -11.11304341148178, -10.842398597024781, -10.54288284088559, -10.220867285380901, -9.881859202744685, -9.530501995128184, -9.170575194599909, -8.80499446314565, -8.435811592668465, -8.064214504988682, -7.690849286474466, -7.329154575590641, -6.989181938595335, -6.674338740212094, -6.387375771709541, -6.130387250901381, -5.904810822146395, -5.711427556348447, -5.550361950956474, -5.4210819299645, -5.322398843911623, -5.252460027376549, -5.209329906626082, -5.191895562559699, -5.199094359006064, -5.229812353930988, -5.282884299437433, -5.357093641765511, -5.451172521292482, -5.563801772532755, -5.693610924137893, -5.839178198896603, -5.999485546176893, -6.1749533446918905, -6.365250576713241, -6.569889636058173, -6.788301707723719, -7.019836767886719, -7.263763583903817, -7.519269714311461, -7.785461508825907, -8.061364108343215, -8.345921444939247, -8.637996241869677, -8.936370013569977, -9.239784069824628, -9.54617325660569, -9.851925873766296, -10.153233381531896, -10.44619829696377, -10.726834193959023, -10.991065703250598, -11.234728512407266, -11.453569365833626, -11.643246064770114, -11.79932746729299, -11.91729348831435, -11.99253509958212, -12.020341526338406, -11.995856076418105, -11.918524015819608, -11.78984726226535, -11.611874295816039, -11.387200158870659, -11.118966456166469, -10.810861354779007, -10.467119584122084, -10.09252243594779, -9.692397764346488, -9.272619985746818, -8.842791447580229, -8.414007867448321, -7.9927786160055945, -7.58496958296014, -7.195824243506355, -6.8299636583249335, -6.491386473582882, -6.183468920933503, -5.908964817516406, -5.670005565957505, -5.468097611837334, -5.301067954476938, -5.1662913287132355, -5.06339368590343, -4.991680225352757, -4.95013539431448, -4.937422887989895, -4.951885649528325, -4.991545870027125, -5.054104988531678, -5.136943692035398, -5.237121915479728, -5.353267571627883, -5.487004990816794, -5.637699540115593, -5.804690479244338, -5.98736067666767, -6.185136609594812, -6.397488363979571, -6.623929634520341, -6.8640177246600915, -7.117353546586385, -7.38358162123136, -7.662128138315135, -7.951813375463027, -8.251819809086625, -8.560979218074547, -8.87772177366964, -9.20007603946898, -9.525668971423869, -9.851725917839833, -10.175070619376626, -10.49212520904823, -10.798910212222856, -11.091044546622935, -11.363745522325134, -11.611828841760337, -11.830272920331069, -12.014522365697761, -12.157840545665747, -12.254452254099245, -12.299795006117034, -12.290519038092453, -12.224487307653401, -12.100775493682335, -11.919671996316271, -11.682677936946787, -11.392507158220019, -11.052116709992072, -10.667467794307786, -10.249416980918834, -9.808098527087479, -9.352763175551246, -8.89177815452293, -8.4326271776906, -7.981910444217588, -7.545344638742498, -7.127762931379201, -6.733114977716838, -6.366669484673502, -6.034391415374654, -5.738534846927349, -5.480516531853708, -5.260944254532192, -5.079616831197608, -4.935524109941106, -4.826846970710178, -4.750957325308656, -4.70442294805911, -4.6851938683944825, -4.6924833176833, -4.724691004332686, -4.780299897896631, -4.857876229075999, -4.956069489718522, -5.073612432818802, -5.209321072518314, -5.3620946841054025, -5.530941138008486, -5.715771871371197, -5.916507442100515, -6.132760594246079, -6.364092400593757, -6.610012262665641, -6.8699779107200545, -7.143395403751551, -7.429619129490908, -7.727951804405137, -8.037644473697473, -8.357896511307382, -8.68785561991056, -9.026617830918926, -9.373050286036905, -9.724041756314113, -10.075593606717838, -10.423523625032173, -10.763400350186938, -11.090543072257676, -11.400021832465658, -11.686657423177877, -11.945021387907056, -12.169436021311645, -12.353974369195814, -12.492460228509463, -12.57846814734822, -12.605528639462083, -12.570306152390364, -12.47215661894242, -12.311523250135087, -12.089925135943796, -11.809957245302575, -11.47529042610405, -11.090671405199439, -10.661922788398563, -10.195943060469833, -9.700976672739598, -9.190700926987523, -8.676552134807087, -8.167630373609004, -7.672129662307604, -7.197337961320841, -6.749637172570283, -6.334503139481125, -5.956505646982177, -5.61930842150587, -5.325669130988256, -5.074479502114936, -4.862975121237278, -4.6910054810912, -4.557880517063618, -4.462366356560629, -4.402685319007517, -4.376515915848748, -4.3809928505479725, -4.412707018588023, -4.467705507470919, -4.54152034583346, -4.634002730964389, -4.746293164474873, -4.877321809125977, -5.026169415787947, -5.192067323440208, -5.374397459171372, -5.57269233817923, -5.786635063770756, -6.016059327362106, -6.260949408478616, -6.521111352137295, -6.796257083635316, -7.086393689709154, -7.391226411141468, -7.710152447523238, -8.042260957253763, -8.386333057540664, -8.740841824399881, -9.103952292655672, -9.473521455940618, -9.84709826669562, -10.221923636169894, -10.594934259892757, -10.964229490908384, -11.32380761796862, -11.665173530328484, -11.980383225548307, -12.262043809493726, -12.503313496335684, -12.697901608550435, -12.84006857691954, -12.92462594052987, -12.946936346773601, -12.902913551348218, -12.789022418256518, -12.601901476398178, -12.331646960013135, -11.987984637992938, -11.587080896526668, -11.14310954765855, -10.668251829287964, -10.172696405169427, -9.664639364912617, -9.150284223982348, -8.633841923698592, -8.117530831236465, -7.601576739626229, -7.089092421935404, -6.605795021703842, -6.16022490431683, -5.756443490740766, -5.397277069620126, -5.084316797277461, -4.817918697713395, -4.597203662606633, -4.42005745131395, -4.2831308309077745, -4.183084522948512, -4.117815993041674, -4.084995885539322, -4.0823382647927655, -4.1076006151525615, -4.158583840968515, -4.233132266589678, -4.3291336363643484, -4.444519114640073, -4.577534007513342, -4.72830182530277, -4.896307991750897, -5.080928074125314, -5.281671956963393, -5.498183842072281, -5.730242248528901, -5.977760012679955, -6.240784288141921, -6.5194965458010525, -6.814212573813382, -7.12535453381525, -7.451947437332835, -7.793358552646696, -8.149256509940123, -8.51874371628088, -8.900356355621208, -9.292064388797817, -9.691271553531896, -10.094815364429103, -10.498967112979567, -10.899431867557901, -11.29134847342318, -11.669289552718963, -12.028263535113997, -12.361190880625577, -12.65784545317771, -12.908972413312696, -13.106352250267278, -13.242800781972637, -13.312169155054395, -13.309343844832616, -13.230246655321805, -13.071834719230907, -12.830853983037333, -12.50391272228022, -12.103382631585484, -11.642752073139667, -11.134418125884503, -10.589686585516922, -10.01877196448906, -9.430797492008248, -8.833795114037006, -8.234705493293069, -7.639533159485056, -7.065524554901114, -6.527108657850594, -6.030569848529395, -5.580684154178877, -5.180719249085869, -4.832434454582659, -4.536080739047, -4.290400717902106, -4.092628653616661, -3.9388290219065185, -3.8257903502211756, -3.7506944313429216, -3.710724223691946, -3.7030656168560054, -3.7249074315904194, -3.7734414198180737, -3.8458622646294187, -3.939367580282471, -4.051570877802729], [1.0, 0.9848771469249452, 0.9730975826471474, 0.9651532309165722, 0.9617570252901997, 0.963904606417799, 0.9727601655196005, 0.9899192304647947, 1.0174647047259775, 1.057966867379151, 1.1149430227324708, 1.192078097761772, 1.2939084534994867, 1.426829887582959, 1.5990977215072504, 1.8208268006251416, 2.1040149031683373, 2.465412055835648, 2.922781261820937, 3.49573286187271, 4.208308411941916, 5.088980683181951, 6.170653661948647, 7.490662549800286, 9.09077376349759, 11.017184935003726, 13.319676765062745, 16.013277922693206, 19.09891690146636, 22.550897700579338, 26.2987607072238, 30.22728269658591, 34.17901791860924, 37.96377819776274, 41.34061632404104, 44.11812871543175, 46.17182900435874, 47.444148037682076, 47.94000011753252, 47.713774612350996, 46.889140761025594, 45.613943439583586, 44.05463346215421, 42.37201395635693, 40.660443799954486, 38.9965470513804, 37.4331847014341, 35.9991779015414, 34.70351752958226, 33.54253091085396, 32.508733317624525, 31.592170937477576, 30.780420873312334, 30.058848526828932, 29.415834904267893, 28.841831398114252, 28.327962708366236, 27.86656712596843, 27.45119653281176, 27.076616401733492, 26.738618905143927, 26.433630643943474, 26.16005009540578, 25.9165303736676, 25.701749830721077, 25.514412056413693, 25.353245878448316, 25.21700536238317, 25.104701810355778, 25.0169179595198, 24.954221182698806, 24.916877282929516, 24.904914058529055, 24.91812130309493, 24.956050805505043, 25.018016349917684, 25.103097771179424, 25.21056131213016, 25.340034671251278, 25.4908023921227, 25.661758497642236, 25.851406490025568, 26.057859350806265, 26.278839540835765, 26.511679000283397, 26.753319148636365, 27.00031088469975, 27.249519007573898, 27.498387658084113, 27.742954277839182, 27.979502196412305, 28.204623473716573, 28.41521890000498, 28.60849799587041, 28.78197901224565, 28.933488930403378, 29.06116346195617, 29.1634470488565, 29.23909286339674, 29.28719706759695, 29.308294314876285, 29.30267143749045, 29.2704165965432, 29.211988779234215, 29.1282177988591, 29.020304294809367, 28.889819732572445, 28.738706403731687, 28.56927742596635, 28.384216743051624, 28.186579124858607, 27.97979016735431, 27.767421643164862, 27.549988846231564, 27.328623964844226, 27.105146003666924, 26.88134098514783, 26.658961949519192, 26.439728954797353, 26.225329076782735, 26.01741640905985, 25.817612062997295, 25.627504167747745, 25.448647870247967, 25.28256533521882, 25.130745745165235, 24.99412039865892, 24.872806946985882, 24.768237352414825, 24.681757965831324, 24.614549030546524, 24.56762468229713, 24.541832949245425, 24.53785575197926, 24.55620890351206, 24.597242109282814, 24.661138967156077, 24.747916967421983, 24.857427492796226, 24.989355818420083, 25.14318370401779, 25.317902475301963, 25.512145595029583, 25.72428742080819, 25.952439495364818, 26.194450546546, 26.44790648731778, 26.710130415765683, 26.978182615094745, 27.24886055362951, 27.518698884814, 27.783969447211756, 28.04068126450581, 28.28464462943248, 28.512415509089394, 28.720885302650096, 28.907253469400995, 29.069153078788577, 29.204650810419388, 29.31224695406003, 29.39087540963718, 29.439903687237575, 29.45913290710802, 29.448797799655384, 29.409566705446597, 29.342541575208664, 29.249271132548284, 29.132487143298317, 28.994216410291685, 28.83595844433886, 28.659409107360958, 28.46646061238972, 28.259201523567526, 28.039916756147385, 27.81108757649294, 27.57539160207847, 27.33570280148888, 27.095091494419716, 26.856824351677158, 26.62273073121497, 26.392328058983196, 26.16728069324852, 25.949242982331707, 25.739798436189886, 25.540459726416568, 25.352668686241643, 25.177796310531367, 25.017142755788374, 24.871937340151675, 24.743338543396654, 24.632434006935068, 24.54005524278408, 24.466504595347423, 24.41326528597613, 24.381739953037894, 24.373067812158077, 24.388124656219745, 24.427522855363627, 24.49161135698815, 24.580475685749427, 24.693937943561245, 24.831556809595078, 24.99262754028009, 25.176181969303123, 25.380988507608706, 25.60555214339906, 25.84844205379741, 26.10728060852878, 26.378647011639956, 26.659090747432575, 26.94513575647864, 27.233280435620514, 27.51999763797092, 27.801734672912943, 28.07491330610003, 28.335929759455993, 28.581154711175, 28.80693329572158, 29.009586364959773, 29.185815703674564, 29.33347062995168, 29.45097200580437, 29.53719340656525, 29.591461120886304, 29.613554150738864, 29.60370421141364, 29.562595731520695, 29.491365852989464, 29.391604431068743, 29.265354034326684, 29.11510994465081, 28.943839659100696, 28.754527139725514, 28.549322507283595, 28.330332272009365, 28.099722973098473, 27.859721178707762, 27.612613485955286, 27.360746520920316, 27.106526938643313, 26.852421423125957, 26.600956687331134, 26.354719473182932, 26.116063160155694, 25.88506098444689, 25.662929637018614, 25.451243176913174, 25.251509246399937, 25.06516907097537, 24.893597459362987, 24.738102803513403, 24.599927078604292, 24.480245843040404, 24.380168238453575, 24.300736989702703, 24.242778974905214, 24.206380352441712, 24.19297602568387, 24.203972358624757, 24.24043197591605, 24.303073762868028, 24.39227286544956, 24.508060690288115, 24.65012490466977, 24.81780943653919, 25.01011447449964, 25.225696467812995, 25.462868126399712, 25.719598420838853, 25.993512582368087, 26.2826143036312, 26.5835531766993, 26.891738206174853, 27.202733293923867, 27.51225729043882, 27.816183994838678, 28.11054215486887, 28.391515466901318, 28.65544257593441, 28.898817075593016, 29.118287508128486, 29.310657364418645, 29.47289632791922, 29.602664086287245, 29.698663993805575, 29.760130939580947, 29.786791192805048, 29.77886240275454, 29.737053598791064, 29.662565190361203, 29.557088966996528, 29.422808098313563, 29.262397134013803, 29.07902200388371, 28.876339363087883, 28.657525441317016, 28.424671311484847, 28.180067679402732, 27.926010131825823, 27.66479913645308, 27.398740041927255, 27.130143077834905, 26.861323354706386, 26.594600864015852, 26.332300478181267, 26.076751950564386, 25.830289915470765, 25.5941637670051, 25.36872969694535, 25.1555465854691, 24.956122670479818, 24.771905356674527, 24.60428121554379, 24.454575985371704, 24.324054571235916, 24.21392104500761, 24.125318645351502, 24.059329777725864, 24.0169760143825, 23.99846514904419, 24.003737275719182, 24.03462321313836, 24.092570126924354, 24.178570436394015, 24.2931618145584, 24.436427188122796, 24.607994737486695, 24.807037896743815, 25.032275353682074, 25.28197104978363, 25.55393418022483, 25.845519193876253, 26.153625793302698, 26.474698934763165, 26.804753152945423, 27.14084441298729, 27.478088805009104, 27.81063191891968, 28.133110026501907, 28.440650081412755, 28.72886971918327, 28.99387725721857, 29.232271694797856, 29.4411427130744, 29.61807067507555, 29.761126625702737, 29.86887229173146, 29.940402746282626, 29.975413186962673, 29.97379114454032, 29.93590532296603, 29.86264907495816, 29.755440402003014, 29.616221954354796, 29.44746103103565, 29.252149579835635, 29.033804197312726, 28.796466128792833, 28.54470126836977, 28.283502767093108, 28.014256682750073, 27.73802543918289, 27.45712770878458, 27.17381834909216, 26.890288402786634, 26.60866509769301, 26.331011846780285, 26.05932824816145, 25.795550085093495, 25.5415493259774, 25.299134124358144, 25.07004881892469, 24.855800310972494, 24.656883605078715, 24.474700716129774, 24.31078582283852, 24.166591480316846, 24.043488620075724, 23.942766550025176, 23.865632954474282, 23.81321389413118, 23.786553806103075, 23.786615503896222, 23.814280177415945, 23.87034739296662, 23.95536020382343, 24.068472446424327, 24.21021882251659, 24.381057676848535, 24.580883653348412, 24.8090276951244, 25.064257044464604, 25.34477524283707, 25.64822213088976, 25.971673848450575, 26.31164283452734, 26.664077827307814, 27.02436386415968, 27.387322281630567, 27.74721071544801, 28.09847907246273, 28.4366746624753, 28.75605326370608, 29.05148393331419, 29.31855782425368, 29.55358818527352, 29.753610360917598, 29.91638179152473, 30.04038201322866, 30.12481265795804, 30.169597453436452, 30.175382223182414, 30.14353488650934, 30.076128075831708, 29.975086907146668, 29.84185287978836, 29.678214356073116, 29.486324916429663, 29.268703359399115, 29.02823370163497, 28.768165177903118, 28.492112241081834, 28.204054562161783, 27.90833703024602, 27.60966975254998, 27.311854257489767, 27.013784473613573, 26.71718262172595, 26.424125418146254, 26.1365947573654, 25.856477712045894, 25.585566533021808, 25.32555864929879, 25.078056668054067, 24.84456837463643, 24.626506732566252, 24.425189883535484, 24.24151878542113, 24.07675552495111, 23.93269731711047, 23.811004267169196, 23.71319860851648, 23.640664702660697, 23.59464903922943, 23.576260235969457, 23.58646903874675, 23.62610832154648, 23.695873086473018, 23.79632046374992, 23.92786971171996, 24.09080221684509, 24.285261094700495, 24.51043752470784, 24.76471366475499, 25.046443671074254, 25.35347599573384, 25.68315338663787, 26.032312887526352, 26.397285837975215, 26.77389787339628, 27.157468925037275, 27.542813219981838, 27.9242392811495, 28.29554992729571, 28.65030027462379, 28.982934650402594, 29.28825763613634, 29.561762830398344, 29.79967703965643, 29.99896027827295, 30.157305768504774, 30.27313994050329, 30.345622432314414, 30.374646089878567, 30.360836967030703, 30.30555432550029, 30.210985169157013, 30.080997613516338, 29.918151058657504, 29.72473975000572, 29.50338134906225, 29.25701693340439, 28.9889109966855, 28.702651448634985, 28.40214961505829, 28.091640237836913, 27.775681474928405, 27.459154648158272, 27.14366800663992, 26.829015735705184, 26.51736054987479, 26.210763678668652, 25.911184866605847, 25.620482373204638, 25.34041297298246, 25.072631955455925, 24.818693125140825, 24.580048801552117, 24.35804981920394, 24.153799207736032, 23.96843072887067, 23.80374788888367, 23.66147455252546, 23.543220245260443, 23.450480153267012, 23.384635123437533, 23.346951663378363, 23.33858194140983, 23.36056378656626, 23.41382068859595, 23.499161797961182, 23.61728192583822, 23.768761544117318, 23.9540667854027, 24.17310095605422, 24.424225558819497, 24.70617191059948, 25.017158173114165, 25.35480230397669, 25.71612205669337, 26.097534980663653, 26.49485842118017, 26.90330951942869, 27.317505212488143, 27.731462233330625, 28.13859711082138, 28.531838204065405, 28.90485790544642, 29.25154716749415, 29.566444400903166, 29.844922353721426, 30.083188111350275, 30.278283096544442, 30.428083069412036, 30.53129812741457, 30.58747270536692, 30.596985575437362, 30.561049847147554, 30.481733045497126, 30.362765868578162, 30.207019025282975, 30.016884035284882, 29.795131148119044, 29.54490934318249, 29.26974632973408, 28.973548546894538, 28.66060116364644, 28.335568078834203, 28.00349192116411, 27.66979070662866, 27.336080520452942, 27.002180933189393, 26.67039364251919, 26.342902179430492, 26.021771908218433, 25.708950026485137, 25.406265565139698, 25.115429388398198, 24.83803419378369, 24.575554512126224, 24.329346707562816, 24.10058204639227, 23.890698655707716, 23.701405132680364, 23.534349968337303, 23.391120301209234, 23.273241917330456, 23.182179250238864, 23.119335380975947, 23.086052038086798, 23.08360959762011, 23.11322708312817, 23.17606216566686, 23.27321116379567, 23.40570904357768, 23.574193430416805, 23.777403167053585, 24.0153774728469, 24.287803514845614, 24.59362644767597, 24.931049413541594, 25.297533542223498, 25.689797951080084, 26.103819745047133, 26.53483401663781, 26.977333845942667, 27.42507030062964, 27.87105243594405, 28.307547294708606, 28.726827061092205, 29.122399314757228, 29.487651960955578, 29.816877484865884, 30.105308964114723, 30.349120068776624, 30.54542506137407, 30.69227879687749, 30.788676722705272, 30.834554878723747, 30.830789897247207, 30.779199003037895, 30.682559041699996, 30.544550250933227, 30.367996771184455, 30.15571740630238, 29.91090449665278, 29.637123919118498, 29.338315087099453, 29.018790950512628, 28.68323799579208, 28.336716245888937, 27.984659260271393, 27.6322685706604, 27.279092354453773, 26.92654634515763, 26.576961637977476, 26.23253648214554, 25.895336280920745, 25.567293591588736, 25.250208125461857, 24.94574674787917, 24.655443478206443, 24.38069948983615, 24.122791381881623, 23.883134162215562, 23.663360374992685, 23.465091230868055, 23.289925826598438, 23.13944114504232, 23.015192055159886, 22.918711312013034, 22.851509556765375, 22.81507531668223, 22.810875005130622, 22.84035292157929, 22.90493125159868, 23.006010066860956, 23.1445802038922, 23.319525189342706, 23.531838122781988, 23.782217065457683, 24.070495414107434, 24.395641900958793, 24.755760593729377, 25.14809089562675, 25.569007545348477, 26.014020617082092, 26.477775520505123, 26.954053000785073, 27.435769138579445, 27.914975350035707, 28.38462520047641, 28.83721846062994, 29.263879557816747, 29.65694204431343, 30.00995231011526, 30.31766958293618, 30.576065928208784, 30.782326249084342, 30.934848286432796, 31.03324261884274, 31.078332662621442, 31.072154671794838, 31.017904804860898, 30.91718696904898, 30.771396049459895, 30.58321011355317, 30.3558393971852, 30.0930263046092, 29.799045408475244, 29.478703449830256, 29.137339338117997, 28.780824151179072, 28.415561135250947, 28.047710241290076, 27.676575568899732, 27.30371005237484, 26.931713063318405, 26.563017833443894, 26.199891454575173, 25.844434878646563, 25.4985829177028, 25.16410424389906, 24.842601389500942, 24.535510746884476, 24.2441721219059, 23.97011491853589, 23.714849814688353, 23.479902225564384, 23.266820986400752, 23.07717835246993, 22.912569999080066, 22.774615021575013, 22.664955935334298, 22.585258675773147, 22.53721259834247, 22.52253047852887, 22.54294851185464, 22.599676129721136, 22.692315306591546, 22.82332806720635, 22.994800527593217, 23.20798035701155, 23.46327677795251, 23.760260566139006, 24.09766405052568, 24.473381113298927, 24.88446718987689, 25.32713926890946, 25.796775892278262, 26.287917155096682, 26.794293709007253, 27.31077243900264, 27.828569830396265, 28.337394060583506, 28.827899205232274, 29.291685238283016, 29.721298031948713, 30.110229356714893, 30.452916881339604, 30.744744172853444, 30.98204069655954, 31.16208181603356, 31.282811478800227, 31.34338757437885, 31.344480781368514, 31.287675096767252, 31.175465388938015, 31.011257397608677, 30.79936773387203, 30.545023880185795, 30.254364190372605, 29.93443788962002, 29.593202303068885, 29.23526652052569, 28.86235425836991, 28.47809915276637, 28.085951739004212, 27.689179451496894, 27.290866623782193, 26.893914488522203, 26.50104117750332, 26.114781721636273, 25.7374880509561, 25.37132899462215, 25.017816385793523, 24.677693430641774, 24.352399768154594, 24.043417308314744, 23.75225125237574, 23.480430092861873, 23.229505613568193, 23.00105288956052, 22.796670287175434, 22.61797946402029, 22.4666253689732, 22.343817220395945, 22.25056776036687, 22.18969734970125, 22.163800593181797, 22.17513002706929, 22.225596119102615, 22.316767268498737, 22.44986980595271, 22.62578799363768, 22.845064025204877, 23.10789802578363, 23.414148051981343, 23.763330091883518, 24.154618065053736, 24.586680641032537, 25.055718546164737, 25.556007783815623, 26.081289294439184, 26.62479762514694, 27.179260929707937, 27.73690096854875, 28.28943310875348, 28.82806632406377, 29.343503194878767, 29.825939908255172, 30.264895381707532, 30.651822991644373, 30.98155727826351, 31.25015159731543, 31.454820516561664, 31.593939815774768, 31.667046486738336, 31.674838733246997, 31.619175971106408, 31.50307882813327, 31.330729144155313, 31.10877259335725, 30.844289251211606, 30.542001447782148, 30.206757607460094, 29.843553089407273, 29.457530187556127, 29.053978130609707, 28.638333082041687, 28.216178140096304, 27.79323387584796, 27.371589797903482, 26.951763466102868, 26.536161363382007, 26.127020113673055, 25.726406481904444, 25.33621737400086, 24.958179836883268, 24.593851058468896, 24.244618367671237, 23.911717696910962, 23.596785711772025, 23.301311650611915, 23.02666073121178, 22.774290254676714, 22.54574960543576, 22.34268025124192, 22.166815743172126, 22.019981715627274, 21.90409588633221, 21.821168056335722, 21.773300110010542, 21.762686015053365, 21.79161182248483, 21.861891770248757, 21.973254144808422, 22.128767366432534, 22.331158626424155, 22.582156190320582, 22.88248939789334, 23.23188866314818, 23.629085474325088, 24.071812393898277, 24.556803058576197, 25.079792179301517, 25.635515541251152, 26.21771000383623, 26.820426183808795, 27.434829760616918, 28.04816748523886, 28.648601948407507, 29.225269014054035, 29.76827781930791, 30.268710774496903, 30.71862356314705, 31.1110451419827, 31.43997774092649, 31.70031276481095, 31.887364961226723, 32.00011777910755, 32.039429722907435, 32.00733071264011, 31.907022083879006, 31.742876587757284, 31.520438390967815, 31.2464230757632, 30.928717639955742, 30.57638049691747, 30.196964659255137, 29.79430348478013, 29.372991456253143, 28.937419220277047, 28.491771052962314, 28.04002485992698, 27.585952176296686, 27.133118166704644, 26.68488162529166, 26.244394975706108, 25.814592003333956, 25.39624837651218, 24.989747719844928, 24.596533102306708, 24.218048553272112, 23.85573906251583, 23.51105058021266, 23.185430016937477, 22.88032524366526, 22.59718509177108, 22.337459353030113, 22.102584142070327, 21.89432323475395, 21.714712392580047, 21.56581501135082, 21.449720566543427, 21.36854461330996, 21.324428786477473, 21.31954080054796, 21.356074449698355, 21.436249607780553, 21.56231222832139, 21.736534344522642, 21.96120944439715, 22.23588896658226, 22.56090936071474, 22.937972895042304, 23.367269783597518, 23.84747818619779, 24.375764208445386, 24.9477819017274, 25.557673263215793, 26.19806823586736, 26.860084708423752, 27.533328515411455, 28.20589343714182, 28.86444271191068, 29.49704222322918, 30.09109391216475, 30.634652374359845, 31.117789758848904, 31.532595768058368, 31.873177657806675, 32.13566023730426, 32.31818586915357, 32.420914469349015, 32.44602350727704, 32.397708005716076, 32.281599511237935, 32.1011249530666, 31.86095608051867, 31.566663903004887, 31.224425865100713, 30.841025846546305, 30.42385416224651, 29.98090756227088, 29.52078923185366, 29.052707807956068, 28.58037532369468, 28.10373985352943, 27.626165932594176, 27.150693827738117, 26.680039537525786, 26.216594792237068, 25.762427053867178, 25.319279516126677, 24.888571104441475, 24.471504079953945, 24.069673600129512, 23.68426029625022, 23.31643625675018, 22.967471838073806, 22.63873566467583, 22.331694629021282, 22.047913891585498, 21.78905688085413, 21.556885293323127, 21.353259093498753, 21.180120312032372, 21.03888682592846, 20.932044603537314, 20.862563324953697, 20.833259311469234, 20.84679552557242, 20.905681570948616, 21.012273692480036, 21.16877477624577, 21.37723434952177, 21.639548580780854, 21.957460279692697, 22.332558897123853, 22.76515861231407, 23.253423642143453, 23.795561862588688, 24.388155680283127, 25.02612188359292, 25.702711642617025, 26.409510509187182, 27.13643841686794, 27.871749680956647, 28.602032998483445, 29.31253739614011, 29.989179132974947, 30.61736344516678, 31.184364294011235, 31.679728085075176, 32.09527366819675, 32.42509233748532, 32.66554783132155, 32.81527633235732, 32.87518646751581, 32.848476243685404, 32.741366759478105, 32.55980040986689, 32.309611195911515, 31.997520166403408, 31.631135417865597, 31.218952094552776, 30.770352388451272, 30.295605539279045, 29.80586783448571, 29.308600329731018, 28.802985199825876, 28.29297680841526, 27.782278580577426, 27.274160367641112, 26.771458447185548, 26.276575523040435, 25.79148072528597, 25.31770961025283, 24.85644516129849]], 'rnn_output': [[[0.29411906003952026, -0.40944865345954895, 0.045228179544210434, 0.1813124716281891, 0.38740968704223633, 0.24021793901920319, 0.22251838445663452, -0.022851064801216125, -0.1513720601797104, -0.29524946212768555], [0.40404966473579407, -0.19112826883792877, 0.14284496009349823, 0.03964334726333618, 0.4542684257030487, 0.081929050385952, 0.11672013252973557, -0.09197048842906952, -0.2879287600517273, -0.2614561915397644], [0.44282254576683044, -0.21873591840267181, 0.02436980791389942, 0.04816889017820358, 0.4995807111263275, 0.02870136685669422, 0.15283864736557007, -0.017139924690127373, -0.2548467516899109, -0.22665928304195404], [0.4310573637485504, -0.23617395758628845, 0.06991604715585709, 0.10133080929517746, 0.51610267162323, -0.06578569859266281, 0.1172279417514801, -0.0004961937083862722, -0.22686490416526794, -0.2827723026275635], [0.4254034161567688, -0.26463598012924194, 0.07486438751220703, 0.12379702180624008, 0.542272686958313, -0.06020404398441315, 0.10597269982099533, 0.017763571813702583, -0.2570112347602844, -0.2758103609085083], [0.4253436028957367, -0.278266966342926, 0.1093435063958168, 0.11069537699222565, 0.5603005290031433, -0.07144829630851746, 0.11391523480415344, 0.023360569030046463, -0.2573340833187103, -0.26868802309036255], [0.4144258499145508, -0.2851599454879761, 0.10837356746196747, 0.10902124643325806, 0.5726714134216309, -0.07841479778289795, 0.1285490095615387, 0.020896857604384422, -0.2591758668422699, -0.2779597043991089], [0.4170612096786499, -0.2843910753726959, 0.11141930520534515, 0.10303245484828949, 0.571719765663147, -0.08480066806077957, 0.1282520890235901, 0.01778149977326393, -0.2545676529407501, -0.28054046630859375], [0.41525906324386597, -0.2836840748786926, 0.1055152490735054, 0.10609657317399979, 0.5708879232406616, -0.08489787578582764, 0.1274559199810028, 0.01855573058128357, -0.25575965642929077, -0.2829310894012451], [0.41713663935661316, -0.28377240896224976, 0.10757330805063248, 0.10580258816480637, 0.569725751876831, -0.08520416915416718, 0.12515927851200104, 0.019126199185848236, -0.2549392879009247, -0.2816765308380127], [0.4159510135650635, -0.2843323349952698, 0.1068788692355156, 0.1070564016699791, 0.5705407857894897, -0.08447820693254471, 0.12566044926643372, 0.019710147753357887, -0.2561226785182953, -0.28186166286468506], [0.41647759079933167, -0.28456518054008484, 0.10832454264163971, 0.10612079501152039, 0.570704460144043, -0.08475843816995621, 0.12575480341911316, 0.01951223984360695, -0.25570276379585266, -0.28140196204185486], [0.41592657566070557, -0.28457558155059814, 0.1077057346701622, 0.10634376853704453, 0.5709818005561829, -0.08474130183458328, 0.12623931467533112, 0.019438082352280617, -0.2559463381767273, -0.28182485699653625], [0.416256308555603, -0.2844822108745575, 0.1079828068614006, 0.10602863878011703, 0.5707818865776062, -0.0849137231707573, 0.12605315446853638, 0.019320497289299965, -0.2556631565093994, -0.2817310690879822], [0.4160836338996887, -0.28445541858673096, 0.10763054341077805, 0.10626839101314545, 0.5707867741584778, -0.08482810854911804, 0.12607470154762268, 0.019384585320949554, -0.25580278038978577, -0.2818448543548584], [0.41622671484947205, -0.28445878624916077, 0.10782159864902496, 0.10617803782224655, 0.5707273483276367, -0.08485299348831177, 0.1259714514017105, 0.019387036561965942, -0.25572291016578674, -0.28174281120300293], [0.4161338806152344, -0.28448233008384705, 0.10771732032299042, 0.1062583476305008, 0.5707797408103943, -0.08481249213218689, 0.12603527307510376, 0.019420156255364418, -0.2557973861694336, -0.28177526593208313], [0.41618603467941284, -0.28448954224586487, 0.10780617594718933, 0.10619468241930008, 0.5707719922065735, -0.08484652638435364, 0.12602493166923523, 0.019408805295825005, -0.2557511329650879, -0.28174692392349243], [0.4161439836025238, -0.28449001908302307, 0.10775406658649445, 0.10622964799404144, 0.5707883238792419, -0.08484213799238205, 0.12604579329490662, 0.01940975897014141, -0.25577500462532043, -0.28178033232688904], [0.4161720871925354, -0.28448882699012756, 0.10778159648180008, 0.10620515793561935, 0.5707764029502869, -0.08485028892755508, 0.1260315328836441, 0.019407903775572777, -0.2557578682899475, -0.28176283836364746], [0.4161541163921356, -0.28448739647865295, 0.10776523500680923, 0.10622440278530121, 0.5707815289497375, -0.08484671264886856, 0.12603402137756348, 0.01940762996673584, -0.25576817989349365, -0.2817775011062622], [0.41616544127464294, -0.2844852805137634, 0.10778197646141052, 0.10621477663516998, 0.5707765817642212, -0.08484505116939545, 0.12602487206459045, 0.019402796402573586, -0.2557637095451355, -0.281769335269928], [0.416159987449646, -0.2844870686531067, 0.10776784271001816, 0.10621750354766846, 0.5707796216011047, -0.08483941853046417, 0.12603415548801422, 0.019408470019698143, -0.2557696998119354, -0.2817671298980713], [0.41616329550743103, -0.28448766469955444, 0.10777446627616882, 0.10621368885040283, 0.5707787871360779, -0.08484595268964767, 0.12603390216827393, 0.019407756626605988, -0.25576329231262207, -0.28176793456077576], [0.4161589741706848, -0.2844844460487366, 0.10777635127305984, 0.10621986538171768, 0.570778489112854, -0.08484553545713425, 0.12602798640727997, 0.019401663914322853, -0.25576531887054443, -0.28177565336227417], [0.4161631762981415, -0.28448355197906494, 0.10777601599693298, 0.1062159314751625, 0.5707764029502869, -0.08483920991420746, 0.12602683901786804, 0.01940249837934971, -0.2557675838470459, -0.2817681133747101], [0.4161613881587982, -0.28448203206062317, 0.1077779158949852, 0.10621678084135056, 0.5707764625549316, -0.0848395898938179, 0.12602700293064117, 0.01940050907433033, -0.2557665705680847, -0.2817704379558563], [0.4161628782749176, -0.2844834625720978, 0.10777270048856735, 0.10621464997529984, 0.5707764029502869, -0.08483770489692688, 0.12603065371513367, 0.019403614103794098, -0.2557673752307892, -0.281766414642334], [0.41616305708885193, -0.28448671102523804, 0.10776785761117935, 0.10621377825737, 0.5707777738571167, -0.08484166115522385, 0.1260361671447754, 0.019409311935305595, -0.25576549768447876, -0.28176525235176086], [0.4161617159843445, -0.2844890356063843, 0.10776790231466293, 0.10621610283851624, 0.5707793831825256, -0.08484743535518646, 0.12603667378425598, 0.01941087655723095, -0.25576353073120117, -0.28176915645599365], [0.4161613881587982, -0.28449001908302307, 0.10776926577091217, 0.10621759295463562, 0.5707801580429077, -0.08484871685504913, 0.12603473663330078, 0.019410988315939903, -0.25576427578926086, -0.28177040815353394], [0.41616159677505493, -0.28449133038520813, 0.10776900500059128, 0.10621703416109085, 0.5707810521125793, -0.0848483294248581, 0.12603574991226196, 0.019412657245993614, -0.25576522946357727, -0.2817687690258026], [0.4161589741706848, -0.2844853699207306, 0.10778308659791946, 0.1062208041548729, 0.57077956199646, -0.08484961837530136, 0.12602479755878448, 0.0194005835801363, -0.2557637095451355, -0.28177836537361145], [0.4161609709262848, -0.2844805419445038, 0.107782743871212, 0.10621878504753113, 0.5707763433456421, -0.08483706414699554, 0.12602047622203827, 0.01939573511481285, -0.25576967000961304, -0.2817724049091339], [0.4161651134490967, -0.2844853103160858, 0.10776766389608383, 0.10621031373739243, 0.5707768797874451, -0.08483287692070007, 0.12603576481342316, 0.01940876804292202, -0.2557699680328369, -0.2817581295967102], [0.4161606729030609, -0.2844851016998291, 0.10777446627616882, 0.10621549934148788, 0.5707780718803406, -0.08484694361686707, 0.12603411078453064, 0.01940467208623886, -0.25576159358024597, -0.2817723751068115], [0.41616091132164, -0.2844831645488739, 0.10777473449707031, 0.10621894896030426, 0.5707765221595764, -0.08484293520450592, 0.1260267049074173, 0.01940103806555271, -0.25576579570770264, -0.28177356719970703], [0.4161636531352997, -0.28448420763015747, 0.10777270048856735, 0.1062154695391655, 0.5707762837409973, -0.08483868837356567, 0.1260291039943695, 0.019405290484428406, -0.2557676434516907, -0.28176602721214294], [0.4161624014377594, -0.2844873070716858, 0.10776948928833008, 0.10621486604213715, 0.5707785487174988, -0.08484212309122086, 0.12603534758090973, 0.01940927468240261, -0.2557658851146698, -0.28176602721214294], [0.41616034507751465, -0.28448471426963806, 0.10777787119150162, 0.10621834546327591, 0.5707781314849854, -0.08484670519828796, 0.12602856755256653, 0.01940223015844822, -0.2557635009288788, -0.281774640083313], [0.41616183519363403, -0.284483402967453, 0.10777529329061508, 0.10621745884418488, 0.5707768201828003, -0.08483961969614029, 0.12602674961090088, 0.01940191723406315, -0.2557678818702698, -0.2817699611186981], [0.4161631166934967, -0.28448450565338135, 0.10777333378791809, 0.10621459037065506, 0.5707769393920898, -0.08483920991420746, 0.12603095173835754, 0.019405238330364227, -0.25576695799827576, -0.2817661166191101], [0.4161608815193176, -0.2844828963279724, 0.1077774316072464, 0.10621725767850876, 0.5707769393920898, -0.0848425105214119, 0.12602819502353668, 0.019400985911488533, -0.25576499104499817, -0.28177234530448914], [0.4161626696586609, -0.2844834327697754, 0.10777305066585541, 0.10621575266122818, 0.5707763433456421, -0.08483855426311493, 0.12602925300598145, 0.019403204321861267, -0.25576746463775635, -0.28176772594451904], [0.4161633849143982, -0.28448688983917236, 0.10776792466640472, 0.10621371865272522, 0.5707778334617615, -0.08484101295471191, 0.12603576481342316, 0.019409744068980217, -0.2557660937309265, -0.281764417886734], [0.4161607027053833, -0.28448641300201416, 0.10777398198843002, 0.1062176376581192, 0.5707786083221436, -0.08484745770692825, 0.12603192031383514, 0.019405722618103027, -0.25576314330101013, -0.28177282214164734], [0.4161617159843445, -0.2844863533973694, 0.10777232050895691, 0.10621753334999084, 0.5707781910896301, -0.08484324812889099, 0.12603026628494263, 0.019405968487262726, -0.2557665705680847, -0.28176987171173096], [0.41616156697273254, -0.28448450565338135, 0.10777744650840759, 0.10621730238199234, 0.5707777142524719, -0.08484318852424622, 0.12602783739566803, 0.01940310001373291, -0.2557656764984131, -0.28177112340927124], [0.4161602556705475, -0.284479558467865, 0.10778402537107468, 0.10621917247772217, 0.5707758069038391, -0.08483981341123581, 0.12602093815803528, 0.019394677132368088, -0.25576674938201904, -0.28177502751350403], [0.41616329550743103, -0.2844785749912262, 0.10777844488620758, 0.1062149703502655, 0.5707739591598511, -0.0848316177725792, 0.12602367997169495, 0.01939677819609642, -0.25576990842819214, -0.28176653385162354], [0.4161636233329773, -0.2844805419445038, 0.10777371376752853, 0.10621287673711777, 0.5707745552062988, -0.08483429253101349, 0.12603020668029785, 0.019401440396904945, -0.25576719641685486, -0.2817647457122803], [0.4161616861820221, -0.28447967767715454, 0.10777710378170013, 0.10621646046638489, 0.570774495601654, -0.08483939617872238, 0.12602683901786804, 0.019398139789700508, -0.2557646632194519, -0.28177177906036377], [0.4161619246006012, -0.2844763994216919, 0.10778176039457321, 0.10621843487024307, 0.570772647857666, -0.08483582735061646, 0.12601947784423828, 0.019392920657992363, -0.25576698780059814, -0.281773179769516], [0.4161631166934967, -0.28447383642196655, 0.1077834963798523, 0.10621684044599533, 0.5707711577415466, -0.08482971042394638, 0.12601745128631592, 0.01939074508845806, -0.2557693123817444, -0.28176960349082947], [0.41616448760032654, -0.28447604179382324, 0.1077762320637703, 0.10621307045221329, 0.5707716345787048, -0.08482732623815536, 0.12602514028549194, 0.019396241754293442, -0.2557696998119354, -0.28176334500312805], [0.4161640405654907, -0.2844797968864441, 0.10777124017477036, 0.10621251165866852, 0.5707734227180481, -0.08483390510082245, 0.12603171169757843, 0.019401783123612404, -0.2557661235332489, -0.2817642390727997], [0.4161628782749176, -0.2844826281070709, 0.1077696830034256, 0.1062152087688446, 0.570775032043457, -0.08484011143445969, 0.12603230774402618, 0.019404329359531403, -0.25576451420783997, -0.2817680537700653], [0.4161614179611206, -0.2844802141189575, 0.10777901858091354, 0.10621927678585052, 0.5707746148109436, -0.08484216779470444, 0.12602344155311584, 0.01939801312983036, -0.2557644546031952, -0.28177449107170105], [0.41616305708885193, -0.28448060154914856, 0.10777567327022552, 0.1062169149518013, 0.5707746148109436, -0.08483463525772095, 0.12602466344833374, 0.019400017336010933, -0.25576916337013245, -0.2817673981189728], [0.41616272926330566, -0.28448012471199036, 0.1077788844704628, 0.10621540248394012, 0.5707748532295227, -0.08483663201332092, 0.12602604925632477, 0.019398996606469154, -0.2557666599750519, -0.28176847100257874], [0.41616225242614746, -0.2844805121421814, 0.10777529329061508, 0.10621557384729385, 0.570775032043457, -0.08483604341745377, 0.12602776288986206, 0.01939958520233631, -0.25576725602149963, -0.2817683517932892], [0.41616344451904297, -0.2844822108745575, 0.10777232050895691, 0.10621421784162521, 0.5707752108573914, -0.08483752608299255, 0.12603050470352173, 0.01940319687128067, -0.2557663917541504, -0.28176626563072205], [0.41616228222846985, -0.28448358178138733, 0.10777218639850616, 0.1062159612774849, 0.5707762241363525, -0.0848410427570343, 0.1260310560464859, 0.019404254853725433, -0.25576522946357727, -0.28176888823509216], [0.41616159677505493, -0.2844821512699127, 0.10777711868286133, 0.10621795058250427, 0.5707759261131287, -0.0848417654633522, 0.1260262280702591, 0.01940053142607212, -0.25576531887054443, -0.2817722260951996], [0.41616111993789673, -0.2844773232936859, 0.10778480768203735, 0.1062193438410759, 0.5707740187644958, -0.08483736962080002, 0.12601833045482635, 0.019392697140574455, -0.25576716661453247, -0.2817745804786682], [0.41616201400756836, -0.2844715416431427, 0.10778968036174774, 0.10621806234121323, 0.5707708597183228, -0.08482898771762848, 0.12601278722286224, 0.0193854421377182, -0.255769819021225, -0.28177276253700256], [0.4161633849143982, -0.2844671308994293, 0.10778988897800446, 0.10621542483568192, 0.5707679390907288, -0.08482182025909424, 0.12601186335086823, 0.019381726160645485, -0.25577104091644287, -0.28176936507225037], [0.4161635637283325, -0.2844623029232025, 0.10779233276844025, 0.10621513426303864, 0.57076495885849, -0.08481864631175995, 0.1260087788105011, 0.01937621459364891, -0.2557702362537384, -0.28177061676979065], [0.4161660075187683, -0.28446295857429504, 0.10778302699327469, 0.10621213912963867, 0.5707636475563049, -0.08481357991695404, 0.12601390480995178, 0.019381070509552956, -0.2557719349861145, -0.28176331520080566], [0.41616737842559814, -0.28446969389915466, 0.10777156800031662, 0.10620938986539841, 0.5707659721374512, -0.08481908589601517, 0.12602604925632477, 0.01939341053366661, -0.2557689845561981, -0.28175821900367737], [0.4161648154258728, -0.2844756245613098, 0.10776941478252411, 0.10621315985918045, 0.570769727230072, -0.08483172208070755, 0.12603001296520233, 0.019399011507630348, -0.2557644248008728, -0.2817649245262146], [0.4161638617515564, -0.28447961807250977, 0.1077696681022644, 0.10621634125709534, 0.5707722902297974, -0.08483704924583435, 0.12602879106998444, 0.019401969388127327, -0.2557649314403534, -0.28176775574684143], [0.4161633253097534, -0.284481942653656, 0.10777250677347183, 0.10621721297502518, 0.570774495601654, -0.0848391205072403, 0.12602795660495758, 0.019403353333473206, -0.25576579570770264, -0.2817682921886444], [0.4161633551120758, -0.28448617458343506, 0.1077684760093689, 0.10621538758277893, 0.5707772374153137, -0.08483985811471939, 0.12603367865085602, 0.019408775493502617, -0.2557668089866638, -0.2817648649215698], [0.41616129875183105, -0.28448596596717834, 0.1077747642993927, 0.1062171533703804, 0.5707783699035645, -0.08484581857919693, 0.12603136897087097, 0.01940552145242691, -0.25576382875442505, -0.2817714512348175], [0.41616150736808777, -0.284485787153244, 0.10777302086353302, 0.1062173843383789, 0.5707781910896301, -0.0848427563905716, 0.12603026628494263, 0.01940513402223587, -0.25576651096343994, -0.2817700505256653], [0.4161618649959564, -0.284484326839447, 0.10777672380208969, 0.10621681064367294, 0.570777416229248, -0.08484256267547607, 0.12602828443050385, 0.0194031223654747, -0.255765825510025, -0.2817704975605011], [0.4161623418331146, -0.2844860255718231, 0.10777077078819275, 0.10621534287929535, 0.5707780718803406, -0.08484027534723282, 0.12603271007537842, 0.019406825304031372, -0.255767285823822, -0.2817665934562683], [0.4161618947982788, -0.28448620438575745, 0.10777334868907928, 0.10621575266122818, 0.5707782506942749, -0.08484455943107605, 0.1260325014591217, 0.019406244158744812, -0.2557644546031952, -0.28176960349082947], [0.4161619246006012, -0.2844882309436798, 0.10776820778846741, 0.10621597617864609, 0.5707790851593018, -0.08484397083520889, 0.12603507936000824, 0.01940968446433544, -0.25576597452163696, -0.2817676365375519], [0.4161621332168579, -0.284490168094635, 0.10776866227388382, 0.10621567815542221, 0.5707800984382629, -0.08484755456447601, 0.12603658437728882, 0.019412001594901085, -0.2557642459869385, -0.2817680537700653], [0.4161607325077057, -0.28449082374572754, 0.10776969790458679, 0.10621759295463562, 0.5707810521125793, -0.08484958857297897, 0.126035675406456, 0.01941140554845333, -0.2557642459869385, -0.28177082538604736], [0.4161613881587982, -0.28449147939682007, 0.10776962339878082, 0.10621694475412369, 0.5707813501358032, -0.08484894037246704, 0.1260356605052948, 0.01941223256289959, -0.25576502084732056, -0.28176939487457275], [0.4161604046821594, -0.28449001908302307, 0.10777368396520615, 0.10621802508831024, 0.5707812309265137, -0.08484961837530136, 0.1260330229997635, 0.01940910331904888, -0.25576454401016235, -0.2817722260951996], [0.4161607027053833, -0.28448811173439026, 0.1077749952673912, 0.10621783137321472, 0.5707801580429077, -0.08484632521867752, 0.12603068351745605, 0.019406430423259735, -0.25576597452163696, -0.28177163004875183], [0.41616174578666687, -0.28448787331581116, 0.1077728196978569, 0.10621591657400131, 0.5707796216011047, -0.08484379947185516, 0.12603257596492767, 0.019407637417316437, -0.2557666003704071, -0.28176844120025635], [0.41616037487983704, -0.2844843864440918, 0.10777931660413742, 0.10621792078018188, 0.5707783102989197, -0.0848451480269432, 0.12602746486663818, 0.019401418045163155, -0.25576481223106384, -0.2817739248275757], [0.4161613881587982, -0.2844814658164978, 0.10777907818555832, 0.10621759295463562, 0.5707762241363525, -0.08483872562646866, 0.1260242909193039, 0.019398408010601997, -0.2557677924633026, -0.2817714810371399], [0.41616278886795044, -0.2844802737236023, 0.10777813196182251, 0.10621526837348938, 0.570775032043457, -0.08483577519655228, 0.12602561712265015, 0.019398892298340797, -0.2557678520679474, -0.2817680239677429], [0.41616249084472656, -0.284480482339859, 0.10777588188648224, 0.10621505975723267, 0.5707749724388123, -0.08483627438545227, 0.12602782249450684, 0.019399764016270638, -0.25576698780059814, -0.2817680537700653], [0.4161625802516937, -0.28448042273521423, 0.10777577757835388, 0.10621558874845505, 0.5707746148109436, -0.08483751863241196, 0.1260274052619934, 0.019399674609303474, -0.25576621294021606, -0.2817690968513489], [0.41616204380989075, -0.28447872400283813, 0.10777889937162399, 0.10621718317270279, 0.5707738995552063, -0.08483728021383286, 0.12602367997169495, 0.01939668133854866, -0.2557663917541504, -0.28177136182785034], [0.41616225242614746, -0.284475713968277, 0.10778283327817917, 0.10621759295463562, 0.5707724690437317, -0.08483373373746872, 0.1260192096233368, 0.019392339512705803, -0.25576773285865784, -0.2817716896533966], [0.41616368293762207, -0.28447556495666504, 0.10777921229600906, 0.10621494054794312, 0.5707718133926392, -0.08482912182807922, 0.12602199614048004, 0.0193941630423069, -0.2557694613933563, -0.28176650404930115], [0.4161645770072937, -0.28447967767715454, 0.10777103900909424, 0.10621210187673569, 0.5707733035087585, -0.08483146876096725, 0.12603101134300232, 0.01940190978348255, -0.2557678520679474, -0.2817623019218445], [0.416162371635437, -0.28448083996772766, 0.10777389258146286, 0.10621549934148788, 0.5707745552062988, -0.08483996242284775, 0.12602992355823517, 0.019401120021939278, -0.2557639181613922, -0.28176987171173096], [0.41616177558898926, -0.2844790518283844, 0.10777808725833893, 0.10621856898069382, 0.5707738995552063, -0.08483889698982239, 0.1260230839252472, 0.019396912306547165, -0.2557659149169922, -0.2817729413509369], [0.4161623418331146, -0.2844754457473755, 0.10778424888849258, 0.1062183603644371, 0.5707722902297974, -0.08483374863862991, 0.12601733207702637, 0.01939178816974163, -0.2557680606842041, -0.2817721664905548], [0.41616395115852356, -0.2844763398170471, 0.10777802020311356, 0.10621439665555954, 0.5707722306251526, -0.08482801914215088, 0.12602320313453674, 0.019395533949136734, -0.2557702958583832, -0.2817647457122803], [0.41616278886795044, -0.2844749987125397, 0.1077817752957344, 0.10621488094329834, 0.5707718729972839, -0.08483266830444336, 0.12602269649505615, 0.019392726942896843, -0.2557663917541504, -0.28176963329315186], [0.4161619544029236, -0.28447094559669495, 0.10778551548719406, 0.10621780157089233, 0.5707697868347168, -0.08483017981052399, 0.1260155737400055, 0.019386127591133118, -0.25576773285865784, -0.28177353739738464], [0.41616424918174744, -0.2844683527946472, 0.10778551548719406, 0.10621576756238937, 0.5707675814628601, -0.08482334017753601, 0.12601348757743835, 0.01938486099243164, -0.2557702660560608, -0.2817685306072235], [0.41616424918174744, -0.28446701169013977, 0.10778556019067764, 0.10621469467878342, 0.570766806602478, -0.08482161909341812, 0.1260146051645279, 0.019384123384952545, -0.255769819021225, -0.28176748752593994], [0.41616398096084595, -0.28446489572525024, 0.10778731107711792, 0.1062152087688446, 0.5707656145095825, -0.08482097834348679, 0.1260126233100891, 0.01938091404736042, -0.2557692229747772, -0.28176936507225037], [0.41616687178611755, -0.2844702899456024, 0.10777277499437332, 0.10621076077222824, 0.570766806602478, -0.0848182886838913, 0.12602370977401733, 0.01939261518418789, -0.25577113032341003, -0.2817588448524475], [0.41616445779800415, -0.2844730019569397, 0.1077764704823494, 0.10621349513530731, 0.5707690119743347, -0.084830641746521, 0.12602514028549194, 0.019394058734178543, -0.2557646334171295, -0.28176698088645935], [0.4161628782749176, -0.28447332978248596, 0.10777796059846878, 0.10621766746044159, 0.570769727230072, -0.08483153581619263, 0.1260203868150711, 0.019391847774386406, -0.25576671957969666, -0.2817710340023041], [0.41616421937942505, -0.28447264432907104, 0.10778140276670456, 0.10621656477451324, 0.5707694292068481, -0.08482886850833893, 0.12601777911186218, 0.019391072914004326, -0.2557683289051056, -0.2817685604095459], [0.41616398096084595, -0.28447386622428894, 0.10777880996465683, 0.10621507465839386, 0.5707704424858093, -0.08482736349105835, 0.1260215938091278, 0.01939321681857109, -0.25576919317245483, -0.28176599740982056], [0.41616350412368774, -0.2844736576080322, 0.10778076946735382, 0.10621502995491028, 0.5707706212997437, -0.08483010530471802, 0.12602153420448303, 0.019391914829611778, -0.25576722621917725, -0.2817685008049011], [0.4161635935306549, -0.2844740152359009, 0.10777811706066132, 0.10621523857116699, 0.5707705616950989, -0.08482929319143295, 0.1260220855474472, 0.01939292810857296, -0.25576815009117126, -0.28176769614219666], [0.4161645174026489, -0.2844763994216919, 0.10777470469474792, 0.10621389746665955, 0.570771336555481, -0.08483047038316727, 0.1260257214307785, 0.019397292286157608, -0.2557676434516907, -0.28176507353782654], [0.4161624014377594, -0.284475177526474, 0.10778066515922546, 0.10621704906225204, 0.5707716345787048, -0.08483465760946274, 0.1260216236114502, 0.019393164664506912, -0.2557657063007355, -0.2817716598510742], [0.41616305708885193, -0.2844736874103546, 0.10778144747018814, 0.10621713846921921, 0.5707706809043884, -0.0848301351070404, 0.1260184496641159, 0.01939096860587597, -0.2557685971260071, -0.2817700505256653], [0.41616350412368774, -0.2844714820384979, 0.10778455436229706, 0.10621605813503265, 0.5707696676254272, -0.08482778817415237, 0.1260167807340622, 0.019388457760214806, -0.255768746137619, -0.2817693054676056], [0.41616353392601013, -0.2844701111316681, 0.10778377950191498, 0.10621538758277893, 0.5707688331604004, -0.08482509851455688, 0.1260169893503189, 0.019387103617191315, -0.25576940178871155, -0.28176844120025635], [0.41616567969322205, -0.2844741940498352, 0.10777333378791809, 0.10621156543493271, 0.570769727230072, -0.08482444286346436, 0.12602607905864716, 0.01939588412642479, -0.25576961040496826, -0.281761109828949], [0.4161640703678131, -0.2844778597354889, 0.10777203738689423, 0.10621327906847, 0.5707719922065735, -0.08483394235372543, 0.12602995336055756, 0.019399890676140785, -0.25576502084732056, -0.28176575899124146], [0.41616180539131165, -0.28447628021240234, 0.10777945816516876, 0.10621865093708038, 0.5707720518112183, -0.08483772724866867, 0.12602166831493378, 0.019393961876630783, -0.2557646930217743, -0.28177401423454285], [0.41616392135620117, -0.2844766676425934, 0.10777713358402252, 0.10621665418148041, 0.5707717537879944, -0.08483096957206726, 0.12602150440216064, 0.01939598098397255, -0.2557692527770996, -0.28176721930503845], [0.41616421937942505, -0.2844794988632202, 0.10777419060468674, 0.10621377825737, 0.5707734823226929, -0.08483259379863739, 0.12602822482585907, 0.019400903955101967, -0.2557677924633026, -0.28176406025886536], [0.41616302728652954, -0.28448307514190674, 0.10777009278535843, 0.10621412843465805, 0.5707756876945496, -0.08483809977769852, 0.12603333592414856, 0.019404850900173187, -0.25576573610305786, -0.2817658483982086], [0.4161626100540161, -0.28448542952537537, 0.1077694296836853, 0.10621554404497147, 0.5707769393920898, -0.0848429948091507, 0.1260336935520172, 0.019407041370868683, -0.2557643949985504, -0.28176820278167725], [0.4161618649959564, -0.2844863533973694, 0.10777122527360916, 0.1062173843383789, 0.5707778334617615, -0.08484487235546112, 0.1260318011045456, 0.01940707117319107, -0.25576475262641907, -0.28177013993263245], [0.41616198420524597, -0.2844873368740082, 0.10777164250612259, 0.10621701925992966, 0.5707786679267883, -0.08484425395727158, 0.1260319948196411, 0.019407911226153374, -0.255765825510025, -0.28176894783973694], [0.41616183519363403, -0.2844885587692261, 0.10777093470096588, 0.1062161773443222, 0.5707796216011047, -0.08484502136707306, 0.12603411078453064, 0.019409408792853355, -0.2557656466960907, -0.28176823258399963], [0.4161604940891266, -0.2844863533973694, 0.10777663439512253, 0.10621807724237442, 0.5707792043685913, -0.08484673500061035, 0.12602971494197845, 0.01940438151359558, -0.25576451420783997, -0.2817732095718384], [0.4161621034145355, -0.2844870090484619, 0.10777124017477036, 0.10621600598096848, 0.5707787275314331, -0.0848417803645134, 0.12603208422660828, 0.019407249987125397, -0.25576749444007874, -0.28176745772361755], [0.41616344451904297, -0.28449252247810364, 0.10776259750127792, 0.10621258616447449, 0.570780873298645, -0.08484505116939545, 0.1260424703359604, 0.019417177885770798, -0.25576555728912354, -0.28176212310791016], [0.4161602258682251, -0.2844942808151245, 0.10776644200086594, 0.1062169298529625, 0.5707830190658569, -0.08485537022352219, 0.12604133784770966, 0.019416090101003647, -0.25576120615005493, -0.28177163004875183], [0.41615939140319824, -0.2844913899898529, 0.10777345299720764, 0.10622061789035797, 0.570781946182251, -0.08485407382249832, 0.12603186070919037, 0.01940946839749813, -0.255763441324234, -0.2817761301994324], [0.416160523891449, -0.28448745608329773, 0.10777854919433594, 0.10621953755617142, 0.5707800388336182, -0.08484645187854767, 0.1260264664888382, 0.019404597580432892, -0.2557668089866638, -0.28177326917648315], [0.4161626696586609, -0.28448984026908875, 0.10776926577091217, 0.10621403157711029, 0.5707805156707764, -0.08484107255935669, 0.12603595852851868, 0.019411375746130943, -0.2557685971260071, -0.28176361322402954], [0.4161601662635803, -0.28448763489723206, 0.10777644068002701, 0.10621647536754608, 0.5707802772521973, -0.08484902232885361, 0.12603314220905304, 0.019405901432037354, -0.25576284527778625, -0.2817731201648712], [0.416159987449646, -0.2844833731651306, 0.10777876526117325, 0.1062193363904953, 0.5707777142524719, -0.08484383672475815, 0.12602511048316956, 0.019399428740143776, -0.2557661235332489, -0.28177517652511597], [0.4161638021469116, -0.28448486328125, 0.10777141898870468, 0.10621415823698044, 0.5707768797874451, -0.08483710885047913, 0.12603074312210083, 0.019406095147132874, -0.2557688057422638, -0.28176403045654297], [0.41616177558898926, -0.2844860255718231, 0.10777273029088974, 0.10621513426303864, 0.5707782506942749, -0.08484349399805069, 0.1260337382555008, 0.019406668841838837, -0.25576457381248474, -0.2817685306072235], [0.4161609709262848, -0.2844851016998291, 0.1077742725610733, 0.10621753334999084, 0.5707778930664062, -0.08484434336423874, 0.1260301023721695, 0.019403740763664246, -0.25576499104499817, -0.28177207708358765], [0.4161624610424042, -0.2844853103160858, 0.10777262598276138, 0.10621623694896698, 0.570777416229248, -0.08484151214361191, 0.12603026628494263, 0.019405528903007507, -0.2557666599750519, -0.2817682921886444], [0.4161621034145355, -0.28448641300201416, 0.1077721118927002, 0.10621588677167892, 0.5707782506942749, -0.08484284579753876, 0.1260325014591217, 0.01940702646970749, -0.25576579570770264, -0.28176817297935486], [0.4161610007286072, -0.28448495268821716, 0.10777601599693298, 0.10621750354766846, 0.5707780122756958, -0.08484438806772232, 0.12602931261062622, 0.019403457641601562, -0.25576502084732056, -0.28177204728126526], [0.4161619544029236, -0.2844844162464142, 0.10777449607849121, 0.10621671378612518, 0.5707773566246033, -0.08484086394309998, 0.1260288953781128, 0.019403547048568726, -0.25576695799827576, -0.281769335269928], [0.4161624014377594, -0.28448486328125, 0.10777357220649719, 0.10621549934148788, 0.570777416229248, -0.08484098315238953, 0.12603087723255157, 0.019404999911785126, -0.255766361951828, -0.28176793456077576], [0.4161622226238251, -0.2844867408275604, 0.10777013748884201, 0.10621525347232819, 0.5707783102989197, -0.08484251797199249, 0.12603415548801422, 0.019407888874411583, -0.25576579570770264, -0.281767338514328], [0.4161624610424042, -0.2844898998737335, 0.10776650160551071, 0.10621488094329834, 0.5707796812057495, -0.08484582602977753, 0.12603794038295746, 0.019412456080317497, -0.25576478242874146, -0.28176650404930115], [0.41616109013557434, -0.28449124097824097, 0.10776841640472412, 0.10621703416109085, 0.5707809925079346, -0.08485041558742523, 0.12603700160980225, 0.019412590190768242, -0.25576338171958923, -0.28177037835121155], [0.41616058349609375, -0.28449052572250366, 0.10777179896831512, 0.10621852427721024, 0.5707810521125793, -0.08485012501478195, 0.12603336572647095, 0.01941014640033245, -0.2557644248008728, -0.2817721664905548], [0.4161624610424042, -0.2844943404197693, 0.10776381939649582, 0.1062149703502655, 0.570782482624054, -0.08484744280576706, 0.12604062259197235, 0.019417667761445045, -0.25576648116111755, -0.2817643880844116], [0.4161607325077057, -0.2844965159893036, 0.1077658087015152, 0.10621590167284012, 0.5707844495773315, -0.08485537767410278, 0.12604303658008575, 0.019418926909565926, -0.2557622194290161, -0.2817692160606384], [0.41615912318229675, -0.2844952344894409, 0.10776951909065247, 0.1062193214893341, 0.570784330368042, -0.084856778383255, 0.12603773176670074, 0.019414681941270828, -0.25576284527778625, -0.2817744016647339], [0.41616091132164, -0.28449511528015137, 0.10776835680007935, 0.10621753334999084, 0.570783793926239, -0.08485240489244461, 0.12603740394115448, 0.019415881484746933, -0.2557653784751892, -0.28176966309547424], [0.41615983843803406, -0.2844933867454529, 0.10777292400598526, 0.10621806234121323, 0.5707836151123047, -0.0848531723022461, 0.12603561580181122, 0.019412605091929436, -0.25576409697532654, -0.2817723751068115], [0.41616106033325195, -0.28449496626853943, 0.10776641219854355, 0.10621588677167892, 0.5707837343215942, -0.08484996110200882, 0.12603995203971863, 0.019416306167840958, -0.25576600432395935, -0.2817673981189728], [0.41615939140319824, -0.2844913899898529, 0.10777588188648224, 0.10621841996908188, 0.5707826018333435, -0.08485428243875504, 0.12603358924388885, 0.019409304484725, -0.2557624876499176, -0.28177523612976074], [0.4161607325077057, -0.2844909131526947, 0.10777033120393753, 0.10621753334999084, 0.5707815289497375, -0.08484683185815811, 0.12603390216827393, 0.01941034011542797, -0.2557671070098877, -0.2817697525024414], [0.4161621034145355, -0.28449204564094543, 0.1077691912651062, 0.10621476173400879, 0.5707817077636719, -0.08484811335802078, 0.12603777647018433, 0.019413720816373825, -0.25576505064964294, -0.28176695108413696], [0.41615980863571167, -0.28449147939682007, 0.10777109861373901, 0.1062176525592804, 0.5707821249961853, -0.08485132455825806, 0.12603619694709778, 0.01941109262406826, -0.2557637095451355, -0.28177234530448914], [0.41616103053092957, -0.2844907343387604, 0.10777129977941513, 0.10621735453605652, 0.5707812309265137, -0.08484894037246704, 0.12603405117988586, 0.01941036246716976, -0.2557651400566101, -0.2817707359790802], [0.41616126894950867, -0.28449106216430664, 0.10777022689580917, 0.10621654987335205, 0.570781409740448, -0.08484794944524765, 0.12603551149368286, 0.01941174827516079, -0.25576549768447876, -0.2817689776420593], [0.41616031527519226, -0.2844892740249634, 0.10777463018894196, 0.10621780157089233, 0.570780873298645, -0.08484913408756256, 0.1260325014591217, 0.019407911226153374, -0.255764365196228, -0.28177255392074585], [0.41616153717041016, -0.2844898998737335, 0.1077699139714241, 0.10621620714664459, 0.5707805752754211, -0.08484536409378052, 0.1260347217321396, 0.019410310313105583, -0.2557666301727295, -0.28176814317703247], [0.4161613881587982, -0.2844898998737335, 0.10777159780263901, 0.10621604323387146, 0.5707807540893555, -0.08484805375337601, 0.1260351687669754, 0.0194102730602026, -0.2557643949985504, -0.28176963329315186], [0.4161606729030609, -0.28448954224586487, 0.10777146369218826, 0.10621736943721771, 0.5707806348800659, -0.08484791964292526, 0.1260339915752411, 0.019409185275435448, -0.25576502084732056, -0.2817710340023041], [0.41616129875183105, -0.28448864817619324, 0.10777302086353302, 0.10621706396341324, 0.5707800388336182, -0.0848468542098999, 0.12603238224983215, 0.019408194348216057, -0.25576528906822205, -0.2817705273628235], [0.41616150736808777, -0.28448930382728577, 0.10777069628238678, 0.10621629655361176, 0.5707802772521973, -0.08484560996294022, 0.12603436410427094, 0.019409796223044395, -0.25576597452163696, -0.2817685604095459], [0.416160523891449, -0.28448688983917236, 0.10777664929628372, 0.10621784627437592, 0.5707794427871704, -0.08484728634357452, 0.12603013217449188, 0.019404970109462738, -0.2557643949985504, -0.28177306056022644], [0.4161624014377594, -0.2844892144203186, 0.10776767879724503, 0.10621516406536102, 0.5707796812057495, -0.08484240621328354, 0.12603552639484406, 0.019410764798521996, -0.2557676434516907, -0.28176555037498474], [0.4161624014377594, -0.2844926416873932, 0.10776551067829132, 0.10621397197246552, 0.5707814693450928, -0.08484875410795212, 0.12604115903377533, 0.01941598579287529, -0.25576382875442505, -0.28176575899124146], [0.41616013646125793, -0.2844940721988678, 0.10776647180318832, 0.10621756315231323, 0.5707829594612122, -0.08485401421785355, 0.12603993713855743, 0.019415434449911118, -0.25576260685920715, -0.2817714512348175], [0.4161604642868042, -0.28449323773384094, 0.10777024179697037, 0.10621865093708038, 0.5707826018333435, -0.08485337346792221, 0.12603545188903809, 0.01941319927573204, -0.25576382875442505, -0.2817724049091339], [0.41616079211235046, -0.28449326753616333, 0.10776989907026291, 0.10621766746044159, 0.5707828402519226, -0.08485046774148941, 0.12603595852851868, 0.019413728266954422, -0.25576555728912354, -0.2817698121070862], [0.41616013646125793, -0.28449150919914246, 0.10777399688959122, 0.10621772706508636, 0.5707824230194092, -0.08485082536935806, 0.12603411078453064, 0.01941034011542797, -0.25576454401016235, -0.28177204728126526], [0.41616079211235046, -0.28449106216430664, 0.10777115076780319, 0.10621671378612518, 0.5707817673683167, -0.08484769612550735, 0.12603504955768585, 0.019410645589232445, -0.25576600432395935, -0.28176966309547424], [0.4161612093448639, -0.2844908833503723, 0.10777099430561066, 0.10621599107980728, 0.570781409740448, -0.08484850823879242, 0.12603583931922913, 0.01941114477813244, -0.25576484203338623, -0.28176945447921753], [0.41616079211235046, -0.2844909727573395, 0.10777009278535843, 0.10621679574251175, 0.570781409740448, -0.08484895527362823, 0.1260358989238739, 0.019411271438002586, -0.25576478242874146, -0.2817701995372772], [0.4161612391471863, -0.2844914197921753, 0.10776962339878082, 0.10621656477451324, 0.570781409740448, -0.08484908938407898, 0.1260361224412918, 0.01941211335361004, -0.25576478242874146, -0.2817695438861847], [0.41615983843803406, -0.2844882607460022, 0.10777664929628372, 0.10621899366378784, 0.5707805156707764, -0.08484965562820435, 0.1260301023721695, 0.01940596103668213, -0.2557641863822937, -0.2817745804786682], [0.41616153717041016, -0.2844875454902649, 0.10777337849140167, 0.1062169149518013, 0.5707794427871704, -0.08484309911727905, 0.12603074312210083, 0.01940663903951645, -0.2557675242424011, -0.2817690372467041], [0.4161624014377594, -0.28448933362960815, 0.10776957869529724, 0.1062142476439476, 0.5707800388336182, -0.08484410494565964, 0.1260363906621933, 0.019410980865359306, -0.25576600432395935, -0.281765878200531], [0.4161608815193176, -0.28449028730392456, 0.10776962339878082, 0.10621616244316101, 0.5707808136940002, -0.08484882116317749, 0.12603695690631866, 0.01941094361245632, -0.25576379895210266, -0.28177011013031006], [0.41616159677505493, -0.28449198603630066, 0.10776664316654205, 0.10621631145477295, 0.5707812905311584, -0.08484907448291779, 0.1260378360748291, 0.019413720816373825, -0.2557646930217743, -0.2817685306072235], [0.4161607027053833, -0.284491628408432, 0.10777100920677185, 0.1062178760766983, 0.5707816481590271, -0.08485157787799835, 0.12603525817394257, 0.01941191963851452, -0.25576359033584595, -0.2817716896533966], [0.41616091132164, -0.28449222445487976, 0.10776932537555695, 0.10621742904186249, 0.5707820057868958, -0.08484912663698196, 0.1260359287261963, 0.019412774592638016, -0.2557656168937683, -0.2817695736885071], [0.416161447763443, -0.28449374437332153, 0.10776776820421219, 0.10621576756238937, 0.5707827806472778, -0.0848502442240715, 0.1260390430688858, 0.019415389746427536, -0.25576478242874146, -0.2817678451538086], [0.4161602556705475, -0.2844941020011902, 0.10776860266923904, 0.10621712356805801, 0.5707833766937256, -0.08485311269760132, 0.12603889405727386, 0.01941480115056038, -0.25576359033584595, -0.28177088499069214], [0.416159063577652, -0.2844892740249634, 0.10777820646762848, 0.10622024536132812, 0.5707814693450928, -0.08485249429941177, 0.12602919340133667, 0.01940573751926422, -0.2557636499404907, -0.2817770540714264], [0.41616079211235046, -0.2844856381416321, 0.10777831077575684, 0.10621852427721024, 0.570779025554657, -0.084842748939991, 0.12602603435516357, 0.019402610138058662, -0.2557681202888489, -0.28177183866500854], [0.41616296768188477, -0.2844870388507843, 0.10777178406715393, 0.10621364414691925, 0.5707789063453674, -0.08483962714672089, 0.12603363394737244, 0.019407933577895164, -0.2557680010795593, -0.2817644476890564], [0.41616055369377136, -0.284485399723053, 0.10777613520622253, 0.1062164157629013, 0.5707786679267883, -0.08484569936990738, 0.12603150308132172, 0.019403785467147827, -0.25576382875442505, -0.28177234530448914], [0.4161613881587982, -0.28448382019996643, 0.10777503997087479, 0.1062174141407013, 0.5707771182060242, -0.08484181761741638, 0.1260279268026352, 0.01940205879509449, -0.2557664215564728, -0.28177136182785034], [0.4161635637283325, -0.2844867408275604, 0.10776855051517487, 0.10621403157711029, 0.5707777142524719, -0.08483986556529999, 0.12603417038917542, 0.01940917782485485, -0.25576722621917725, -0.28176406025886536], [0.4161619246006012, -0.28448987007141113, 0.10776755958795547, 0.10621502995491028, 0.5707799196243286, -0.08484679460525513, 0.1260383129119873, 0.01941225491464138, -0.2557638883590698, -0.2817673683166504], [0.4161601662635803, -0.2844884991645813, 0.10777334868907928, 0.10621872544288635, 0.5707799792289734, -0.0848500207066536, 0.1260322630405426, 0.019407376646995544, -0.25576329231262207, -0.28177404403686523], [0.41616109013557434, -0.28448614478111267, 0.10777610540390015, 0.10621872544288635, 0.5707786679267883, -0.08484476804733276, 0.12602756917476654, 0.019404232501983643, -0.2557664215564728, -0.281772255897522], [0.41616255044937134, -0.284487247467041, 0.1077718585729599, 0.10621526837348938, 0.5707789063453674, -0.08484116941690445, 0.1260325312614441, 0.019408008083701134, -0.2557676434516907, -0.2817660868167877], [0.41616109013557434, -0.2844865620136261, 0.10777483880519867, 0.10621622204780579, 0.5707791447639465, -0.08484531939029694, 0.12603230774402618, 0.019405744969844818, -0.25576457381248474, -0.2817707359790802], [0.4161614179611206, -0.2844862639904022, 0.1077725812792778, 0.1062166690826416, 0.570778489112854, -0.0848434790968895, 0.12603148818016052, 0.01940564066171646, -0.25576603412628174, -0.2817699611186981], [0.4161621034145355, -0.2844862937927246, 0.10777289420366287, 0.10621603578329086, 0.5707781910896301, -0.08484348654747009, 0.12603157758712769, 0.019406437873840332, -0.2557656764984131, -0.28176894783973694], [0.41616207361221313, -0.2844884395599365, 0.10776891559362411, 0.10621554404497147, 0.5707792639732361, -0.0848439410328865, 0.12603525817394257, 0.019409937784075737, -0.2557659447193146, -0.2817671597003937], [0.4161616265773773, -0.28448957204818726, 0.10776994377374649, 0.10621611773967743, 0.5707800984382629, -0.08484768122434616, 0.12603577971458435, 0.01941065303981304, -0.2557641565799713, -0.2817692458629608], [0.4161609411239624, -0.2844897210597992, 0.10777072608470917, 0.10621750354766846, 0.5707805156707764, -0.08484835177659988, 0.12603424489498138, 0.019409893080592155, -0.2557646632194519, -0.28177088499069214], [0.4161611795425415, -0.28448909521102905, 0.10777268558740616, 0.1062174141407013, 0.5707802176475525, -0.08484743535518646, 0.12603257596492767, 0.01940876804292202, -0.2557651996612549, -0.28177064657211304], [0.4161606729030609, -0.2844870984554291, 0.10777594149112701, 0.10621796548366547, 0.57077956199646, -0.08484595268964767, 0.1260298490524292, 0.01940540224313736, -0.2557656168937683, -0.28177201747894287], [0.4161619246006012, -0.28448739647865295, 0.10777229070663452, 0.10621581226587296, 0.5707792043685913, -0.08484260737895966, 0.12603241205215454, 0.01940733939409256, -0.25576701760292053, -0.2817678451538086], [0.41616296768188477, -0.28449198603630066, 0.10776372998952866, 0.1062130555510521, 0.570780873298645, -0.08484514057636261, 0.1260414868593216, 0.019415806978940964, -0.2557656764984131, -0.28176334500312805], [0.4161602854728699, -0.2844926416873932, 0.10776863247156143, 0.10621712356805801, 0.5707821846008301, -0.0848541334271431, 0.12603892385959625, 0.019413653761148453, -0.2557615637779236, -0.28177228569984436], [0.4161594808101654, -0.2844891846179962, 0.10777545720338821, 0.10622065514326096, 0.5707808136940002, -0.08485148102045059, 0.12602940201759338, 0.01940658688545227, -0.2557641863822937, -0.28177618980407715], [0.41616290807724, -0.28449171781539917, 0.10776704549789429, 0.1062152236700058, 0.5707810521125793, -0.08484368771314621, 0.12603622674942017, 0.0194140262901783, -0.2557683289051056, -0.28176403045654297], [0.4161607623100281, -0.28449249267578125, 0.10777075588703156, 0.10621575266122818, 0.570782482624054, -0.08485127985477448, 0.12603862583637238, 0.01941339299082756, -0.25576311349868774, -0.28176969289779663], [0.4161589741706848, -0.28448885679244995, 0.10777612030506134, 0.10621973127126694, 0.5707811713218689, -0.08485099673271179, 0.12603066861629486, 0.01940567046403885, -0.2557639479637146, -0.28177621960639954], [0.41616275906562805, -0.2844903767108917, 0.1077679991722107, 0.10621513426303864, 0.570780336856842, -0.0848434790968895, 0.1260351687669754, 0.01941194199025631, -0.25576791167259216, -0.28176525235176086], [0.41616126894950867, -0.284491628408432, 0.1077696830034256, 0.10621543973684311, 0.5707816481590271, -0.08484958112239838, 0.12603822350502014, 0.01941312476992607, -0.2557637095451355, -0.28176867961883545], [0.4161600172519684, -0.28449103236198425, 0.10777093470096588, 0.10621801018714905, 0.5707816481590271, -0.08485078811645508, 0.12603524327278137, 0.01941041462123394, -0.2557640075683594, -0.28177252411842346], [0.4161617159843445, -0.28449174761772156, 0.1077687218785286, 0.1062164455652237, 0.570781409740448, -0.08484833687543869, 0.12603604793548584, 0.019412819296121597, -0.25576555728912354, -0.28176844120025635], [0.4161621630191803, -0.2844964861869812, 0.10776147991418839, 0.10621435195207596, 0.5707836151123047, -0.08485052734613419, 0.1260444074869156, 0.01942085660994053, -0.255764901638031, -0.28176432847976685], [0.41616007685661316, -0.28449851274490356, 0.10776428878307343, 0.1062169149518013, 0.5707855820655823, -0.08485884219408035, 0.12604449689388275, 0.019420916214585304, -0.2557612657546997, -0.28177085518836975], [0.41615957021713257, -0.28449884057044983, 0.10776519030332565, 0.10621887445449829, 0.5707860589027405, -0.08485893905162811, 0.1260414719581604, 0.019419999793171883, -0.2557629942893982, -0.28177234530448914], [0.4161611497402191, -0.28450214862823486, 0.10776050388813019, 0.1062161922454834, 0.5707873106002808, -0.08485778421163559, 0.12604646384716034, 0.01942606270313263, -0.2557642459869385, -0.28176650404930115], [0.416157990694046, -0.28449973464012146, 0.10777078568935394, 0.10621985048055649, 0.5707877278327942, -0.0848635882139206, 0.12604062259197235, 0.019418904557824135, -0.2557608485221863, -0.28177621960639954], [0.41615983843803406, -0.2845001816749573, 0.10776463150978088, 0.10621790587902069, 0.5707871913909912, -0.08485627919435501, 0.12604206800460815, 0.01942111738026142, -0.25576576590538025, -0.2817695140838623], [0.41616010665893555, -0.2844999134540558, 0.10776744037866592, 0.10621653497219086, 0.5707871913909912, -0.08485903590917587, 0.12604309618473053, 0.019421184435486794, -0.25576287508010864, -0.281770259141922], [0.4161584675312042, -0.28449827432632446, 0.10776890069246292, 0.10621893405914307, 0.5707867741584778, -0.08485888689756393, 0.1260402649641037, 0.01941758021712303, -0.25576329231262207, -0.2817739248275757], [0.41615933179855347, -0.2844943404197693, 0.10777431726455688, 0.1062190979719162, 0.5707844495773315, -0.08485546708106995, 0.12603409588336945, 0.019412076100707054, -0.2557641863822937, -0.2817745804786682], [0.4161611795425415, -0.28449565172195435, 0.107766292989254, 0.1062157079577446, 0.5707842111587524, -0.08484957367181778, 0.12603986263275146, 0.019417207688093185, -0.255766898393631, -0.28176650404930115], [0.41615915298461914, -0.28449198603630066, 0.1077764555811882, 0.10621821135282516, 0.5707831382751465, -0.08485493063926697, 0.126034215092659, 0.019409677013754845, -0.2557622492313385, -0.2817753255367279], [0.4161592721939087, -0.2844872772693634, 0.10777799040079117, 0.1062198057770729, 0.5707804560661316, -0.084847092628479, 0.12602737545967102, 0.019403234124183655, -0.2557665705680847, -0.28177517652511597], [0.4161619544029236, -0.28448420763015747, 0.1077788844704628, 0.10621632635593414, 0.5707778334617615, -0.08484064042568207, 0.1260264366865158, 0.019401872530579567, -0.25576770305633545, -0.28176969289779663], [0.41616135835647583, -0.284482479095459, 0.10777787119150162, 0.10621599107980728, 0.5707769393920898, -0.08483897149562836, 0.1260276436805725, 0.019400449469685555, -0.25576719641685486, -0.28176984190940857], [0.4161631166934967, -0.28448447585105896, 0.10777075588703156, 0.10621361434459686, 0.5707768201828003, -0.08483821898698807, 0.12603293359279633, 0.019405461847782135, -0.2557671070098877, -0.28176525235176086], [0.41616326570510864, -0.2844897508621216, 0.10776309669017792, 0.10621295124292374, 0.570779025554657, -0.08484388142824173, 0.12604080140590668, 0.01941409334540367, -0.25576478242874146, -0.28176364302635193], [0.41616135835647583, -0.28449296951293945, 0.10776445269584656, 0.10621638596057892, 0.570781409740448, -0.08485256135463715, 0.12604080140590668, 0.019415970891714096, -0.25576192140579224, -0.2817695438861847], [0.4161606431007385, -0.2844940721988678, 0.10776694118976593, 0.10621875524520874, 0.5707826018333435, -0.0848538875579834, 0.12603759765625, 0.01941545680165291, -0.25576335191726685, -0.28177157044410706], [0.41616180539131165, -0.2844977378845215, 0.1077626571059227, 0.10621626675128937, 0.5707844495773315, -0.08485276997089386, 0.12604261934757233, 0.019421378150582314, -0.25576508045196533, -0.28176605701446533], [0.41615960001945496, -0.28449809551239014, 0.10776788741350174, 0.1062178760766983, 0.5707859396934509, -0.08485868573188782, 0.12604178488254547, 0.01941918022930622, -0.2557620704174042, -0.2817719876766205], [0.416159451007843, -0.2844976782798767, 0.1077675148844719, 0.10621853917837143, 0.5707858204841614, -0.08485668152570724, 0.12603992223739624, 0.019417772069573402, -0.25576409697532654, -0.2817719876766205], [0.4161604344844818, -0.28449761867523193, 0.10776758939027786, 0.10621701925992966, 0.5707855224609375, -0.0848555862903595, 0.12604045867919922, 0.019418613985180855, -0.2557642459869385, -0.28176987171173096], [0.4161582291126251, -0.2844926416873932, 0.10777738690376282, 0.1062202900648117, 0.5707839727401733, -0.0848560705780983, 0.12603223323822021, 0.019409185275435448, -0.25576311349868774, -0.28177741169929504], [0.4161597788333893, -0.2844875454902649, 0.1077793687582016, 0.10621930658817291, 0.5707806944847107, -0.08484625071287155, 0.12602657079696655, 0.01940334588289261, -0.2557673752307892, -0.28177404403686523], [0.41616153717041016, -0.28448450565338135, 0.10777903348207474, 0.10621599107980728, 0.5707784295082092, -0.08484043180942535, 0.12602728605270386, 0.01940196193754673, -0.25576794147491455, -0.2817695736885071], [0.41616225242614746, -0.28448542952537537, 0.10777217149734497, 0.10621386766433716, 0.5707780718803406, -0.08483941853046417, 0.1260332316160202, 0.019405663013458252, -0.255767285823822, -0.2817661166191101], [0.41616174578666687, -0.2844855487346649, 0.10777262598276138, 0.10621526837348938, 0.570777952671051, -0.0848439633846283, 0.1260329931974411, 0.0194055438041687, -0.25576433539390564, -0.2817697525024414], [0.416161447763443, -0.28448501229286194, 0.10777316987514496, 0.10621733218431473, 0.5707774758338928, -0.0848437026143074, 0.1260300576686859, 0.019404463469982147, -0.2557653486728668, -0.28177109360694885], [0.4161626100540161, -0.28448623418807983, 0.1077713742852211, 0.10621603578329086, 0.5707778334617615, -0.0848420187830925, 0.12603165209293365, 0.019407115876674652, -0.2557664215564728, -0.2817675471305847], [0.41616153717041016, -0.2844865024089813, 0.10777337849140167, 0.10621660947799683, 0.5707785487174988, -0.08484432101249695, 0.12603189051151276, 0.019406452775001526, -0.2557651698589325, -0.2817697823047638], [0.4161618649959564, -0.2844877243041992, 0.10777054727077484, 0.10621602088212967, 0.570779025554657, -0.08484382182359695, 0.1260336935520172, 0.0194083359092474, -0.25576597452163696, -0.28176820278167725], [0.4161621332168579, -0.2844897508621216, 0.10776844620704651, 0.10621532797813416, 0.5707799792289734, -0.08484607189893723, 0.1260366290807724, 0.019411547109484673, -0.25576499104499817, -0.2817673981189728], [0.4161612391471863, -0.28449130058288574, 0.10776813328266144, 0.10621653497219086, 0.5707811117172241, -0.08484935015439987, 0.1260373890399933, 0.019412709400057793, -0.25576409697532654, -0.28176939487457275], [0.41615983843803406, -0.2844879925251007, 0.10777692496776581, 0.10621961206197739, 0.5707802176475525, -0.08485033363103867, 0.126029372215271, 0.019405528903007507, -0.2557637095451355, -0.28177547454833984], [0.4161619544029236, -0.284488320350647, 0.10777144879102707, 0.10621665418148041, 0.5707796216011047, -0.08484256267547607, 0.12603183090686798, 0.019408350810408592, -0.2557681202888489, -0.2817675471305847], [0.4161616861820221, -0.284488320350647, 0.10777336359024048, 0.10621542483568192, 0.5707799196243286, -0.08484562486410141, 0.12603391706943512, 0.019408484920859337, -0.25576502084732056, -0.2817687690258026], [0.41616201400756836, -0.2844924330711365, 0.10776346921920776, 0.10621438175439835, 0.5707814693450928, -0.08484617620706558, 0.12604115903377533, 0.019415412098169327, -0.2557658553123474, -0.28176507353782654], [0.4161608815193176, -0.2844928801059723, 0.10776888579130173, 0.10621665418148041, 0.5707821249961853, -0.08485393971204758, 0.12603861093521118, 0.019414115697145462, -0.2557617425918579, -0.2817714214324951], [0.41615957021713257, -0.28449100255966187, 0.10777232050895691, 0.10621996223926544, 0.5707817077636719, -0.08485179394483566, 0.12603257596492767, 0.019409721717238426, -0.2557644248008728, -0.2817744016647339], [0.416161447763443, -0.2844897210597992, 0.10777386277914047, 0.10621748864650726, 0.5707807540893555, -0.08484682440757751, 0.12603147327899933, 0.019408999010920525, -0.2557663917541504, -0.2817699611186981], [0.41616153717041016, -0.2844913601875305, 0.10776906460523605, 0.10621526837348938, 0.5707816481590271, -0.08484595268964767, 0.1260373294353485, 0.019412649795413017, -0.255766361951828, -0.2817666530609131], [0.41616183519363403, -0.28449511528015137, 0.1077633947134018, 0.10621397197246552, 0.5707831382751465, -0.08485051989555359, 0.12604373693466187, 0.01941836066544056, -0.25576406717300415, -0.28176572918891907], [0.41615793108940125, -0.2844889461994171, 0.10777977108955383, 0.10622142255306244, 0.5707815289497375, -0.08485669642686844, 0.1260291337966919, 0.01940470188856125, -0.2557607889175415, -0.28178107738494873], [0.4161614775657654, -0.2844873070716858, 0.10777352750301361, 0.10621847957372665, 0.5707793235778809, -0.08484185487031937, 0.12602780759334564, 0.01940569281578064, -0.2557695209980011, -0.2817695438861847], [0.4161611795425415, -0.2844826281070709, 0.10778392106294632, 0.10621713846921921, 0.5707775950431824, -0.08484257012605667, 0.12602432072162628, 0.019399182870984077, -0.2557657063007355, -0.2817726731300354], [0.41616010665893555, -0.28447744250297546, 0.10778495669364929, 0.10621852427721024, 0.5707749724388123, -0.08483564108610153, 0.12601956725120544, 0.019391624256968498, -0.2557685673236847, -0.2817741930484772], [0.41616401076316833, -0.2844759523868561, 0.10778031498193741, 0.10621362924575806, 0.5707722902297974, -0.08482911437749863, 0.1260221302509308, 0.019393865019083023, -0.2557697296142578, -0.28176599740982056], [0.4161616861820221, -0.2844713628292084, 0.1077871024608612, 0.10621675103902817, 0.5707705616950989, -0.08483142405748367, 0.12601689994335175, 0.01938663423061371, -0.25576668977737427, -0.28177347779273987], [0.41616374254226685, -0.2844694256782532, 0.10778340697288513, 0.10621561855077744, 0.5707682371139526, -0.08482389152050018, 0.12601545453071594, 0.019385941326618195, -0.25577032566070557, -0.2817685306072235], [0.41616490483283997, -0.2844693064689636, 0.10778212547302246, 0.10621361434459686, 0.5707675814628601, -0.08482331782579422, 0.1260180026292801, 0.019387952983379364, -0.25576919317245483, -0.28176578879356384], [0.41616255044937134, -0.28446510434150696, 0.10779012739658356, 0.1062173992395401, 0.570766270160675, -0.08482491225004196, 0.12601085007190704, 0.019379617646336555, -0.2557676136493683, -0.28177371621131897], [0.4161645770072937, -0.2844618558883667, 0.1077895313501358, 0.10621604323387146, 0.5707637071609497, -0.08481636643409729, 0.12600736320018768, 0.019376862794160843, -0.2557716965675354, -0.2817690670490265], [0.4161660373210907, -0.28446149826049805, 0.1077868714928627, 0.10621296614408493, 0.5707628726959229, -0.08481359481811523, 0.12601099908351898, 0.01937909610569477, -0.2557714879512787, -0.2817644476890564], [0.41616466641426086, -0.28446003794670105, 0.10778900235891342, 0.10621447116136551, 0.5707623958587646, -0.08481589704751968, 0.1260097771883011, 0.019376132637262344, -0.25576937198638916, -0.28176864981651306], [0.4161659777164459, -0.2844604253768921, 0.10778489708900452, 0.10621365904808044, 0.5707617998123169, -0.08481330424547195, 0.12601083517074585, 0.019378097727894783, -0.2557709813117981, -0.2817654609680176], [0.4161665737628937, -0.2844628691673279, 0.1077815517783165, 0.1062125712633133, 0.5707626938819885, -0.08481539785861969, 0.12601493299007416, 0.01938267983496189, -0.2557697892189026, -0.2817634344100952], [0.4161655306816101, -0.2844655513763428, 0.107779860496521, 0.10621374845504761, 0.570764422416687, -0.08481982350349426, 0.12601739168167114, 0.01938547194004059, -0.25576841831207275, -0.281765341758728], [0.41616523265838623, -0.28446757793426514, 0.10777968168258667, 0.10621467977762222, 0.5707656741142273, -0.08482269942760468, 0.12601765990257263, 0.019387148320674896, -0.2557681202888489, -0.28176647424697876], [0.41616523265838623, -0.28447026014328003, 0.10777755826711655, 0.10621451586484909, 0.5707672238349915, -0.08482420444488525, 0.12602011859416962, 0.01939067803323269, -0.2557685077190399, -0.28176525235176086], [0.4161641299724579, -0.28447097539901733, 0.10778050869703293, 0.10621563345193863, 0.5707683563232422, -0.08482756465673447, 0.12601929903030396, 0.019389985129237175, -0.255767285823822, -0.281768262386322], [0.4161640703678131, -0.28447166085243225, 0.10777969658374786, 0.10621566325426102, 0.5707689523696899, -0.08482679724693298, 0.1260194182395935, 0.019390476867556572, -0.2557685375213623, -0.2817675471305847], [0.41616490483283997, -0.28447431325912476, 0.10777586698532104, 0.10621374845504761, 0.5707700252532959, -0.08482756465673447, 0.12602393329143524, 0.019395072013139725, -0.25576841831207275, -0.2817643880844116], [0.4161628484725952, -0.28447362780570984, 0.10778097808361053, 0.10621635615825653, 0.5707706212997437, -0.08483229577541351, 0.12602099776268005, 0.019391736015677452, -0.2557660639286041, -0.2817706763744354], [0.41616466641426086, -0.28447696566581726, 0.10777250677347183, 0.10621414333581924, 0.5707715153694153, -0.0848289430141449, 0.12602610886096954, 0.019398177042603493, -0.25576916337013245, -0.28176382184028625], [0.41616326570510864, -0.2844772934913635, 0.10777805745601654, 0.1062154546380043, 0.5707724690437317, -0.08483570069074631, 0.12602512538433075, 0.019397001713514328, -0.2557651698589325, -0.28176915645599365], [0.41616225242614746, -0.28447669744491577, 0.107778400182724, 0.10621750354766846, 0.5707725286483765, -0.08483400195837021, 0.1260223388671875, 0.01939472183585167, -0.2557673752307892, -0.2817706763744354], [0.416164755821228, -0.2844795882701874, 0.10777270048856735, 0.10621364414691925, 0.570773184299469, -0.08483198285102844, 0.12602798640727997, 0.01940116472542286, -0.25576844811439514, -0.2817634642124176], [0.41616302728652954, -0.28448259830474854, 0.10777126997709274, 0.10621445626020432, 0.5707754492759705, -0.08483855426311493, 0.126032292842865, 0.01940435916185379, -0.2557653486728668, -0.28176647424697876], [0.41616201400756836, -0.2844834625720978, 0.10777295380830765, 0.10621675103902817, 0.5707762241363525, -0.08484206348657608, 0.12603013217449188, 0.019403427839279175, -0.25576475262641907, -0.2817703187465668], [0.41616278886795044, -0.2844851315021515, 0.10777083039283752, 0.1062161773443222, 0.5707769393920898, -0.08484106510877609, 0.12603119015693665, 0.019406259059906006, -0.2557663917541504, -0.2817676067352295], [0.41616198420524597, -0.2844858467578888, 0.10777314007282257, 0.10621659457683563, 0.5707778930664062, -0.08484353870153427, 0.12603135406970978, 0.01940617710351944, -0.2557651996612549, -0.2817693054676056], [0.4161612391471863, -0.2844848930835724, 0.10777541249990463, 0.10621759295463562, 0.5707778334617615, -0.08484326303005219, 0.1260291188955307, 0.01940363645553589, -0.25576573610305786, -0.2817712724208832], [0.4161626994609833, -0.28448641300201416, 0.1077708750963211, 0.10621523857116699, 0.5707780718803406, -0.08484096080064774, 0.12603260576725006, 0.019407309591770172, -0.2557670474052429, -0.28176650404930115], [0.4161612391471863, -0.28448548913002014, 0.1077752485871315, 0.10621675103902817, 0.5707782506942749, -0.08484488725662231, 0.12603075802326202, 0.01940470188856125, -0.2557644546031952, -0.2817712724208832], [0.4161607325077057, -0.2844824492931366, 0.10777895897626877, 0.1062186136841774, 0.5707768201828003, -0.08484203368425369, 0.12602505087852478, 0.01939934678375721, -0.2557661533355713, -0.28177350759506226], [0.4161638021469116, -0.2844850718975067, 0.10776988416910172, 0.10621385276317596, 0.5707768797874451, -0.0848366841673851, 0.12603221833705902, 0.019406825304031372, -0.2557687759399414, -0.28176337480545044], [0.4161621332168579, -0.2844870984554291, 0.10777066648006439, 0.10621459037065506, 0.5707785487174988, -0.08484448492527008, 0.12603570520877838, 0.01940864883363247, -0.25576403737068176, -0.2817677855491638], [0.4161614775657654, -0.28448912501335144, 0.10776766389608383, 0.1062164306640625, 0.5707796216011047, -0.08484655618667603, 0.126036137342453, 0.019410422071814537, -0.2557646632194519, -0.28176915645599365], [0.4161621928215027, -0.28449130058288574, 0.10776706039905548, 0.10621605813503265, 0.5707805752754211, -0.08484853059053421, 0.12603725492954254, 0.019413594156503677, -0.2557643949985504, -0.28176790475845337], [0.4161604642868042, -0.2844913601875305, 0.10777077078819275, 0.10621819645166397, 0.5707815289497375, -0.08485107123851776, 0.1260351985692978, 0.01941167376935482, -0.25576382875442505, -0.2817717492580414], [0.4161611497402191, -0.28449195623397827, 0.10776971280574799, 0.10621719807386398, 0.5707817673683167, -0.08484888076782227, 0.1260356456041336, 0.01941247098147869, -0.25576552748680115, -0.28176936507225037], [0.41616132855415344, -0.2844933569431305, 0.1077679842710495, 0.1062159463763237, 0.5707826018333435, -0.08484990149736404, 0.12603868544101715, 0.01941487565636635, -0.255764901638031, -0.2817680835723877], [0.4161604940891266, -0.28449392318725586, 0.10776840150356293, 0.10621685534715652, 0.5707831978797913, -0.08485261350870132, 0.12603889405727386, 0.01941477134823799, -0.2557637095451355, -0.28177040815353394], [0.416159987449646, -0.284492164850235, 0.10777224600315094, 0.10621850937604904, 0.570782482624054, -0.08485259860754013, 0.12603455781936646, 0.019411204382777214, -0.2557639181613922, -0.281773179769516], [0.41616109013557434, -0.2844921350479126, 0.10776995867490768, 0.10621704906225204, 0.5707821249961853, -0.08484870195388794, 0.12603545188903809, 0.01941247098147869, -0.25576603412628174, -0.2817692160606384], [0.41616010665893555, -0.28448936343193054, 0.10777630656957626, 0.10621803253889084, 0.5707812309265137, -0.08484982699155807, 0.12603168189525604, 0.019407443702220917, -0.25576427578926086, -0.28177326917648315], [0.4161602854728699, -0.28448614478111267, 0.10777746140956879, 0.10621833056211472, 0.5707793831825256, -0.08484460413455963, 0.12602801620960236, 0.019403189420700073, -0.2557666599750519, -0.28177276253700256], [0.4161619544029236, -0.28448426723480225, 0.1077769547700882, 0.10621597617864609, 0.5707777738571167, -0.0848405659198761, 0.12602822482585907, 0.019402677193284035, -0.255767285823822, -0.2817692458629608], [0.41616111993789673, -0.2844814658164978, 0.10777969658374786, 0.10621688514947891, 0.5707764029502869, -0.08484003692865372, 0.1260257512331009, 0.019398638978600502, -0.255766361951828, -0.2817718982696533], [0.41616085171699524, -0.2844752073287964, 0.10778731107711792, 0.10621874034404755, 0.5707731246948242, -0.08483599871397018, 0.12601669132709503, 0.01938926987349987, -0.2557671070098877, -0.281775563955307], [0.41616493463516235, -0.28447768092155457, 0.10777339339256287, 0.10621272027492523, 0.5707724094390869, -0.08482635766267776, 0.12602601945400238, 0.019398437812924385, -0.25577157735824585, -0.2817613482475281], [0.4161633849143982, -0.28447914123535156, 0.1077757328748703, 0.10621321946382523, 0.5707736015319824, -0.08483617007732391, 0.12602953612804413, 0.019399816170334816, -0.25576475262641907, -0.28176695108413696], [0.41616174578666687, -0.2844790816307068, 0.10777527838945389, 0.10621722787618637, 0.5707738399505615, -0.08483762294054031, 0.12602616846561432, 0.019397784024477005, -0.255765825510025, -0.28177136182785034], [0.41616326570510864, -0.2844780683517456, 0.10777835547924042, 0.10621669888496399, 0.5707728862762451, -0.08483556658029556, 0.12602271139621735, 0.019396815448999405, -0.25576695799827576, -0.28176963329315186], [0.4161630868911743, -0.2844788730144501, 0.10777632147073746, 0.10621590167284012, 0.5707736015319824, -0.08483361452817917, 0.1260252594947815, 0.019398527219891548, -0.25576815009117126, -0.2817673087120056], [0.4161626696586609, -0.2844780683517456, 0.10777938365936279, 0.10621591657400131, 0.5707735419273376, -0.08483544737100601, 0.1260242909193039, 0.019396405667066574, -0.25576651096343994, -0.28176963329315186], [0.4161621928215027, -0.28447580337524414, 0.10778123140335083, 0.10621704906225204, 0.5707725286483765, -0.08483357727527618, 0.12602092325687408, 0.01939287595450878, -0.25576749444007874, -0.2817712426185608], [0.41616469621658325, -0.2844787538051605, 0.10777261108160019, 0.10621320456266403, 0.5707727670669556, -0.08483023941516876, 0.12602774798870087, 0.019400106742978096, -0.25576916337013245, -0.281762957572937], [0.4161628484725952, -0.2844800055027008, 0.10777503997087479, 0.10621486604213715, 0.5707741379737854, -0.08483774960041046, 0.12602895498275757, 0.019400404766201973, -0.255764901638031, -0.28176844120025635], [0.41616368293762207, -0.2844851016998291, 0.10776543617248535, 0.10621421784162521, 0.5707761645317078, -0.0848381295800209, 0.12603507936000824, 0.01940823160111904, -0.2557668089866638, -0.2817640006542206], [0.4161617159843445, -0.2844846844673157, 0.10777483880519867, 0.10621735453605652, 0.5707770586013794, -0.08484625071287155, 0.12603023648262024, 0.019404664635658264, -0.2557627260684967, -0.2817722260951996], [0.41616085171699524, -0.28448286652565, 0.10777698457241058, 0.10621949285268784, 0.5707767009735107, -0.0848415419459343, 0.12602511048316956, 0.0194005835801363, -0.2557668089866638, -0.2817729115486145], [0.41616347432136536, -0.28448373079299927, 0.10777431726455688, 0.1062149852514267, 0.5707764625549316, -0.0848373994231224, 0.1260288953781128, 0.019404038786888123, -0.2557681202888489, -0.2817656993865967], [0.41616153717041016, -0.28448349237442017, 0.1077757328748703, 0.1062159463763237, 0.5707771182060242, -0.0848410576581955, 0.1260301023721695, 0.019402706995606422, -0.2557655870914459, -0.2817697525024414], [0.41616103053092957, -0.2844799757003784, 0.10778085887432098, 0.10621804744005203, 0.5707753300666809, -0.08484021574258804, 0.12602341175079346, 0.019396360963582993, -0.255765825510025, -0.2817738652229309], [0.4161635935306549, -0.28448107838630676, 0.10777345299720764, 0.10621477663516998, 0.5707747340202332, -0.08483383804559708, 0.12602747976779938, 0.01940132863819599, -0.25576913356781006, -0.28176531195640564], [0.41616326570510864, -0.2844834625720978, 0.10777205228805542, 0.10621385276317596, 0.570776104927063, -0.0848388820886612, 0.12603244185447693, 0.01940499246120453, -0.2557656764984131, -0.281765878200531], [0.41616183519363403, -0.2844851016998291, 0.10777086019515991, 0.10621610283851624, 0.5707772374153137, -0.0848427265882492, 0.12603279948234558, 0.01940573751926422, -0.25576484203338623, -0.2817692458629608], [0.4161626696586609, -0.2844872772693634, 0.10776890069246292, 0.10621579736471176, 0.5707780718803406, -0.08484365791082382, 0.1260339766740799, 0.019409021362662315, -0.2557654082775116, -0.28176748752593994], [0.4161616861820221, -0.2844886779785156, 0.1077701523900032, 0.10621675103902817, 0.5707793831825256, -0.08484657108783722, 0.12603439390659332, 0.01940987817943096, -0.25576460361480713, -0.2817692458629608], [0.41616129875183105, -0.28448936343193054, 0.1077708899974823, 0.10621719807386398, 0.5707801580429077, -0.08484715968370438, 0.12603402137756348, 0.019409773871302605, -0.25576502084732056, -0.28176993131637573], [0.41616183519363403, -0.2844911217689514, 0.10776831209659576, 0.10621597617864609, 0.5707809925079346, -0.08484721183776855, 0.12603676319122314, 0.019412672147154808, -0.255765438079834, -0.28176766633987427], [0.41616055369377136, -0.2844904959201813, 0.10777221620082855, 0.10621745884418488, 0.5707812905311584, -0.0848502442240715, 0.1260347068309784, 0.01941024325788021, -0.25576382875442505, -0.2817717492580414], [0.41616085171699524, -0.2844899594783783, 0.10777167230844498, 0.10621754825115204, 0.570780873298645, -0.08484771102666855, 0.12603344023227692, 0.019409483298659325, -0.2557656168937683, -0.28177064657211304], [0.4161611795425415, -0.2844889163970947, 0.10777352750301361, 0.1062169149518013, 0.570780336856842, -0.08484700322151184, 0.12603262066841125, 0.019408388063311577, -0.2557653784751892, -0.28177040815353394], [0.4161612391471863, -0.2844890356063843, 0.1077716276049614, 0.10621647536754608, 0.5707802772521973, -0.08484574407339096, 0.12603390216827393, 0.01940898410975933, -0.2557659447193146, -0.2817692458629608], [0.4161609709262848, -0.2844875752925873, 0.10777463018894196, 0.10621701925992966, 0.5707796812057495, -0.0848466232419014, 0.12603165209293365, 0.01940646767616272, -0.25576484203338623, -0.2817714512348175], [0.41616299748420715, -0.28449246287345886, 0.10776232928037643, 0.10621367394924164, 0.5707810521125793, -0.0848442018032074, 0.12604103982448578, 0.019416358321905136, -0.2557670474052429, -0.2817627191543579], [0.41615986824035645, -0.2844906747341156, 0.10777417570352554, 0.10621801018714905, 0.5707815289497375, -0.08485451340675354, 0.1260349303483963, 0.019409960135817528, -0.25576087832450867, -0.2817748188972473], [0.4161599576473236, -0.2844884991645813, 0.10777372866868973, 0.10621986538171768, 0.570780336856842, -0.08484727144241333, 0.1260296255350113, 0.019406326115131378, -0.25576645135879517, -0.28177347779273987], [0.41616207361221313, -0.2844865620136261, 0.10777675360441208, 0.10621659457683563, 0.5707789659500122, -0.08484356850385666, 0.12602892518043518, 0.019405439496040344, -0.25576668977737427, -0.28176942467689514], [0.4161611497402191, -0.2844863533973694, 0.10777398198843002, 0.10621614754199982, 0.5707791447639465, -0.08484228700399399, 0.1260318011045456, 0.01940559595823288, -0.2557668089866638, -0.2817689776420593], [0.4161621034145355, -0.28448688983917236, 0.10777202248573303, 0.10621492564678192, 0.5707787275314331, -0.08484338968992233, 0.12603355944156647, 0.019407056272029877, -0.25576555728912354, -0.2817681133747101], [0.4161619544029236, -0.2844890058040619, 0.10776772350072861, 0.10621528327465057, 0.57077956199646, -0.08484522998332977, 0.12603658437728882, 0.019410794600844383, -0.2557651698589325, -0.28176748752593994], [0.41616079211235046, -0.2844877243041992, 0.10777411609888077, 0.10621799528598785, 0.5707793831825256, -0.08484876900911331, 0.12603163719177246, 0.019406862556934357, -0.2557634711265564, -0.28177300095558167], [0.41616174578666687, -0.28448858857154846, 0.10777018219232559, 0.10621701925992966, 0.57077956199646, -0.0848441794514656, 0.12603291869163513, 0.01940913312137127, -0.255766898393631, -0.2817683815956116], [0.4161624312400818, -0.2844911515712738, 0.1077679693698883, 0.10621476173400879, 0.5707808136940002, -0.08484651148319244, 0.12603795528411865, 0.019413482397794724, -0.2557651698589325, -0.2817660868167877], [0.4161592721939087, -0.2844879925251007, 0.10777691006660461, 0.1062193214893341, 0.5707805156707764, -0.08485092967748642, 0.12603074312210083, 0.01940542459487915, -0.2557629942893982, -0.2817760109901428], [0.41616231203079224, -0.2844892144203186, 0.10776897519826889, 0.10621607303619385, 0.5707798004150391, -0.08484289050102234, 0.12603366374969482, 0.019409945234656334, -0.2557680308818817, -0.2817665934562683], [0.4161626696586609, -0.2844928205013275, 0.10776549577713013, 0.10621361434459686, 0.5707816481590271, -0.08484774827957153, 0.12604118883609772, 0.019416432827711105, -0.2557646334171295, -0.2817646563053131], [0.4161595106124878, -0.284492552280426, 0.10777013748884201, 0.10621824115514755, 0.5707826018333435, -0.08485426008701324, 0.12603749334812164, 0.019412396475672722, -0.25576215982437134, -0.28177371621131897], [0.4161604642868042, -0.28449052572250366, 0.1077728196978569, 0.10621900856494904, 0.5707812309265137, -0.0848502516746521, 0.12603192031383514, 0.019409267231822014, -0.25576502084732056, -0.2817729711532593], [0.41616156697273254, -0.28449058532714844, 0.10777132958173752, 0.10621669888496399, 0.5707811117172241, -0.08484648168087006, 0.1260339468717575, 0.019411010667681694, -0.25576654076576233, -0.2817683517932892], [0.4161621034145355, -0.28449466824531555, 0.1077638640999794, 0.10621395707130432, 0.5707829594612122, -0.08484824746847153, 0.12604272365570068, 0.019418032839894295, -0.25576549768447876, -0.28176435828208923], [0.41616010665893555, -0.2844955623149872, 0.1077670007944107, 0.1062166839838028, 0.5707840919494629, -0.08485623449087143, 0.12604168057441711, 0.019416887313127518, -0.25576165318489075, -0.2817715108394623], [0.41616007685661316, -0.2844957709312439, 0.10776656121015549, 0.10621843487024307, 0.5707840323448181, -0.0848550945520401, 0.12603893876075745, 0.01941658928990364, -0.25576382875442505, -0.281771719455719], [0.4161604046821594, -0.2844947278499603, 0.10777060687541962, 0.10621827095746994, 0.570783793926239, -0.08485425263643265, 0.12603643536567688, 0.019414883106946945, -0.25576406717300415, -0.281771719455719], [0.4161596894264221, -0.2844927906990051, 0.10777324438095093, 0.10621865093708038, 0.5707833170890808, -0.08485187590122223, 0.12603425979614258, 0.019411420449614525, -0.25576508045196533, -0.28177258372306824], [0.41616111993789673, -0.28449276089668274, 0.10777021199464798, 0.10621611773967743, 0.5707827806472778, -0.08484873920679092, 0.12603668868541718, 0.019412923604249954, -0.25576603412628174, -0.2817685306072235], [0.4161599278450012, -0.2844902575016022, 0.1077747493982315, 0.10621753334999084, 0.5707817673683167, -0.08485068380832672, 0.12603354454040527, 0.019408663734793663, -0.255763977766037, -0.28177306056022644], [0.4161612391471863, -0.2844904363155365, 0.1077699139714241, 0.1062164455652237, 0.5707810521125793, -0.08484639972448349, 0.12603488564491272, 0.0194105114787817, -0.2557664215564728, -0.2817688286304474], [0.41616082191467285, -0.28448861837387085, 0.1077747642993927, 0.10621704906225204, 0.570780336856842, -0.08484836667776108, 0.12603232264518738, 0.01940765231847763, -0.2557642459869385, -0.28177177906036377], [0.41616010665893555, -0.2844852805137634, 0.10777800530195236, 0.10621882975101471, 0.5707787871360779, -0.08484494686126709, 0.12602722644805908, 0.01940223015844822, -0.25576597452163696, -0.28177380561828613], [0.4161619544029236, -0.28448307514190674, 0.10777805745601654, 0.10621659457683563, 0.5707769393920898, -0.08483944088220596, 0.1260262280702591, 0.01940097101032734, -0.2557676434516907, -0.2817697525024414], [0.4161606431007385, -0.28447747230529785, 0.10778607428073883, 0.10621828585863113, 0.5707746148109436, -0.08483802527189255, 0.12601958215236664, 0.019392317160964012, -0.2557666003704071, -0.2817748188972473], [0.4161626994609833, -0.2844747006893158, 0.10778255015611649, 0.10621602088212967, 0.5707720518112183, -0.08482924103736877, 0.12601904571056366, 0.019391020759940147, -0.25577011704444885, -0.2817690968513489], [0.41616377234458923, -0.2844734489917755, 0.10778168588876724, 0.10621395707130432, 0.570770800113678, -0.08482840657234192, 0.12602096796035767, 0.019391482695937157, -0.2557685375213623, -0.2817671597003937], [0.41616371273994446, -0.28447479009628296, 0.10777654498815536, 0.10621397197246552, 0.5707709789276123, -0.08482902497053146, 0.12602445483207703, 0.019394319504499435, -0.2557680904865265, -0.28176626563072205], [0.4161648154258728, -0.28447917103767395, 0.10776980221271515, 0.10621269047260284, 0.5707724690437317, -0.08483239263296127, 0.12603065371513367, 0.019401872530579567, -0.255766898393631, -0.2817632257938385], [0.4161634147167206, -0.28448355197906494, 0.10776782780885696, 0.10621462017297745, 0.5707752108573914, -0.08483990281820297, 0.1260339915752411, 0.019406631588935852, -0.25576454401016235, -0.2817661166191101], [0.4161634147167206, -0.2844896912574768, 0.10776225477457047, 0.10621485114097595, 0.570778489112854, -0.08484447002410889, 0.12603938579559326, 0.019414346665143967, -0.2557646632194519, -0.28176450729370117], [0.41616091132164, -0.2844904959201813, 0.10777037590742111, 0.10621839016675949, 0.5707804560661316, -0.08485198765993118, 0.1260351836681366, 0.01941153220832348, -0.25576215982437134, -0.2817723751068115], [0.4161611497402191, -0.28449180722236633, 0.10776841640472412, 0.10621815174818039, 0.5707814693450928, -0.08484850823879242, 0.1260351985692978, 0.01941271498799324, -0.2557659149169922, -0.28176945447921753], [0.4161614775657654, -0.284492552280426, 0.10777021199464798, 0.1062164157629013, 0.5707821846008301, -0.08484987914562225, 0.12603677809238434, 0.019413601607084274, -0.2557646930217743, -0.2817687392234802], [0.416159063577652, -0.2844887971878052, 0.10777752846479416, 0.10621953755617142, 0.5707813501358032, -0.08485071361064911, 0.1260303109884262, 0.019405722618103027, -0.25576406717300415, -0.28177574276924133], [0.4161618649959564, -0.28448837995529175, 0.10777220129966736, 0.10621623694896698, 0.5707798600196838, -0.08484309166669846, 0.12603196501731873, 0.019407844170928, -0.2557678520679474, -0.28176793456077576], [0.41616183519363403, -0.2844889163970947, 0.10777158290147781, 0.1062149703502655, 0.5707800984382629, -0.08484555035829544, 0.12603522837162018, 0.019409706816077232, -0.25576522946357727, -0.28176790475845337], [0.41616109013557434, -0.28449010848999023, 0.10776901990175247, 0.10621613264083862, 0.5707806348800659, -0.08484748005867004, 0.12603659927845, 0.019410839304327965, -0.2557647228240967, -0.2817693054676056], [0.4161609411239624, -0.2844890356063843, 0.10777271538972855, 0.10621753334999084, 0.5707801580429077, -0.08484891057014465, 0.12603294849395752, 0.01940852217376232, -0.25576409697532654, -0.2817719280719757], [0.4161611497402191, -0.2844885587692261, 0.10777238011360168, 0.10621757805347443, 0.5707799196243286, -0.08484599739313126, 0.1260320097208023, 0.01940813474357128, -0.25576603412628174, -0.2817703187465668], [0.4161609411239624, -0.28448623418807983, 0.10777716338634491, 0.1062176525592804, 0.570779025554657, -0.08484534174203873, 0.12602904438972473, 0.019404388964176178, -0.255765438079834, -0.2817719876766205], [0.4161616563796997, -0.28448596596717834, 0.10777361690998077, 0.10621623694896698, 0.5707785487174988, -0.08484148234128952, 0.1260307878255844, 0.019405268132686615, -0.255767285823822, -0.2817685902118683], [0.4161611497402191, -0.28448307514190674, 0.10777925699949265, 0.10621701925992966, 0.570777177810669, -0.08484282344579697, 0.1260269731283188, 0.019400576129555702, -0.2557651996612549, -0.2817723751068115], [0.41616159677505493, -0.2844812273979187, 0.10777757316827774, 0.10621707886457443, 0.5707758665084839, -0.084837906062603, 0.12602542340755463, 0.019398966804146767, -0.25576770305633545, -0.2817705273628235], [0.4161631166934967, -0.2844812572002411, 0.10777583718299866, 0.10621476173400879, 0.5707752108573914, -0.0848364382982254, 0.12602762877941132, 0.019400889053940773, -0.2557673454284668, -0.2817671000957489], [0.41616180539131165, -0.2844802439212799, 0.1077776625752449, 0.10621637105941772, 0.570775032043457, -0.08483830094337463, 0.1260264366865158, 0.019398661330342293, -0.25576603412628174, -0.28177058696746826], [0.4161626994609833, -0.2844799757003784, 0.10777615010738373, 0.1062159612774849, 0.5707743763923645, -0.08483617007732391, 0.12602598965168, 0.019398974254727364, -0.25576722621917725, -0.2817687690258026], [0.4161626994609833, -0.2844795286655426, 0.10777720808982849, 0.1062159314751625, 0.5707741975784302, -0.08483639359474182, 0.12602561712265015, 0.01939859427511692, -0.25576674938201904, -0.2817690372467041], [0.4161626696586609, -0.28447964787483215, 0.10777638107538223, 0.1062159314751625, 0.570774257183075, -0.08483584970235825, 0.12602604925632477, 0.019398780539631844, -0.2557671368122101, -0.2817686200141907], [0.4161626696586609, -0.2844793200492859, 0.10777734220027924, 0.1062159463763237, 0.5707740783691406, -0.08483616262674332, 0.12602552771568298, 0.019398221746087074, -0.25576674938201904, -0.2817690968513489], [0.41616272926330566, -0.28447937965393066, 0.10777648538351059, 0.10621587187051773, 0.5707740187644958, -0.08483550697565079, 0.12602581083774567, 0.019398504868149757, -0.25576716661453247, -0.2817685604095459], [0.41616255044937134, -0.2844783663749695, 0.10777876526117325, 0.10621631145477295, 0.5707736015319824, -0.08483583480119705, 0.12602411210536957, 0.019396696239709854, -0.25576668977737427, -0.28176993131637573], [0.4161618947982788, -0.2844749093055725, 0.10778379440307617, 0.10621777176856995, 0.5707721710205078, -0.08483380824327469, 0.126018688082695, 0.019391072914004326, -0.2557673156261444, -0.2817726731300354], [0.41616392135620117, -0.28447476029396057, 0.10777915269136429, 0.10621486604213715, 0.5707712769508362, -0.0848279818892479, 0.12602123618125916, 0.019393306225538254, -0.25576984882354736, -0.28176623582839966], [0.416163831949234, -0.2844756245613098, 0.10777802020311356, 0.10621389746665955, 0.5707715749740601, -0.08483061194419861, 0.12602455914020538, 0.019395191222429276, -0.2557674050331116, -0.281766414642334], [0.4161624014377594, -0.28447407484054565, 0.1077810674905777, 0.10621657967567444, 0.5707710981369019, -0.08483265340328217, 0.12602084875106812, 0.019391460344195366, -0.25576654076576233, -0.28177133202552795], [0.41616347432136536, -0.28447237610816956, 0.10778194665908813, 0.1062164306640625, 0.5707697868347168, -0.08482882380485535, 0.12601785361766815, 0.01938980631530285, -0.2557685375213623, -0.2817695736885071], [0.4161648750305176, -0.28447484970092773, 0.10777576267719269, 0.1062135249376297, 0.5707705616950989, -0.08482685685157776, 0.12602399289608002, 0.019395533949136734, -0.25576937198638916, -0.28176358342170715], [0.41616252064704895, -0.2844730019569397, 0.10778331756591797, 0.1062164157629013, 0.5707706212997437, -0.08483271300792694, 0.12601996958255768, 0.01939023844897747, -0.2557656466960907, -0.28177183866500854], [0.4161628186702728, -0.2844700813293457, 0.10778467357158661, 0.10621759295463562, 0.5707688331604004, -0.08482726663351059, 0.12601463496685028, 0.019385911524295807, -0.2557690739631653, -0.28177157044410706], [0.41616424918174744, -0.2844671905040741, 0.10778746008872986, 0.10621572285890579, 0.5707669854164124, -0.08482278138399124, 0.12601238489151, 0.019383393228054047, -0.25576990842819214, -0.28176891803741455], [0.41616392135620117, -0.28446486592292786, 0.10778794437646866, 0.10621534287929535, 0.5707658529281616, -0.08481983840465546, 0.12601187825202942, 0.019380757585167885, -0.2557702958583832, -0.2817687690258026], [0.4161653220653534, -0.2844647765159607, 0.10778430849313736, 0.10621332377195358, 0.57076495885849, -0.08481768518686295, 0.12601438164710999, 0.019382411614060402, -0.2557704448699951, -0.2817654609680176], [0.4161652624607086, -0.28446584939956665, 0.10778164118528366, 0.10621324926614761, 0.5707651376724243, -0.08481986820697784, 0.12601689994335175, 0.01938474178314209, -0.2557690143585205, -0.28176558017730713], [0.4161640405654907, -0.2844639718532562, 0.10778678208589554, 0.10621614754199982, 0.5707646012306213, -0.0848221629858017, 0.12601183354854584, 0.019380437210202217, -0.2557678818702698, -0.28177082538604736], [0.41616687178611755, -0.28446897864341736, 0.10777416080236435, 0.10621213912963867, 0.5707658529281616, -0.08481749147176743, 0.12602084875106812, 0.01939087174832821, -0.25577157735824585, -0.2817598879337311], [0.4161640703678131, -0.2844688892364502, 0.1077834963798523, 0.10621508955955505, 0.5707672238349915, -0.08482813835144043, 0.12601836025714874, 0.019387468695640564, -0.25576522946357727, -0.2817697823047638], [0.41616353392601013, -0.28446856141090393, 0.10778156667947769, 0.1062171533703804, 0.5707672238349915, -0.08482423424720764, 0.12601545453071594, 0.019385889172554016, -0.25576940178871155, -0.2817695736885071], [0.41616523265838623, -0.2844679057598114, 0.10778423398733139, 0.1062147468328476, 0.5707665681838989, -0.0848228856921196, 0.12601493299007416, 0.019386030733585358, -0.25576913356781006, -0.2817668318748474], [0.4161648452281952, -0.2844708263874054, 0.10777729749679565, 0.10621355473995209, 0.5707681775093079, -0.08482258021831512, 0.12602151930332184, 0.01939103566110134, -0.2557697892189026, -0.28176379203796387], [0.41616374254226685, -0.2844698429107666, 0.10778343677520752, 0.10621534287929535, 0.5707681179046631, -0.08482837677001953, 0.12601816654205322, 0.01938749849796295, -0.25576627254486084, -0.28177008032798767], [0.4161642789840698, -0.2844710052013397, 0.10777805745601654, 0.10621534287929535, 0.5707682967185974, -0.08482475578784943, 0.12601938843727112, 0.019390134140849113, -0.2557695806026459, -0.28176653385162354], [0.416164368391037, -0.2844705879688263, 0.10778257995843887, 0.10621513426303864, 0.5707682967185974, -0.08482732623815536, 0.12601810693740845, 0.019388994202017784, -0.2557674050331116, -0.281768262386322], [0.41616424918174744, -0.2844727039337158, 0.10777678340673447, 0.10621467977762222, 0.5707694292068481, -0.084825798869133, 0.12602196633815765, 0.019392548128962517, -0.255769282579422, -0.2817654609680176], [0.41616445779800415, -0.2844741940498352, 0.10777775198221207, 0.10621414333581924, 0.5707702040672302, -0.0848299190402031, 0.12602348625659943, 0.019394230097532272, -0.2557668089866638, -0.28176647424697876], [0.41616368293762207, -0.28447669744491577, 0.10777396708726883, 0.10621507465839386, 0.5707716345787048, -0.08483157306909561, 0.1260260045528412, 0.019397322088479996, -0.2557673752307892, -0.2817665636539459], [0.4161640703678131, -0.28447937965393066, 0.10777299106121063, 0.10621463507413864, 0.5707730054855347, -0.08483488857746124, 0.12602819502353668, 0.019400710240006447, -0.25576627254486084, -0.2817661166191101], [0.41616296768188477, -0.28448188304901123, 0.10777171701192856, 0.10621573776006699, 0.5707748532295227, -0.08483812212944031, 0.1260300725698471, 0.01940319687128067, -0.2557659447193146, -0.28176745772361755], [0.4161624312400818, -0.28448250889778137, 0.1077745109796524, 0.10621675103902817, 0.5707756280899048, -0.08484052121639252, 0.1260284185409546, 0.019402379170060158, -0.2557654082775116, -0.281769722700119], [0.4161626696586609, -0.2844841182231903, 0.10777199268341064, 0.10621608793735504, 0.5707765817642212, -0.08483956009149551, 0.12603040039539337, 0.019404835999011993, -0.2557668089866638, -0.28176748752593994], [0.4161611497402191, -0.2844812273979187, 0.10778062045574188, 0.10621809214353561, 0.5707759857177734, -0.08484198898077011, 0.12602461874485016, 0.019398460164666176, -0.2557649612426758, -0.28177353739738464], [0.4161638617515564, -0.28448551893234253, 0.10776680707931519, 0.10621371865272522, 0.5707768797874451, -0.08483552187681198, 0.1260339617729187, 0.019408104941248894, -0.2557694613933563, -0.2817620635032654], [0.41616228222846985, -0.28448694944381714, 0.10777179896831512, 0.10621466487646103, 0.5707784295082092, -0.08484605699777603, 0.12603528797626495, 0.019408440217375755, -0.25576287508010864, -0.28176867961883545], [0.4161601662635803, -0.28448572754859924, 0.10777389258146286, 0.10621914267539978, 0.5707784295082092, -0.0848461166024208, 0.12602968513965607, 0.019404083490371704, -0.25576475262641907, -0.2817738652229309], [0.41616231203079224, -0.2844841182231903, 0.10777653008699417, 0.10621731728315353, 0.5707770586013794, -0.08484157919883728, 0.1260266751050949, 0.019402876496315002, -0.25576677918434143, -0.28177013993263245], [0.4161624312400818, -0.28448566794395447, 0.10777197778224945, 0.10621528327465057, 0.570777952671051, -0.08483972400426865, 0.1260320097208023, 0.019406475126743317, -0.2557675242424011, -0.28176626563072205], [0.4161609709262848, -0.2844833433628082, 0.10777880996465683, 0.10621712356805801, 0.5707773566246033, -0.08484375476837158, 0.1260279417037964, 0.019400985911488533, -0.2557643949985504, -0.2817728817462921], [0.4161614179611206, -0.2844808101654053, 0.10777835547924042, 0.10621772706508636, 0.5707756876945496, -0.08483842760324478, 0.12602435052394867, 0.019398080185055733, -0.2557675540447235, -0.2817716598510742], [0.41616296768188477, -0.28447940945625305, 0.10777895897626877, 0.10621564835309982, 0.5707743763923645, -0.0848354920744896, 0.1260242909193039, 0.019397851079702377, -0.25576770305633545, -0.2817685604095459], [0.41616228222846985, -0.2844786047935486, 0.10777844488620758, 0.10621585696935654, 0.5707740783691406, -0.0848349779844284, 0.12602487206459045, 0.019396919757127762, -0.2557674050331116, -0.2817692160606384], [0.4161626696586609, -0.28447720408439636, 0.10777965188026428, 0.1062159314751625, 0.5707730054855347, -0.08483435213565826, 0.12602315843105316, 0.01939507946372032, -0.2557671070098877, -0.28176984190940857], [0.41616374254226685, -0.28447893261909485, 0.1077738031744957, 0.10621435195207596, 0.5707732439041138, -0.08483260124921799, 0.12602722644805908, 0.019399458542466164, -0.25576820969581604, -0.28176552057266235], [0.41616249084472656, -0.28447818756103516, 0.10777871310710907, 0.10621613264083862, 0.5707734227180481, -0.08483706414699554, 0.12602484226226807, 0.01939685270190239, -0.2557653784751892, -0.28177058696746826], [0.4161624014377594, -0.2844770550727844, 0.10777883976697922, 0.10621722787618637, 0.5707727670669556, -0.08483406156301498, 0.12602218985557556, 0.019394945353269577, -0.2557676434516907, -0.28177040815353394], [0.4161626100540161, -0.28447335958480835, 0.10778545588254929, 0.10621735453605652, 0.5707710981369019, -0.08483194559812546, 0.12601691484451294, 0.019389500841498375, -0.2557676434516907, -0.2817719578742981], [0.4161640703678131, -0.28447410464286804, 0.10777835547924042, 0.10621444135904312, 0.570770800113678, -0.08482614159584045, 0.1260216385126114, 0.019393060356378555, -0.2557704448699951, -0.2817651331424713], [0.4161643981933594, -0.2844761312007904, 0.10777615010738373, 0.10621289163827896, 0.5707715153694153, -0.08483049273490906, 0.1260264664888382, 0.019396644085645676, -0.2557671070098877, -0.28176501393318176], [0.41616180539131165, -0.2844736874103546, 0.10778219997882843, 0.10621759295463562, 0.5707710981369019, -0.08483429253101349, 0.12601996958255768, 0.019390499219298363, -0.25576555728912354, -0.28177350759506226], [0.4161643087863922, -0.2844740152359009, 0.10777803510427475, 0.10621560364961624, 0.5707702040672302, -0.08482784032821655, 0.12602029740810394, 0.019392963498830795, -0.25576961040496826, -0.2817666828632355], [0.416164755821228, -0.2844771146774292, 0.1077742725610733, 0.10621318966150284, 0.5707718133926392, -0.08483010530471802, 0.1260269582271576, 0.019398750737309456, -0.25576794147491455, -0.28176355361938477], [0.41616255044937134, -0.2844780385494232, 0.10777650028467178, 0.10621582716703415, 0.5707730650901794, -0.08483598381280899, 0.1260264366865158, 0.019397418946027756, -0.2557654082775116, -0.28176960349082947], [0.4161621928215027, -0.2844754457473755, 0.10778162628412247, 0.10621803253889084, 0.5707719326019287, -0.08483487367630005, 0.126019686460495, 0.0193923469632864, -0.2557666301727295, -0.2817727029323578], [0.41616442799568176, -0.2844772934913635, 0.10777503997087479, 0.10621456056833267, 0.5707721710205078, -0.08482933789491653, 0.12602446973323822, 0.019397731870412827, -0.2557697594165802, -0.28176432847976685], [0.4161628484725952, -0.28447699546813965, 0.10777971148490906, 0.10621537268161774, 0.5707727670669556, -0.08483478426933289, 0.12602438032627106, 0.019395750015974045, -0.2557658851146698, -0.2817693054676056], [0.4161625802516937, -0.28447672724723816, 0.10777763277292252, 0.10621634125709534, 0.5707725286483765, -0.08483295142650604, 0.12602344155311584, 0.01939508691430092, -0.25576770305633545, -0.28176936507225037], [0.41616392135620117, -0.2844773530960083, 0.10777679085731506, 0.10621477663516998, 0.5707722902297974, -0.08483265340328217, 0.12602466344833374, 0.019397106021642685, -0.25576749444007874, -0.2817668318748474], [0.4161635935306549, -0.284480482339859, 0.1077716276049614, 0.10621427744626999, 0.5707740187644958, -0.08483442664146423, 0.12602989375591278, 0.019402043893933296, -0.25576719641685486, -0.2817651927471161], [0.41616153717041016, -0.28447768092155457, 0.10778185725212097, 0.10621802508831024, 0.5707734823226929, -0.08483953028917313, 0.1260223239660263, 0.01939469203352928, -0.25576433539390564, -0.28177422285079956], [0.41616255044937134, -0.28447574377059937, 0.10778038948774338, 0.10621772706508636, 0.5707721710205078, -0.0848316177725792, 0.12601938843727112, 0.019392913207411766, -0.2557693123817444, -0.2817702293395996], [0.4161633849143982, -0.28447309136390686, 0.10778491199016571, 0.10621584206819534, 0.570770800113678, -0.08482969552278519, 0.12601777911186218, 0.019389977678656578, -0.255768358707428, -0.28176942467689514], [0.4161628186702728, -0.2844710052013397, 0.10778411477804184, 0.1062159463763237, 0.570769727230072, -0.08482658863067627, 0.12601730227470398, 0.01938743144273758, -0.2557693123817444, -0.2817695438861847], [0.4161643981933594, -0.2844703495502472, 0.10778212547302246, 0.1062140017747879, 0.5707685351371765, -0.08482471108436584, 0.1260184347629547, 0.0193882267922163, -0.25576916337013245, -0.28176677227020264], [0.4161641597747803, -0.2844708561897278, 0.10777981579303741, 0.10621423274278641, 0.5707685351371765, -0.08482575416564941, 0.12602023780345917, 0.01938975416123867, -0.2557683289051056, -0.2817668616771698], [0.4161646068096161, -0.284472793340683, 0.10777688026428223, 0.10621409118175507, 0.570769190788269, -0.08482728898525238, 0.1260225921869278, 0.019392868503928185, -0.25576791167259216, -0.2817658483982086], [0.4161645174026489, -0.28447604179382324, 0.10777348279953003, 0.10621410608291626, 0.5707708597183228, -0.08483041822910309, 0.12602628767490387, 0.019397463649511337, -0.25576722621917725, -0.2817651033401489], [0.41616326570510864, -0.2844772934913635, 0.10777604579925537, 0.10621600598096848, 0.5707721710205078, -0.08483488857746124, 0.1260252594947815, 0.019397322088479996, -0.25576576590538025, -0.28176888823509216], [0.41616275906562805, -0.2844768166542053, 0.10777857899665833, 0.10621724277734756, 0.5707724094390869, -0.08483439683914185, 0.12602229416370392, 0.01939532533288002, -0.25576695799827576, -0.281770259141922], [0.4161634147167206, -0.2844768166542053, 0.10777847468852997, 0.1062159463763237, 0.5707724094390869, -0.08483217656612396, 0.12602274119853973, 0.019395742565393448, -0.2557681202888489, -0.2817678451538086], [0.4161624312400818, -0.28447455167770386, 0.10778312385082245, 0.10621675103902817, 0.5707717537879944, -0.0848325788974762, 0.12601979076862335, 0.01939149759709835, -0.25576722621917725, -0.28177106380462646], [0.4161628186702728, -0.2844717800617218, 0.10778439790010452, 0.1062166839838028, 0.5707701444625854, -0.08482836931943893, 0.12601672112941742, 0.01938796043395996, -0.25576892495155334, -0.2817705571651459], [0.41616523265838623, -0.28447428345680237, 0.10777565836906433, 0.1062125414609909, 0.5707702040672302, -0.08482515066862106, 0.12602412700653076, 0.01939491555094719, -0.2557700574398041, -0.2817624509334564], [0.4161636531352997, -0.28447598218917847, 0.10777627676725388, 0.10621395707130432, 0.5707715153694153, -0.084832563996315, 0.12602640688419342, 0.01939627155661583, -0.25576573610305786, -0.28176721930503845], [0.41616278886795044, -0.28447604179382324, 0.1077771782875061, 0.1062166839838028, 0.5707716345787048, -0.08483395725488663, 0.12602326273918152, 0.019394833594560623, -0.2557663917541504, -0.2817702889442444], [0.41616353392601013, -0.28447550535202026, 0.10777921229600906, 0.10621653497219086, 0.570771336555481, -0.08483220636844635, 0.12602102756500244, 0.019394230097532272, -0.2557676434516907, -0.2817690372467041], [0.41616305708885193, -0.28447455167770386, 0.10778126865625381, 0.10621650516986847, 0.570771336555481, -0.08483090996742249, 0.1260201334953308, 0.01939248852431774, -0.2557680904865265, -0.2817692756652832], [0.4161633253097534, -0.28447356820106506, 0.10778170078992844, 0.10621567815542221, 0.570770800113678, -0.08482919633388519, 0.1260198950767517, 0.019391177222132683, -0.25576844811439514, -0.28176864981651306], [0.4161640703678131, -0.2844744622707367, 0.10777770727872849, 0.10621412843465805, 0.570770800113678, -0.08482836186885834, 0.12602317333221436, 0.019393932074308395, -0.25576862692832947, -0.281765878200531], [0.4161628782749176, -0.28447285294532776, 0.10778236389160156, 0.10621613264083862, 0.5707703232765198, -0.08483140915632248, 0.12601977586746216, 0.019390298053622246, -0.25576648116111755, -0.28177085518836975], [0.41616448760032654, -0.2844752371311188, 0.1077745258808136, 0.10621429234743118, 0.5707706809043884, -0.08482759445905685, 0.12602411210536957, 0.01939569041132927, -0.25576940178871155, -0.28176453709602356], [0.4161648154258728, -0.28447961807250977, 0.10777086019515991, 0.10621273517608643, 0.5707728862762451, -0.08483331650495529, 0.126030832529068, 0.019402431324124336, -0.2557663917541504, -0.2817632853984833], [0.4161614775657654, -0.2844788730144501, 0.10777776688337326, 0.1062178909778595, 0.5707738399505615, -0.08483997732400894, 0.12602537870407104, 0.01939735934138298, -0.2557641267776489, -0.2817731201648712], [0.41616302728652954, -0.28447848558425903, 0.10777701437473297, 0.10621727257966995, 0.570773184299469, -0.08483456820249557, 0.12602287530899048, 0.01939718797802925, -0.2557680904865265, -0.2817692160606384], [0.41616326570510864, -0.2844783365726471, 0.10777845978736877, 0.10621567815542221, 0.5707734227180481, -0.0848340392112732, 0.12602414190769196, 0.019397560507059097, -0.2557676136493683, -0.2817677855491638], [0.4161626100540161, -0.28447842597961426, 0.10777760297060013, 0.10621567815542221, 0.570773720741272, -0.08483433723449707, 0.12602537870407104, 0.019397225230932236, -0.2557673454284668, -0.2817685306072235], [0.41616305708885193, -0.28447839617729187, 0.10777701437473297, 0.10621531307697296, 0.5707734227180481, -0.08483467251062393, 0.1260254979133606, 0.01939745619893074, -0.25576695799827576, -0.2817683815956116], [0.4161629378795624, -0.28447863459587097, 0.10777624696493149, 0.10621566325426102, 0.5707734227180481, -0.0848350077867508, 0.12602569162845612, 0.019398042932152748, -0.25576695799827576, -0.28176847100257874], [0.4161624014377594, -0.2844770550727844, 0.1077801063656807, 0.1062169000506401, 0.5707728862762451, -0.08483538776636124, 0.1260223090648651, 0.0193948857486248, -0.2557665705680847, -0.2817709743976593], [0.41616323590278625, -0.2844769358634949, 0.10777802020311356, 0.10621587187051773, 0.5707725286483765, -0.08483194559812546, 0.1260230541229248, 0.019395682960748672, -0.25576847791671753, -0.281767874956131], [0.4161638021469116, -0.2844785749912262, 0.1077752634882927, 0.10621414333581924, 0.5707731246948242, -0.08483292162418365, 0.1260269582271576, 0.019398944452404976, -0.2557675242424011, -0.28176575899124146], [0.4161626398563385, -0.28447920083999634, 0.10777580738067627, 0.10621560364961624, 0.5707738399505615, -0.08483637869358063, 0.12602704763412476, 0.019398728385567665, -0.25576597452163696, -0.2817689776420593], [0.4161634147167206, -0.2844814360141754, 0.10777181386947632, 0.10621504485607147, 0.570774495601654, -0.08483638614416122, 0.12602941691875458, 0.019402453675866127, -0.255766898393631, -0.28176644444465637], [0.4161624014377594, -0.28448161482810974, 0.10777547210454941, 0.10621649026870728, 0.5707752108573914, -0.08484000712633133, 0.1260278970003128, 0.01940138079226017, -0.2557651996612549, -0.28176993131637573], [0.4161624014377594, -0.2844824194908142, 0.10777389258146286, 0.10621659457683563, 0.5707756876945496, -0.08483850210905075, 0.12602822482585907, 0.019402192905545235, -0.25576692819595337, -0.28176864981651306], [0.41616255044937134, -0.28448250889778137, 0.10777535289525986, 0.10621597617864609, 0.5707759261131287, -0.08483944833278656, 0.1260283887386322, 0.01940225251019001, -0.2557661533355713, -0.28176870942115784], [0.41616129875183105, -0.28448012471199036, 0.10777987539768219, 0.10621783137321472, 0.5707752704620361, -0.0848393663764, 0.12602414190769196, 0.01939743384718895, -0.2557661235332489, -0.28177255392074585], [0.4161628484725952, -0.28447943925857544, 0.10777752846479416, 0.10621597617864609, 0.570774257183075, -0.0848345160484314, 0.126024529337883, 0.019397923722863197, -0.25576838850975037, -0.28176820278167725], [0.41616296768188477, -0.2844794988632202, 0.10777688026428223, 0.10621492564678192, 0.570774257183075, -0.0848352238535881, 0.12602657079696655, 0.019398899748921394, -0.2557671368122101, -0.2817676365375519], [0.4161626398563385, -0.28448015451431274, 0.10777515918016434, 0.10621535778045654, 0.570774495601654, -0.08483636379241943, 0.12602771818637848, 0.019399704411625862, -0.2557666301727295, -0.281768262386322], [0.4161631166934967, -0.2844814658164978, 0.10777319967746735, 0.10621517896652222, 0.5707748532295227, -0.08483747392892838, 0.1260291337966919, 0.019401999190449715, -0.2557663917541504, -0.28176745772361755], [0.4161616265773773, -0.28447943925857544, 0.10777956247329712, 0.10621783137321472, 0.570774495601654, -0.08483951538801193, 0.12602387368679047, 0.019397150725126266, -0.2557653784751892, -0.2817727029323578], [0.4161617159843445, -0.2844753861427307, 0.1077844649553299, 0.10621864348649979, 0.5707725286483765, -0.0848340392112732, 0.12601743638515472, 0.01939099095761776, -0.2557680606842041, -0.2817731499671936], [0.41616255044937134, -0.28447026014328003, 0.10778944939374924, 0.10621736943721771, 0.5707697868347168, -0.0848274677991867, 0.1260126531124115, 0.019384704530239105, -0.25576961040496826, -0.2817719280719757], [0.4161624014377594, -0.28446295857429504, 0.10779604315757751, 0.10621744394302368, 0.570766031742096, -0.08482096344232559, 0.12600572407245636, 0.01937497779726982, -0.2557704746723175, -0.28177374601364136], [0.41616588830947876, -0.28446221351623535, 0.1077861487865448, 0.10621228814125061, 0.5707637071609497, -0.08481161296367645, 0.1260114461183548, 0.019379006698727608, -0.2557735741138458, -0.2817631959915161], [0.4161672294139862, -0.2844676971435547, 0.10777471959590912, 0.10620877146720886, 0.5707653164863586, -0.08481677621603012, 0.126024067401886, 0.019390230998396873, -0.25576961040496826, -0.2817583978176117], [0.4161651134490967, -0.28447356820106506, 0.1077699288725853, 0.10621221363544464, 0.5707685351371765, -0.08482874929904938, 0.1260291337966919, 0.019396718591451645, -0.2557651400566101, -0.28176409006118774], [0.4161633551120758, -0.28447455167770386, 0.10777626186609268, 0.10621756315231323, 0.5707697868347168, -0.08483505249023438, 0.12602229416370392, 0.01939437910914421, -0.2557643949985504, -0.2817715108394623], [0.4161648154258728, -0.28447869420051575, 0.10777097940444946, 0.10621576756238937, 0.5707718729972839, -0.08483131974935532, 0.12602610886096954, 0.019401000812649727, -0.2557687759399414, -0.2817641496658325], [0.41616466641426086, -0.28448525071144104, 0.10776644200086594, 0.10621295124292374, 0.5707759857177734, -0.08483763784170151, 0.1260361671447754, 0.01940985582768917, -0.2557661235332489, -0.2817615866661072], [0.41616132855415344, -0.28448763489723206, 0.10776951909065247, 0.1062166839838028, 0.5707787275314331, -0.08484716713428497, 0.12603579461574554, 0.01940900646150112, -0.25576284527778625, -0.2817702889442444], [0.41616153717041016, -0.28448817133903503, 0.10777047276496887, 0.1062178760766983, 0.570779025554657, -0.08484675735235214, 0.12603259086608887, 0.01940855197608471, -0.25576484203338623, -0.2817706763744354], [0.4161611497402191, -0.28448644280433655, 0.10777603089809418, 0.10621843487024307, 0.5707787871360779, -0.08484575897455215, 0.12602874636650085, 0.019405215978622437, -0.2557653784751892, -0.28177204728126526], [0.4161607027053833, -0.2844829857349396, 0.1077805906534195, 0.10621862858533859, 0.5707774758338928, -0.08484175056219101, 0.126024529337883, 0.01939956285059452, -0.2557668387889862, -0.28177303075790405], [0.4161622226238251, -0.28448110818862915, 0.1077788695693016, 0.1062159463763237, 0.5707759261131287, -0.08483639359474182, 0.12602530419826508, 0.019398855045437813, -0.25576844811439514, -0.2817688286304474], [0.41616183519363403, -0.28447821736335754, 0.10778158158063889, 0.10621607303619385, 0.5707743763923645, -0.08483618497848511, 0.12602335214614868, 0.01939518377184868, -0.2557668685913086, -0.2817710340023041], [0.41616201400756836, -0.2844747006893158, 0.10778337717056274, 0.10621694475412369, 0.5707721710205078, -0.08483259379863739, 0.1260191798210144, 0.01939070038497448, -0.25576791167259216, -0.2817718982696533], [0.4161645174026489, -0.28447622060775757, 0.10777561366558075, 0.10621341317892075, 0.5707715749740601, -0.08482816070318222, 0.12602463364601135, 0.0193963460624218, -0.25576964020729065, -0.2817640006542206], [0.4161643981933594, -0.28448089957237244, 0.10776947438716888, 0.10621224343776703, 0.5707737803459167, -0.08483409136533737, 0.12603293359279633, 0.019403882324695587, -0.2557663917541504, -0.2817629277706146], [0.41616085171699524, -0.28447842597961426, 0.10778022557497025, 0.10621862858533859, 0.5707738399505615, -0.0848417803645134, 0.1260237842798233, 0.019395653158426285, -0.25576311349868774, -0.28177565336227417], [0.4161631166934967, -0.2844778895378113, 0.1077769547700882, 0.10621745884418488, 0.5707727670669556, -0.08483283221721649, 0.12602174282073975, 0.019396420568227768, -0.255769282579422, -0.2817687690258026], [0.41616398096084595, -0.28447890281677246, 0.10777701437473297, 0.10621442645788193, 0.5707734227180481, -0.08483319729566574, 0.12602584064006805, 0.019399160519242287, -0.25576773285865784, -0.2817656695842743], [0.41616156697273254, -0.2844773530960083, 0.10778049379587173, 0.1062169149518013, 0.5707736015319824, -0.08483589440584183, 0.12602348625659943, 0.019394677132368088, -0.25576624274253845, -0.2817716598510742], [0.41616350412368774, -0.2844773828983307, 0.10777691006660461, 0.10621519386768341, 0.570772647857666, -0.08483213186264038, 0.1260240525007248, 0.019396331161260605, -0.25576838850975037, -0.281767338514328], [0.41616371273994446, -0.2844791114330292, 0.10777434706687927, 0.10621418803930283, 0.5707733631134033, -0.08483394235372543, 0.12602777779102325, 0.01939988322556019, -0.2557670772075653, -0.2817659378051758], [0.41616290807724, -0.28448110818862915, 0.10777289420366287, 0.1062152236700058, 0.5707745552062988, -0.08483738452196121, 0.12602956593036652, 0.019401760771870613, -0.2557659149169922, -0.28176766633987427], [0.4161622226238251, -0.28448066115379333, 0.10777635127305984, 0.10621701925992966, 0.5707747340202332, -0.0848393514752388, 0.12602634727954865, 0.019399704411625862, -0.25576549768447876, -0.281770795583725], [0.4161614179611206, -0.2844766676425934, 0.10778380185365677, 0.10621900856494904, 0.5707732439041138, -0.08483676612377167, 0.12601877748966217, 0.0193925928324461, -0.2557668089866638, -0.2817740738391876], [0.41616353392601013, -0.28447583317756653, 0.10778016597032547, 0.10621563345193863, 0.5707721710205078, -0.08482913672924042, 0.12602074444293976, 0.01939379796385765, -0.25577017664909363, -0.28176698088645935], [0.41616302728652954, -0.2844740152359009, 0.10778298228979111, 0.10621502995491028, 0.5707714557647705, -0.08483074605464935, 0.1260208636522293, 0.019391467794775963, -0.2557675242424011, -0.28176915645599365], [0.41616344451904297, -0.28447437286376953, 0.10777802020311356, 0.1062147244811058, 0.5707709789276123, -0.08482876420021057, 0.12602268159389496, 0.019392941147089005, -0.25576862692832947, -0.28176721930503845], [0.41616442799568176, -0.28447622060775757, 0.10777520388364792, 0.10621361434459686, 0.5707712769508362, -0.08483085036277771, 0.12602576613426208, 0.019396867603063583, -0.255767285823822, -0.2817654609680176], [0.41616198420524597, -0.28447386622428894, 0.10778260976076126, 0.10621781647205353, 0.5707710385322571, -0.08483435213565826, 0.1260194629430771, 0.019390856847167015, -0.2557656764984131, -0.28177326917648315], [0.4161635935306549, -0.28447267413139343, 0.10778144747018814, 0.1062166690826416, 0.5707699060440063, -0.0848277285695076, 0.1260175257921219, 0.01939011923968792, -0.2557695806026459, -0.2817687690258026], [0.41616398096084595, -0.28447166085243225, 0.1077829971909523, 0.10621501505374908, 0.5707694888114929, -0.08482685685157776, 0.1260184496641159, 0.01938963495194912, -0.2557687759399414, -0.2817676067352295], [0.41616401076316833, -0.28447291254997253, 0.10777842998504639, 0.10621412098407745, 0.5707699060440063, -0.0848264992237091, 0.12602214515209198, 0.019391989335417747, -0.25576889514923096, -0.28176596760749817], [0.4161635637283325, -0.2844720184803009, 0.10778147727251053, 0.10621523857116699, 0.5707694888114929, -0.08482960611581802, 0.12602001428604126, 0.019390089437365532, -0.2557668089866638, -0.28176942467689514], [0.4161622226238251, -0.2844669818878174, 0.107789546251297, 0.10621869564056396, 0.5707674026489258, -0.0848272517323494, 0.12601053714752197, 0.01938125677406788, -0.25576797127723694, -0.28177475929260254], [0.4161648750305176, -0.28446486592292786, 0.10778723657131195, 0.10621542483568192, 0.5707653164863586, -0.08481772989034653, 0.1260102093219757, 0.019381018355488777, -0.25577208399772644, -0.2817670702934265], [0.41616517305374146, -0.28446435928344727, 0.10778620839118958, 0.10621321946382523, 0.5707650184631348, -0.0848175585269928, 0.12601377069950104, 0.01938186027109623, -0.2557702958583832, -0.28176552057266235], [0.4161636233329773, -0.2844608426094055, 0.10779109597206116, 0.10621588677167892, 0.5707634687423706, -0.08481881767511368, 0.12600859999656677, 0.01937536522746086, -0.2557688057422638, -0.2817716598510742], [0.41616594791412354, -0.2844600975513458, 0.10778636485338211, 0.10621403157711029, 0.5707618594169617, -0.08481255918741226, 0.1260090321302414, 0.019377049058675766, -0.2557719349861145, -0.28176572918891907], [0.4161664545536041, -0.28446149826049805, 0.10778418928384781, 0.1062125414609909, 0.5707622766494751, -0.0848141685128212, 0.12601296603679657, 0.019380422309041023, -0.255770206451416, -0.2817639112472534], [0.41616445779800415, -0.2844598889350891, 0.10778898745775223, 0.1062157079577446, 0.5707621574401855, -0.08481734991073608, 0.12600892782211304, 0.01937592402100563, -0.2557685673236847, -0.281770259141922], [0.4161660969257355, -0.28446000814437866, 0.10778576135635376, 0.10621441155672073, 0.570761501789093, -0.08481281250715256, 0.12600912153720856, 0.019377443939447403, -0.2557715177536011, -0.28176572918891907], [0.4161677360534668, -0.28446587920188904, 0.10777561366558075, 0.10621044784784317, 0.570763885974884, -0.08481442928314209, 0.12602035701274872, 0.019388487562537193, -0.25577080249786377, -0.2817584276199341], [0.4161641299724579, -0.2844669222831726, 0.10778217017650604, 0.1062149852514267, 0.5707658529281616, -0.08482582122087479, 0.12601816654205322, 0.019385740160942078, -0.2557653486728668, -0.2817695438861847], [0.4161645770072937, -0.28446781635284424, 0.10777996480464935, 0.10621629655361176, 0.570766031742096, -0.08482294529676437, 0.12601585686206818, 0.01938634365797043, -0.25576919317245483, -0.28176799416542053], [0.41616788506507874, -0.28447696566581726, 0.1077653244137764, 0.10620994865894318, 0.5707696676254272, -0.08482356369495392, 0.12603135406970978, 0.01940315216779709, -0.2557699382305145, -0.2817552089691162], [0.41616103053092957, -0.28447476029396057, 0.1077837347984314, 0.10621853917837143, 0.5707717537879944, -0.08484041690826416, 0.12602177262306213, 0.01939200423657894, -0.2557612657546997, -0.28177669644355774], [0.41616320610046387, -0.2844744324684143, 0.10777776688337326, 0.10621825605630875, 0.5707706809043884, -0.08482874929904938, 0.12601852416992188, 0.019392160698771477, -0.2557704746723175, -0.28176918625831604], [0.4161647856235504, -0.28447380661964417, 0.10778224468231201, 0.10621451586484909, 0.5707704424858093, -0.08482909947633743, 0.1260198950767517, 0.019392861053347588, -0.2557681202888489, -0.281766414642334], [0.41616296768188477, -0.2844753563404083, 0.10777707397937775, 0.10621501505374908, 0.5707717537879944, -0.08482926338911057, 0.12602432072162628, 0.019394520670175552, -0.2557685971260071, -0.2817668318748474], [0.41616424918174744, -0.28447675704956055, 0.10777594149112701, 0.10621374845504761, 0.5707718133926392, -0.08483221381902695, 0.12602598965168, 0.01939687505364418, -0.25576668977737427, -0.28176629543304443], [0.41616329550743103, -0.2844790816307068, 0.10777247697114944, 0.10621510446071625, 0.5707731246948242, -0.08483469486236572, 0.12602828443050385, 0.019400151446461678, -0.2557666301727295, -0.28176695108413696], [0.41616344451904297, -0.2844812870025635, 0.10777267068624496, 0.10621541738510132, 0.5707743167877197, -0.08483777940273285, 0.1260291039943695, 0.01940234936773777, -0.2557657063007355, -0.28176742792129517], [0.4161617159843445, -0.28448012471199036, 0.10777808725833893, 0.10621802508831024, 0.5707746744155884, -0.08483956009149551, 0.1260247379541397, 0.01939847506582737, -0.25576555728912354, -0.28177207708358765], [0.41616353392601013, -0.2844822108745575, 0.10777240246534348, 0.1062152087688446, 0.5707752108573914, -0.08483537286520004, 0.12602877616882324, 0.019402973353862762, -0.25576841831207275, -0.2817654311656952], [0.41616296768188477, -0.28448450565338135, 0.10777167230844498, 0.10621439665555954, 0.5707767605781555, -0.0848403200507164, 0.12603294849395752, 0.019406020641326904, -0.25576549768447876, -0.281766414642334], [0.41616153717041016, -0.2844853401184082, 0.10777205228805542, 0.1062166690826416, 0.5707775950431824, -0.08484365791082382, 0.1260320246219635, 0.019405417144298553, -0.25576475262641907, -0.2817702293395996], [0.4161624014377594, -0.2844865620136261, 0.10777069628238678, 0.10621623694896698, 0.570777952671051, -0.0848432183265686, 0.12603230774402618, 0.019407466053962708, -0.25576579570770264, -0.281768262386322], [0.4161614775657654, -0.2844862937927246, 0.10777393728494644, 0.10621727257966995, 0.5707784295082092, -0.08484487235546112, 0.12603090703487396, 0.019405998289585114, -0.25576505064964294, -0.28177061676979065], [0.41616126894950867, -0.2844850420951843, 0.10777576267719269, 0.10621760785579681, 0.5707780718803406, -0.08484308421611786, 0.12602871656417847, 0.019403591752052307, -0.2557661235332489, -0.28177112340927124], [0.41616198420524597, -0.284484326839447, 0.10777539759874344, 0.10621631145477295, 0.570777416229248, -0.08484082669019699, 0.12602895498275757, 0.019403405487537384, -0.2557668089866638, -0.28176912665367126], [0.4161619246006012, -0.28448405861854553, 0.10777488350868225, 0.10621591657400131, 0.5707772374153137, -0.08484074473381042, 0.12602977454662323, 0.0194033682346344, -0.255766361951828, -0.2817690670490265], [0.4161616563796997, -0.28448283672332764, 0.10777644068002701, 0.10621660947799683, 0.5707765817642212, -0.08484092354774475, 0.12602795660495758, 0.01940138079226017, -0.2557659447193146, -0.2817706763744354], [0.416162371635437, -0.28448283672332764, 0.1077745109796524, 0.10621599107980728, 0.5707761645317078, -0.08483888953924179, 0.12602852284908295, 0.01940229721367359, -0.25576695799827576, -0.2817685604095459], [0.4161621034145355, -0.2844821512699127, 0.10777635127305984, 0.10621625185012817, 0.5707759857177734, -0.08483976125717163, 0.12602771818637848, 0.01940120942890644, -0.25576603412628174, -0.2817698121070862], [0.4161624014377594, -0.2844826877117157, 0.10777399688959122, 0.10621588677167892, 0.5707759857177734, -0.08483856916427612, 0.12602898478507996, 0.01940244622528553, -0.25576692819595337, -0.28176820278167725], [0.41616290807724, -0.28448450565338135, 0.10777156800031662, 0.10621488094329834, 0.5707767009735107, -0.08484002202749252, 0.1260320246219635, 0.019405581057071686, -0.2557661235332489, -0.281766802072525], [0.4161612391471863, -0.28448328375816345, 0.10777632147073746, 0.10621747374534607, 0.5707768201828003, -0.08484315127134323, 0.12602829933166504, 0.01940190978348255, -0.2557646930217743, -0.2817722260951996], [0.41616225242614746, -0.28448301553726196, 0.1077747493982315, 0.10621682554483414, 0.5707762241363525, -0.08483923971652985, 0.12602759897708893, 0.019402185454964638, -0.25576725602149963, -0.28176915645599365], [0.41616326570510864, -0.28448548913002014, 0.10777045786380768, 0.10621432214975357, 0.5707772374153137, -0.08483950793743134, 0.12603311240673065, 0.019407249987125397, -0.2557668387889862, -0.2817651331424713], [0.41616201400756836, -0.28448790311813354, 0.10776904970407486, 0.1062152236700058, 0.5707789063453674, -0.08484482765197754, 0.12603607773780823, 0.01940958760678768, -0.2557644844055176, -0.2817678153514862], [0.4161604940891266, -0.28448575735092163, 0.10777595639228821, 0.10621872544288635, 0.5707784295082092, -0.08484742045402527, 0.12602916359901428, 0.019403904676437378, -0.25576379895210266, -0.28177428245544434], [0.4161621034145355, -0.2844855785369873, 0.10777321457862854, 0.10621712356805801, 0.5707778334617615, -0.08484120666980743, 0.12602916359901428, 0.019405215978622437, -0.2557676136493683, -0.2817687392234802], [0.41616177558898926, -0.2844843864440918, 0.10777702927589417, 0.10621646046638489, 0.5707777142524719, -0.0848422423005104, 0.12602880597114563, 0.01940327137708664, -0.255765825510025, -0.2817700505256653], [0.41616058349609375, -0.2844807207584381, 0.1077812984585762, 0.10621827095746994, 0.5707761645317078, -0.08484027534723282, 0.12602365016937256, 0.019396867603063583, -0.2557664215564728, -0.28177374601364136], [0.4161628782749176, -0.28447937965393066, 0.10777819156646729, 0.10621557384729385, 0.5707743763923645, -0.08483415096998215, 0.1260242611169815, 0.019397545605897903, -0.255768746137619, -0.2817680239677429], [0.41616296768188477, -0.28447943925857544, 0.10777675360441208, 0.10621460527181625, 0.570774257183075, -0.08483496308326721, 0.1260269284248352, 0.019398869946599007, -0.25576716661453247, -0.28176742792129517], [0.4161636531352997, -0.2844833433628082, 0.10776861757040024, 0.10621338337659836, 0.5707756280899048, -0.08483659476041794, 0.12603355944156647, 0.01940557360649109, -0.255766898393631, -0.2817641496658325], [0.4161622226238251, -0.28448450565338135, 0.10777205228805542, 0.1062159463763237, 0.5707767009735107, -0.08484381437301636, 0.12603220343589783, 0.01940535008907318, -0.25576362013816833, -0.28176987171173096], [0.4161607325077057, -0.28448164463043213, 0.10777883976697922, 0.10621970146894455, 0.5707759857177734, -0.08484289050102234, 0.12602399289608002, 0.019398869946599007, -0.25576525926589966, -0.2817747890949249], [0.4161631166934967, -0.2844814658164978, 0.10777636617422104, 0.10621640086174011, 0.5707752704620361, -0.08483567833900452, 0.1260252594947815, 0.01940060593187809, -0.25576892495155334, -0.281767338514328], [0.41616299748420715, -0.28448307514190674, 0.10777381807565689, 0.10621420294046402, 0.5707763433456421, -0.08483745902776718, 0.12603087723255157, 0.01940375566482544, -0.25576698780059814, -0.28176581859588623], [0.41616132855415344, -0.2844819724559784, 0.10777686536312103, 0.10621663928031921, 0.5707762241363525, -0.0848412960767746, 0.12602825462818146, 0.019400300458073616, -0.2557649314403534, -0.2817716598510742], [0.4161621630191803, -0.2844805121421814, 0.10777702927589417, 0.10621701925992966, 0.5707749724388123, -0.08483809977769852, 0.12602511048316956, 0.019398795440793037, -0.25576695799827576, -0.28177058696746826], [0.4161633849143982, -0.28448185324668884, 0.10777358710765839, 0.10621491074562073, 0.5707751512527466, -0.0848361924290657, 0.1260286569595337, 0.01940249092876911, -0.2557676434516907, -0.2817660868167877], [0.4161623418331146, -0.28448283672332764, 0.10777408629655838, 0.10621554404497147, 0.570776104927063, -0.08483979851007462, 0.12603016197681427, 0.019402936100959778, -0.2557656168937683, -0.2817685306072235], [0.4161616861820221, -0.2844817042350769, 0.10777672380208969, 0.10621725767850876, 0.5707757472991943, -0.08484048396348953, 0.12602674961090088, 0.0194000992923975, -0.2557657063007355, -0.2817714214324951], [0.41616255044937134, -0.28448113799095154, 0.10777629166841507, 0.10621650516986847, 0.5707752108573914, -0.08483748883008957, 0.12602604925632477, 0.01940016634762287, -0.2557673156261444, -0.2817690372467041], [0.41616252064704895, -0.2844808101654053, 0.10777698457241058, 0.1062159463763237, 0.5707750916481018, -0.08483730256557465, 0.12602657079696655, 0.019399860873818398, -0.2557668685913086, -0.2817688286304474], [0.4161626100540161, -0.284481406211853, 0.10777480900287628, 0.10621543973684311, 0.5707752704620361, -0.08483710139989853, 0.12602831423282623, 0.01940104551613331, -0.25576698780059814, -0.28176793456077576], [0.4161626100540161, -0.2844819724559784, 0.10777439177036285, 0.1062154695391655, 0.5707754492759705, -0.08483865112066269, 0.12602896988391876, 0.019401879981160164, -0.2557660937309265, -0.28176841139793396], [0.4161614179611206, -0.28447940945625305, 0.10778004676103592, 0.10621793568134308, 0.5707746148109436, -0.0848393514752388, 0.12602350115776062, 0.019396696239709854, -0.2557657063007355, -0.28177300095558167], [0.41616225242614746, -0.2844763994216919, 0.10778230428695679, 0.10621762275695801, 0.5707728862762451, -0.08483368903398514, 0.12601947784423828, 0.01939300075173378, -0.255768358707428, -0.28177130222320557], [0.4161626100540161, -0.2844725549221039, 0.10778634995222092, 0.10621678084135056, 0.5707709193229675, -0.08482969552278519, 0.1260162889957428, 0.019388271495699883, -0.255768746137619, -0.28177106380462646], [0.4161633849143982, -0.2844703793525696, 0.10778458416461945, 0.10621525347232819, 0.5707692503929138, -0.08482497185468674, 0.12601660192012787, 0.019386813044548035, -0.2557699680328369, -0.28176844120025635], [0.4161642789840698, -0.2844696342945099, 0.10778260976076126, 0.10621385276317596, 0.5707681775093079, -0.0848241075873375, 0.1260182410478592, 0.01938745379447937, -0.25576910376548767, -0.2817668616771698], [0.41616353392601013, -0.2844676375389099, 0.10778495669364929, 0.10621560364961624, 0.5707671642303467, -0.08482491225004196, 0.1260153204202652, 0.01938433200120926, -0.2557680904865265, -0.28177011013031006], [0.4161642789840698, -0.2844659090042114, 0.10778539627790451, 0.1062157079577446, 0.5707657933235168, -0.08482153713703156, 0.12601284682750702, 0.019382620230317116, -0.25576961040496826, -0.28176888823509216], [0.416164755821228, -0.28446459770202637, 0.1077863797545433, 0.10621501505374908, 0.5707650184631348, -0.08481944352388382, 0.1260121464729309, 0.01938151754438877, -0.25576990842819214, -0.2817677855491638], [0.41616538166999817, -0.2844657897949219, 0.10778209567070007, 0.10621343553066254, 0.5707652568817139, -0.08481831848621368, 0.12601593136787415, 0.019384481012821198, -0.2557702958583832, -0.2817647457122803], [0.4161660969257355, -0.2844703793525696, 0.10777468979358673, 0.10621165484189987, 0.5707671046257019, -0.08482183516025543, 0.12602369487285614, 0.01939222775399685, -0.2557687759399414, -0.28176167607307434], [0.4161638617515564, -0.284471720457077, 0.10777834057807922, 0.1062152236700058, 0.5707685947418213, -0.08483000099658966, 0.12602192163467407, 0.019391370937228203, -0.25576546788215637, -0.2817690372467041], [0.4161635637283325, -0.2844712734222412, 0.10778069496154785, 0.10621733963489532, 0.5707685947418213, -0.0848287045955658, 0.12601742148399353, 0.019389284774661064, -0.2557677626609802, -0.281770259141922], [0.4161652624607086, -0.2844740152359009, 0.10777609050273895, 0.10621412843465805, 0.5707696676254272, -0.08482606709003448, 0.12602241337299347, 0.019394878298044205, -0.2557695209980011, -0.28176361322402954], [0.41616368293762207, -0.28447583317756653, 0.10777710378170013, 0.10621460527181625, 0.5707715153694153, -0.08483166247606277, 0.12602519989013672, 0.019395973533391953, -0.2557665705680847, -0.28176695108413696], [0.4161635637283325, -0.28447818756103516, 0.10777348279953003, 0.10621495544910431, 0.570772647857666, -0.08483327925205231, 0.12602725625038147, 0.01939871348440647, -0.25576701760292053, -0.28176674246788025], [0.41616320610046387, -0.2844788432121277, 0.10777579247951508, 0.10621587187051773, 0.570773184299469, -0.08483640849590302, 0.12602607905864716, 0.01939878799021244, -0.255765825510025, -0.2817688584327698], [0.41616398096084595, -0.28448352217674255, 0.10776757448911667, 0.1062142476439476, 0.5707753300666809, -0.08483610302209854, 0.12603288888931274, 0.01940649002790451, -0.2557675242424011, -0.28176355361938477], [0.41616106033325195, -0.28448086977005005, 0.10778070986270905, 0.10621840506792068, 0.5707755088806152, -0.0848439559340477, 0.12602505087852478, 0.019398408010601997, -0.2557630240917206, -0.2817749083042145], [0.4161616563796997, -0.2844785153865814, 0.10777957737445831, 0.10621875524520874, 0.5707741379737854, -0.08483515679836273, 0.12602093815803528, 0.019395355135202408, -0.25576892495155334, -0.28177157044410706], [0.4161643385887146, -0.2844795286655426, 0.10777639597654343, 0.10621364414691925, 0.5707738399505615, -0.08483229577541351, 0.12602637708187103, 0.019399793818593025, -0.2557687759399414, -0.28176426887512207], [0.4161614179611206, -0.28447774052619934, 0.10778063535690308, 0.10621653497219086, 0.5707740187644958, -0.08483688533306122, 0.12602438032627106, 0.01939517632126808, -0.2557656764984131, -0.2817718982696533], [0.41616326570510864, -0.2844778001308441, 0.10777626186609268, 0.10621541738510132, 0.5707728862762451, -0.08483276516199112, 0.1260245144367218, 0.01939668133854866, -0.2557682394981384, -0.28176772594451904], [0.4161641001701355, -0.28448033332824707, 0.10777247697114944, 0.10621374845504761, 0.5707738399505615, -0.08483447879552841, 0.126029372215271, 0.01940193958580494, -0.2557670772075653, -0.28176483511924744], [0.4161630868911743, -0.28448402881622314, 0.10776904970407486, 0.10621457546949387, 0.5707759857177734, -0.08483953773975372, 0.1260336935520172, 0.019406266510486603, -0.255765438079834, -0.2817661166191101], [0.41616180539131165, -0.2844843864440918, 0.10777336359024048, 0.10621722787618637, 0.5707768201828003, -0.08484406024217606, 0.12603029608726501, 0.019404344260692596, -0.25576406717300415, -0.281771183013916], [0.41616225242614746, -0.2844853401184082, 0.10777188837528229, 0.10621707886457443, 0.5707772970199585, -0.08484166860580444, 0.12603023648262024, 0.019405722618103027, -0.2557665705680847, -0.2817687392234802], [0.4161623418331146, -0.28448641300201416, 0.10777247697114944, 0.1062159463763237, 0.5707781910896301, -0.08484284579753876, 0.12603208422660828, 0.019407115876674652, -0.255765825510025, -0.28176799416542053], [0.41616103053092957, -0.28448548913002014, 0.10777520388364792, 0.10621736943721771, 0.5707783102989197, -0.08484428375959396, 0.12603016197681427, 0.019404292106628418, -0.25576522946357727, -0.2817714512348175], [0.41616249084472656, -0.28448688983917236, 0.10777048766613007, 0.1062154695391655, 0.5707784295082092, -0.08484179526567459, 0.1260329931974411, 0.01940770447254181, -0.2557668387889862, -0.28176695108413696], [0.4161621332168579, -0.28448882699012756, 0.10776932537555695, 0.10621516406536102, 0.57077956199646, -0.08484546095132828, 0.12603606283664703, 0.019410504028201103, -0.25576481223106384, -0.28176748752593994], [0.41616109013557434, -0.2844896912574768, 0.10776981711387634, 0.1062169149518013, 0.5707802772521973, -0.08484827727079391, 0.1260354220867157, 0.01941034011542797, -0.2557642161846161, -0.28177034854888916], [0.41616126894950867, -0.28448978066444397, 0.10777091979980469, 0.10621733218431473, 0.570780336856842, -0.0848480835556984, 0.12603387236595154, 0.019410042092204094, -0.2557648718357086, -0.28177037835121155], [0.41616103053092957, -0.2844892144203186, 0.10777274519205093, 0.10621748864650726, 0.5707803964614868, -0.08484737575054169, 0.126032754778862, 0.01940888725221157, -0.25576528906822205, -0.2817706763744354], [0.41616111993789673, -0.28448861837387085, 0.10777312517166138, 0.10621698945760727, 0.5707801580429077, -0.08484605699777603, 0.12603259086608887, 0.019408075138926506, -0.25576576590538025, -0.28177008032798767], [0.416161447763443, -0.28448864817619324, 0.10777200758457184, 0.1062161922454834, 0.5707800388336182, -0.08484550565481186, 0.1260336935520172, 0.019408633932471275, -0.25576573610305786, -0.28176912665367126], [0.4161621034145355, -0.28449124097824097, 0.10776667296886444, 0.10621485114097595, 0.570780873298645, -0.08484639972448349, 0.12603852152824402, 0.019413400441408157, -0.25576549768447876, -0.2817663550376892], [0.4161612391471863, -0.28449326753616333, 0.10776644200086594, 0.1062159463763237, 0.5707821846008301, -0.08485153317451477, 0.12603998184204102, 0.01941538229584694, -0.25576329231262207, -0.28176894783973694], [0.4161597192287445, -0.28449150919914246, 0.10777252167463303, 0.10621926188468933, 0.570781946182251, -0.08485326915979385, 0.12603382766246796, 0.019410451874136925, -0.2557631731033325, -0.2817744314670563], [0.4161607623100281, -0.28448981046676636, 0.10777371376752853, 0.10621846467256546, 0.5707809329032898, -0.08484768122434616, 0.12603114545345306, 0.019408581778407097, -0.25576627254486084, -0.2817714214324951], [0.4161609709262848, -0.2844878137111664, 0.10777617990970612, 0.1062171533703804, 0.5707801580429077, -0.08484547585248947, 0.1260305494070053, 0.019406288862228394, -0.2557661533355713, -0.2817707359790802], [0.41616010665893555, -0.28448331356048584, 0.10778138786554337, 0.10621827095746994, 0.5707780718803406, -0.08484332263469696, 0.12602533400058746, 0.019399205222725868, -0.25576603412628174, -0.28177422285079956], [0.4161616265773773, -0.2844794690608978, 0.10778158158063889, 0.10621701925992966, 0.5707752704620361, -0.08483648300170898, 0.1260223090648651, 0.019395705312490463, -0.2557682991027832, -0.28177130222320557], [0.416162371635437, -0.28447631001472473, 0.10778281837701797, 0.10621590167284012, 0.5707731246948242, -0.08483301103115082, 0.1260208934545517, 0.019392970949411392, -0.25576820969581604, -0.2817701995372772], [0.4161624610424042, -0.2844732701778412, 0.10778390616178513, 0.10621610283851624, 0.5707712173461914, -0.08483016490936279, 0.12601862847805023, 0.01938948594033718, -0.25576838850975037, -0.28177064657211304], [0.4161643981933594, -0.28447413444519043, 0.10777752846479416, 0.10621355473995209, 0.5707705616950989, -0.08482690900564194, 0.1260228157043457, 0.01939353719353676, -0.25576940178871155, -0.28176501393318176], [0.4161642789840698, -0.28447696566581726, 0.10777375847101212, 0.10621314495801926, 0.5707716941833496, -0.08483128994703293, 0.12602777779102325, 0.01939825899899006, -0.2557668685913086, -0.2817648649215698], [0.4161641299724579, -0.28448235988616943, 0.10776670277118683, 0.10621345043182373, 0.570774257183075, -0.08483617007732391, 0.1260339766740799, 0.019405759871006012, -0.25576600432395935, -0.28176382184028625], [0.4161626696586609, -0.28448498249053955, 0.10776972770690918, 0.10621613264083862, 0.5707764029502869, -0.08484385162591934, 0.12603315711021423, 0.01940702646970749, -0.255763441324234, -0.28176894783973694], [0.41616031527519226, -0.28448137640953064, 0.10778070986270905, 0.10622081905603409, 0.5707759261131287, -0.0848442018032074, 0.12602250277996063, 0.019397946074604988, -0.25576457381248474, -0.2817765772342682], [0.4161631166934967, -0.284481018781662, 0.10777686536312103, 0.10621671378612518, 0.5707750916481018, -0.08483429253101349, 0.12602415680885315, 0.01939987577497959, -0.25576990842819214, -0.2817670404911041], [0.41616255044937134, -0.28448015451431274, 0.1077793538570404, 0.10621502995491028, 0.5707752108573914, -0.08483648300170898, 0.12602640688419342, 0.019398817792534828, -0.2557668387889862, -0.2817683815956116], [0.41616249084472656, -0.2844812572002411, 0.10777358710765839, 0.10621480643749237, 0.5707753300666809, -0.08483613282442093, 0.12602950632572174, 0.01940091885626316, -0.255767285823822, -0.281767338514328], [0.41616296768188477, -0.28448182344436646, 0.10777395218610764, 0.10621504485607147, 0.5707752108573914, -0.08483916521072388, 0.1260293871164322, 0.0194020364433527, -0.25576546788215637, -0.2817683815956116], [0.4161611795425415, -0.2844790816307068, 0.10778019577264786, 0.10621862858533859, 0.570774495601654, -0.08483967185020447, 0.12602277100086212, 0.019396211951971054, -0.25576555728912354, -0.2817738652229309], [0.4161631166934967, -0.2844782769680023, 0.107778400182724, 0.1062164455652237, 0.5707734227180481, -0.08483315259218216, 0.12602262198925018, 0.019396644085645676, -0.25576895475387573, -0.28176820278167725], [0.41616398096084595, -0.2844809591770172, 0.10777293890714645, 0.10621330887079239, 0.5707745552062988, -0.08483365178108215, 0.12602993845939636, 0.01940232701599598, -0.25576794147491455, -0.28176385164260864], [0.4161616861820221, -0.2844802439212799, 0.10777746140956879, 0.10621635615825653, 0.5707749724388123, -0.08483988046646118, 0.1260274052619934, 0.019398817792534828, -0.25576457381248474, -0.2817714810371399], [0.41616255044937134, -0.28447994589805603, 0.10777556896209717, 0.10621672868728638, 0.570774257183075, -0.08483652770519257, 0.1260254681110382, 0.019398855045437813, -0.255767285823822, -0.28176945447921753], [0.41616231203079224, -0.28447726368904114, 0.1077820360660553, 0.10621731728315353, 0.5707732439041138, -0.08483617007732391, 0.12602108716964722, 0.01939460262656212, -0.2557666003704071, -0.2817716598510742], [0.41616347432136536, -0.28447866439819336, 0.10777517408132553, 0.10621492564678192, 0.5707734227180481, -0.08483133465051651, 0.12602578103542328, 0.01939842291176319, -0.25576937198638916, -0.28176555037498474], [0.41616445779800415, -0.28448328375816345, 0.10776867717504501, 0.1062120571732521, 0.5707753300666809, -0.08483599126338959, 0.12603457272052765, 0.01940641552209854, -0.25576651096343994, -0.28176239132881165], [0.41616156697273254, -0.28448477387428284, 0.10777119547128677, 0.10621632635593414, 0.5707769989967346, -0.08484449982643127, 0.12603320181369781, 0.019405566155910492, -0.2557632327079773, -0.28177061676979065], [0.4161621630191803, -0.28448569774627686, 0.10777099430561066, 0.1062173843383789, 0.5707772970199585, -0.0848434641957283, 0.1260307878255844, 0.019406214356422424, -0.25576552748680115, -0.2817697525024414], [0.41616228222846985, -0.28448668122291565, 0.107772096991539, 0.10621669888496399, 0.5707781910896301, -0.08484350144863129, 0.1260315477848053, 0.01940753310918808, -0.2557658553123474, -0.28176847100257874], [0.41616085171699524, -0.2844851315021515, 0.1077769547700882, 0.10621802508831024, 0.5707782506942749, -0.08484435081481934, 0.12602859735488892, 0.01940334588289261, -0.25576531887054443, -0.2817722260951996], [0.41616156697273254, -0.2844833731651306, 0.10777713358402252, 0.10621710866689682, 0.570777177810669, -0.08484037220478058, 0.1260269582271576, 0.01940140314400196, -0.25576716661453247, -0.2817704677581787], [0.4161619544029236, -0.2844814956188202, 0.10777853429317474, 0.10621628165245056, 0.5707759857177734, -0.08483868837356567, 0.12602607905864716, 0.01939954049885273, -0.25576692819595337, -0.2817700505256653], [0.41616252064704895, -0.28448164463043213, 0.10777509957551956, 0.10621529817581177, 0.5707756280899048, -0.08483688533306122, 0.12602822482585907, 0.01940097101032734, -0.25576743483543396, -0.2817678153514862], [0.4161619246006012, -0.28447970747947693, 0.10777919739484787, 0.10621652007102966, 0.5707747340202332, -0.08483860641717911, 0.12602508068084717, 0.019397635012865067, -0.25576573610305786, -0.28177130222320557], [0.41616207361221313, -0.2844775915145874, 0.10777997970581055, 0.10621719807386398, 0.5707734227180481, -0.08483494818210602, 0.12602202594280243, 0.019394908100366592, -0.25576767325401306, -0.2817709743976593], [0.41616392135620117, -0.2844787538051605, 0.10777553915977478, 0.1062142625451088, 0.5707732439041138, -0.08483213186264038, 0.12602609395980835, 0.019398802891373634, -0.2557685375213623, -0.2817654013633728], [0.4161621332168579, -0.2844773828983307, 0.10778000205755234, 0.10621625185012817, 0.5707732439041138, -0.08483614772558212, 0.12602394819259644, 0.019395429641008377, -0.25576579570770264, -0.2817709445953369], [0.41616326570510864, -0.28447815775871277, 0.10777536779642105, 0.10621548444032669, 0.5707730054855347, -0.08483278006315231, 0.1260252296924591, 0.019397560507059097, -0.25576820969581604, -0.2817672789096832], [0.41616296768188477, -0.28447720408439636, 0.10777944326400757, 0.10621588677167892, 0.5707727670669556, -0.08483508229255676, 0.12602350115776062, 0.019395869225263596, -0.2557663023471832, -0.28176963329315186], [0.4161624610424042, -0.2844761610031128, 0.1077796071767807, 0.10621684044599533, 0.5707724094390869, -0.08483289182186127, 0.12602178752422333, 0.019393961876630783, -0.2557677924633026, -0.28177008032798767], [0.4161638021469116, -0.28447622060775757, 0.1077783852815628, 0.10621495544910431, 0.5707719326019287, -0.0848311260342598, 0.126023069024086, 0.01939527317881584, -0.25576817989349365, -0.2817670702934265], [0.4161628782749176, -0.2844756245613098, 0.1077796220779419, 0.10621576756238937, 0.5707719922065735, -0.08483247458934784, 0.12602268159389496, 0.019394006580114365, -0.25576716661453247, -0.2817692160606384], [0.4161631464958191, -0.28447484970092773, 0.10777987539768219, 0.10621591657400131, 0.570771336555481, -0.08483127504587173, 0.1260213702917099, 0.019392933696508408, -0.2557677626609802, -0.28176915645599365], [0.41616445779800415, -0.28447750210762024, 0.10777363181114197, 0.10621370375156403, 0.570772111415863, -0.08483031392097473, 0.12602674961090088, 0.01939857192337513, -0.25576847791671753, -0.2817641794681549], [0.416162371635437, -0.28447628021240234, 0.10778043419122696, 0.10621656477451324, 0.5707724094390869, -0.08483607321977615, 0.12602294981479645, 0.01939437910914421, -0.2557651102542877, -0.28177160024642944], [0.4161621332168579, -0.2844730019569397, 0.10778389126062393, 0.10621839016675949, 0.570770800113678, -0.08483143895864487, 0.12601648271083832, 0.019388912245631218, -0.2557681202888489, -0.28177276253700256], [0.4161646366119385, -0.2844730019569397, 0.10778038948774338, 0.10621451586484909, 0.5707699060440063, -0.08482570946216583, 0.12601950764656067, 0.01939171366393566, -0.255770206451416, -0.2817653715610504], [0.41616350412368774, -0.28447291254997253, 0.10778097808361053, 0.10621451586484909, 0.570770263671875, -0.08482858538627625, 0.12602147459983826, 0.0193913783878088, -0.25576770305633545, -0.28176772594451904], [0.4161641299724579, -0.28447502851486206, 0.10777520388364792, 0.10621389746665955, 0.5707707405090332, -0.08482880890369415, 0.12602493166923523, 0.019395139068365097, -0.2557681202888489, -0.28176552057266235], [0.41616353392601013, -0.2844754457473755, 0.10777773708105087, 0.10621532797813416, 0.5707711577415466, -0.08483301103115082, 0.12602367997169495, 0.01939493790268898, -0.25576603412628174, -0.281768798828125], [0.41616296768188477, -0.28447502851486206, 0.10777903348207474, 0.10621694475412369, 0.5707712173461914, -0.08483219891786575, 0.126021146774292, 0.019393417984247208, -0.2557674050331116, -0.28176993131637573], [0.4161643087863922, -0.28447678685188293, 0.10777588188648224, 0.10621469467878342, 0.5707717537879944, -0.08483042567968369, 0.12602442502975464, 0.0193970687687397, -0.25576847791671753, -0.2817654311656952], [0.41616395115852356, -0.28448033332824707, 0.10777171701192856, 0.10621374845504761, 0.5707737803459167, -0.08483421802520752, 0.1260303556919098, 0.019402170553803444, -0.2557668387889862, -0.2817646265029907], [0.4161624014377594, -0.284481406211853, 0.10777398198843002, 0.10621607303619385, 0.5707749128341675, -0.08483981341123581, 0.12602922320365906, 0.01940152235329151, -0.2557647228240967, -0.28176966309547424], [0.41616299748420715, -0.2844836711883545, 0.10777051746845245, 0.1062159314751625, 0.5707758665084839, -0.08483915030956268, 0.12603068351745605, 0.01940491795539856, -0.2557665705680847, -0.2817671597003937], [0.4161611795425415, -0.2844805121421814, 0.1077812984585762, 0.10621868073940277, 0.5707754492759705, -0.08484218269586563, 0.12602342665195465, 0.019397731870412827, -0.25576460361480713, -0.2817743122577667], [0.4161616861820221, -0.2844774127006531, 0.10778218507766724, 0.10621841996908188, 0.570773720741272, -0.08483421802520752, 0.12601955235004425, 0.01939353719353676, -0.25576895475387573, -0.281771719455719], [0.41616353392601013, -0.28447583317756653, 0.10778168588876724, 0.10621479153633118, 0.5707724094390869, -0.08483026176691055, 0.12602132558822632, 0.019393663853406906, -0.2557690739631653, -0.2817673087120056], [0.4161625802516937, -0.28447434306144714, 0.10778150707483292, 0.10621525347232819, 0.5707716941833496, -0.08483071625232697, 0.1260216236114502, 0.01939174346625805, -0.2557677924633026, -0.28176936507225037], [0.4161631464958191, -0.28447234630584717, 0.10778236389160156, 0.1062157079577446, 0.5707700252532959, -0.08482935279607773, 0.1260189563035965, 0.01938938908278942, -0.25576791167259216, -0.28176993131637573], [0.4161640405654907, -0.28447213768959045, 0.10777997970581055, 0.10621494054794312, 0.5707694292068481, -0.08482688665390015, 0.12601971626281738, 0.019390715286135674, -0.25576892495155334, -0.28176721930503845], [0.4161641001701355, -0.2844727337360382, 0.10777948796749115, 0.10621464997529984, 0.5707696676254272, -0.0848279744386673, 0.1260211318731308, 0.019391803070902824, -0.25576797127723694, -0.2817670702934265], [0.41616371273994446, -0.2844732403755188, 0.10777901858091354, 0.10621526837348938, 0.5707699656486511, -0.08482901006937027, 0.12602141499519348, 0.019392138347029686, -0.25576767325401306, -0.28176793456077576], [0.4161641299724579, -0.284474641084671, 0.10777692496776581, 0.1062147468328476, 0.5707705616950989, -0.0848294124007225, 0.12602315843105316, 0.019394468516111374, -0.2557678818702698, -0.28176647424697876], [0.4161636233329773, -0.2844756245613098, 0.10777734220027924, 0.10621528327465057, 0.5707712769508362, -0.08483176678419113, 0.12602373957633972, 0.01939525082707405, -0.25576698780059814, -0.2817677855491638], [0.41616296768188477, -0.2844749391078949, 0.10777994990348816, 0.10621660947799683, 0.5707712769508362, -0.08483240008354187, 0.12602123618125916, 0.019393105059862137, -0.2557670474052429, -0.2817700207233429], [0.41616228222846985, -0.28447043895721436, 0.10778782516717911, 0.10621831566095352, 0.5707694888114929, -0.08482997864484787, 0.12601357698440552, 0.019385457038879395, -0.2557677924633026, -0.2817736268043518], [0.4161643981933594, -0.2844693660736084, 0.1077834963798523, 0.10621510446071625, 0.5707681775093079, -0.08482193946838379, 0.12601545453071594, 0.019386596977710724, -0.25577136874198914, -0.281766414642334], [0.416166216135025, -0.28447458148002625, 0.10777241736650467, 0.10621028393507004, 0.5707699060440063, -0.08482372760772705, 0.1260279268026352, 0.019397292286157608, -0.2557695209980011, -0.2817591726779938], [0.41616255044937134, -0.2844749093055725, 0.10777826607227325, 0.1062154695391655, 0.5707711577415466, -0.08483528345823288, 0.1260250210762024, 0.019393984228372574, -0.2557637691497803, -0.28177115321159363], [0.41616353392601013, -0.28447583317756653, 0.1077752336859703, 0.10621673613786697, 0.5707710385322571, -0.08483182638883591, 0.1260225921869278, 0.019395258277654648, -0.2557678520679474, -0.28176864981651306], [0.4161641597747803, -0.28447675704956055, 0.10777738690376282, 0.1062154695391655, 0.5707717537879944, -0.08483254909515381, 0.12602341175079346, 0.019396979361772537, -0.2557673156261444, -0.28176695108413696], [0.4161624312400818, -0.28447648882865906, 0.10777951776981354, 0.10621681064367294, 0.5707725286483765, -0.08483346551656723, 0.12602268159389496, 0.01939474418759346, -0.25576719641685486, -0.28176990151405334], [0.4161631166934967, -0.2844753563404083, 0.10778065025806427, 0.10621604323387146, 0.5707717537879944, -0.08483169227838516, 0.126021146774292, 0.019393112510442734, -0.25576791167259216, -0.2817692160606384], [0.41616353392601013, -0.2844753563404083, 0.10777868330478668, 0.10621507465839386, 0.5707715749740601, -0.08483031392097473, 0.12602265179157257, 0.01939418539404869, -0.2557683289051056, -0.2817673981189728], [0.4161635935306549, -0.284476101398468, 0.10777728259563446, 0.10621467977762222, 0.5707718133926392, -0.08483152836561203, 0.12602441012859344, 0.019395601004362106, -0.25576743483543396, -0.2817671597003937], [0.4161636531352997, -0.2844780385494232, 0.10777433216571808, 0.10621466487646103, 0.5707725882530212, -0.08483312278985977, 0.12602686882019043, 0.01939849741756916, -0.2557670474052429, -0.2817665636539459], [0.41616228222846985, -0.2844764292240143, 0.10778038948774338, 0.10621721297502518, 0.5707724094390869, -0.08483601361513138, 0.12602205574512482, 0.01939428225159645, -0.2557656764984131, -0.2817718982696533], [0.4161645472049713, -0.2844806909561157, 0.10776947438716888, 0.10621385276317596, 0.5707736015319824, -0.08483141660690308, 0.12602965533733368, 0.019402913749217987, -0.25576937198638916, -0.2817624509334564], [0.4161619544029236, -0.284479022026062, 0.10778050869703293, 0.10621673613786697, 0.5707741379737854, -0.08484037965536118, 0.12602508068084717, 0.01939733698964119, -0.2557636499404907, -0.2817724943161011], [0.41616174578666687, -0.28447726368904114, 0.10777918249368668, 0.10621831566095352, 0.5707732439041138, -0.08483421802520752, 0.12602123618125916, 0.019394319504499435, -0.25576838850975037, -0.28177154064178467], [0.4161638617515564, -0.2844759225845337, 0.10778111219406128, 0.1062152236700058, 0.5707719922065735, -0.08483143150806427, 0.1260211169719696, 0.019394222646951675, -0.2557682991027832, -0.28176775574684143], [0.4161625802516937, -0.28447508811950684, 0.1077803447842598, 0.10621581226587296, 0.5707719922065735, -0.08483100682497025, 0.12602205574512482, 0.019393008202314377, -0.2557681202888489, -0.2817690074443817], [0.41616305708885193, -0.2844727635383606, 0.10778334736824036, 0.10621597617864609, 0.5707704424858093, -0.08483029901981354, 0.126018688082695, 0.019389552995562553, -0.2557675838470459, -0.2817704677581787], [0.4161629378795624, -0.28446945548057556, 0.1077859103679657, 0.10621684044599533, 0.5707687139511108, -0.0848267525434494, 0.12601453065872192, 0.019385337829589844, -0.25576889514923096, -0.281771183013916], [0.4161643385887146, -0.28446781635284424, 0.10778512805700302, 0.10621505975723267, 0.5707671642303467, -0.08482221513986588, 0.1260143667459488, 0.019384652376174927, -0.25577014684677124, -0.28176769614219666], [0.41616517305374146, -0.2844696044921875, 0.10777931660413742, 0.10621284693479538, 0.5707675218582153, -0.0848216563463211, 0.12602008879184723, 0.019389210268855095, -0.2557697892189026, -0.28176382184028625], [0.416163831949234, -0.28446921706199646, 0.10778239369392395, 0.10621492564678192, 0.5707677006721497, -0.08482666313648224, 0.1260184794664383, 0.01938720792531967, -0.2557668685913086, -0.28176918625831604], [0.41616469621658325, -0.2844708561897278, 0.10777760297060013, 0.1062147319316864, 0.5707679390907288, -0.08482467383146286, 0.12601995468139648, 0.019390402361750603, -0.25576910376548767, -0.28176599740982056], [0.41616472601890564, -0.2844725251197815, 0.10777822136878967, 0.10621438175439835, 0.5707689523696899, -0.08482775837182999, 0.1260216385126114, 0.01939263753592968, -0.25576749444007874, -0.28176620602607727], [0.41616278886795044, -0.2844710052013397, 0.10778328776359558, 0.10621727257966995, 0.570769190788269, -0.08482950180768967, 0.12601730227470398, 0.01938810758292675, -0.2557671070098877, -0.2817715108394623], [0.41616562008857727, -0.28447484970092773, 0.10777337849140167, 0.10621311515569687, 0.5707699656486511, -0.08482503145933151, 0.12602461874485016, 0.01939631626009941, -0.2557702660560608, -0.2817617952823639], [0.4161636233329773, -0.2844763398170471, 0.10777702927589417, 0.10621444135904312, 0.5707717537879944, -0.08483371883630753, 0.12602604925632477, 0.019396718591451645, -0.25576528906822205, -0.28176772594451904], [0.41616204380989075, -0.28447481989860535, 0.10778044909238815, 0.10621803253889084, 0.5707715153694153, -0.08483395725488663, 0.12602031230926514, 0.01939200423657894, -0.2557665705680847, -0.28177252411842346], [0.41616350412368774, -0.2844723165035248, 0.10778383165597916, 0.10621697455644608, 0.5707699060440063, -0.08482909947633743, 0.1260162889957428, 0.01938922517001629, -0.255768746137619, -0.28177008032798767], [0.4161641597747803, -0.2844727635383606, 0.10778015106916428, 0.10621459037065506, 0.5707699656486511, -0.08482573926448822, 0.12602026760578156, 0.019391564652323723, -0.25576987862586975, -0.28176575899124146], [0.4161638021469116, -0.28447312116622925, 0.10778003185987473, 0.10621417313814163, 0.5707702040672302, -0.08482857048511505, 0.1260220855474472, 0.01939184032380581, -0.2557675838470459, -0.28176724910736084], [0.41616305708885193, -0.284471720457077, 0.10778181999921799, 0.10621613264083862, 0.5707695484161377, -0.08482935279607773, 0.1260189563035965, 0.019389135763049126, -0.2557673752307892, -0.28177037835121155], [0.4161633551120758, -0.2844686210155487, 0.107786163687706, 0.10621700435876846, 0.5707678198814392, -0.08482642471790314, 0.12601353228092194, 0.019384659826755524, -0.2557685375213623, -0.2817712724208832], [0.4161643981933594, -0.28446725010871887, 0.10778506845235825, 0.10621538758277893, 0.570766806602478, -0.08482132107019424, 0.12601375579833984, 0.01938430219888687, -0.2557705342769623, -0.28176748752593994], [0.41616523265838623, -0.2844685912132263, 0.10778093338012695, 0.10621301084756851, 0.5707671046257019, -0.08482106775045395, 0.1260187327861786, 0.019387729465961456, -0.2557697892189026, -0.28176429867744446], [0.41616466641426086, -0.28447064757347107, 0.10777805745601654, 0.10621339827775955, 0.5707680583000183, -0.08482515066862106, 0.12602189183235168, 0.01939048431813717, -0.2557677626609802, -0.2817656993865967], [0.4161653220653534, -0.2844756245613098, 0.10777054727077484, 0.10621287673711777, 0.5707700252532959, -0.08482836931943893, 0.12602786719799042, 0.019398251548409462, -0.2557675838470459, -0.28176289796829224], [0.4161635637283325, -0.2844778895378113, 0.10777416080236435, 0.10621563345193863, 0.5707720518112183, -0.08483613282442093, 0.12602701783180237, 0.019398989155888557, -0.2557646632194519, -0.2817685306072235], [0.41616326570510864, -0.284480482339859, 0.10777208209037781, 0.10621652007102966, 0.570773720741272, -0.08483613282442093, 0.1260276883840561, 0.019401485100388527, -0.2557668387889862, -0.28176748752593994], [0.41616290807724, -0.2844810485839844, 0.10777606070041656, 0.10621650516986847, 0.5707747340202332, -0.08483850955963135, 0.12602674961090088, 0.01940089650452137, -0.2557658553123474, -0.2817690372467041], [0.41616159677505493, -0.2844792306423187, 0.10777974128723145, 0.10621793568134308, 0.5707745552062988, -0.08483760803937912, 0.12602335214614868, 0.019396763294935226, -0.25576677918434143, -0.28177177906036377], [0.4161628186702728, -0.28447771072387695, 0.10778015106916428, 0.10621626675128937, 0.5707734227180481, -0.08483364433050156, 0.1260223388671875, 0.019395392388105392, -0.25576820969581604, -0.28176918625831604], [0.41616252064704895, -0.2844754457473755, 0.10778211057186127, 0.10621611773967743, 0.5707724094390869, -0.08483241498470306, 0.12602093815803528, 0.01939265988767147, -0.2557677924633026, -0.28177011013031006], [0.41616368293762207, -0.28447601199150085, 0.10777735710144043, 0.10621442645788193, 0.5707718729972839, -0.0848298892378807, 0.12602387368679047, 0.01939510926604271, -0.255768746137619, -0.2817663550376892], [0.4161635637283325, -0.2844769060611725, 0.10777657479047775, 0.10621439665555954, 0.5707722306251526, -0.0848328024148941, 0.12602561712265015, 0.01939673349261284, -0.25576677918434143, -0.28176718950271606], [0.4161628782749176, -0.28447726368904114, 0.10777673870325089, 0.10621599107980728, 0.5707724690437317, -0.08483432978391647, 0.12602466344833374, 0.019396457821130753, -0.2557665705680847, -0.28176915645599365], [0.4161631464958191, -0.28447699546813965, 0.10777811706066132, 0.10621629655361176, 0.5707723498344421, -0.08483383804559708, 0.1260230839252472, 0.019395839422941208, -0.2557671368122101, -0.28176915645599365], [0.41616326570510864, -0.28447747230529785, 0.10777716338634491, 0.1062156930565834, 0.5707727074623108, -0.08483287692070007, 0.12602421641349792, 0.0193968303501606, -0.2557677626609802, -0.28176769614219666], [0.41616353392601013, -0.2844792306423187, 0.10777467489242554, 0.10621462017297745, 0.5707734823226929, -0.08483397215604782, 0.1260274052619934, 0.01939958520233631, -0.25576722621917725, -0.28176629543304443], [0.4161619246006012, -0.2844773232936859, 0.10778055340051651, 0.10621721297502518, 0.570773184299469, -0.08483695983886719, 0.1260228157043457, 0.01939484104514122, -0.2557655870914459, -0.281772255897522], [0.4161628484725952, -0.2844759225845337, 0.10777981579303741, 0.10621681064367294, 0.5707721710205078, -0.08483196049928665, 0.12602078914642334, 0.01939362660050392, -0.2557685375213623, -0.2817695736885071], [0.41616329550743103, -0.28447428345680237, 0.1077822744846344, 0.10621575266122818, 0.5707712769508362, -0.08483065664768219, 0.1260199397802353, 0.01939195953309536, -0.2557680904865265, -0.2817689776420593], [0.41616326570510864, -0.28447380661964417, 0.10778031498193741, 0.10621534287929535, 0.5707709193229675, -0.08482885360717773, 0.12602102756500244, 0.0193918626755476, -0.25576862692832947, -0.2817680537700653], [0.4161628782749176, -0.2844705283641815, 0.10778594017028809, 0.10621647536754608, 0.5707693099975586, -0.08482911437749863, 0.1260160505771637, 0.019386500120162964, -0.25576743483543396, -0.281771719455719], [0.41616350412368774, -0.2844678461551666, 0.10778582096099854, 0.10621635615825653, 0.5707674622535706, -0.08482350409030914, 0.12601338326931, 0.019383825361728668, -0.2557700276374817, -0.2817697823047638], [0.4161655902862549, -0.28446927666664124, 0.10778006166219711, 0.10621277987957001, 0.570767343044281, -0.08482081443071365, 0.1260189563035965, 0.019388733431696892, -0.25577038526535034, -0.28176337480545044], [0.41616424918174744, -0.2844705581665039, 0.1077796071767807, 0.10621380805969238, 0.5707682967185974, -0.08482608199119568, 0.12602125108242035, 0.019389865919947624, -0.2557673454284668, -0.281766802072525], [0.41616353392601013, -0.2844696044921875, 0.1077822595834732, 0.10621626675128937, 0.570767879486084, -0.08482740074396133, 0.12601715326309204, 0.019387073814868927, -0.2557673454284668, -0.28177037835121155], [0.4161648750305176, -0.28447046875953674, 0.10777954757213593, 0.1062149852514267, 0.5707678198814392, -0.0848243236541748, 0.12601831555366516, 0.01938965730369091, -0.2557694613933563, -0.2817660868167877], [0.4161650240421295, -0.2844735383987427, 0.1077759861946106, 0.10621345043182373, 0.5707695484161377, -0.08482663333415985, 0.12602387368679047, 0.01939457282423973, -0.2557682991027832, -0.2817640006542206], [0.41616520285606384, -0.28448063135147095, 0.10776600241661072, 0.10621193796396255, 0.5707729458808899, -0.08483198285102844, 0.12603414058685303, 0.019405007362365723, -0.25576701760292053, -0.2817608118057251], [0.4161635935306549, -0.2844865322113037, 0.107764333486557, 0.10621403157711029, 0.5707765817642212, -0.08484327793121338, 0.1260383129119873, 0.019410988315939903, -0.25576311349868774, -0.2817654311656952], [0.41616201400756836, -0.28449052572250366, 0.10776442289352417, 0.10621722787618637, 0.5707795023918152, -0.0848490297794342, 0.12603794038295746, 0.019413787871599197, -0.2557632029056549, -0.28176888823509216], [0.41616126894950867, -0.284491628408432, 0.10776931047439575, 0.10621856898069382, 0.5707810521125793, -0.08485117554664612, 0.12603501975536346, 0.019412893801927567, -0.2557637095451355, -0.2817710041999817], [0.4161607027053833, -0.28449156880378723, 0.10777156800031662, 0.10621843487024307, 0.5707818269729614, -0.08484960347414017, 0.12603400647640228, 0.019411517307162285, -0.25576531887054443, -0.28177082538604736], [0.4161607027053833, -0.28449031710624695, 0.10777389258146286, 0.10621744394302368, 0.5707815289497375, -0.08484838157892227, 0.12603317201137543, 0.019409386441111565, -0.25576546788215637, -0.28177088499069214], [0.4161616265773773, -0.28449198603630066, 0.10776790231466293, 0.1062152087688446, 0.5707818865776062, -0.08484674245119095, 0.126038059592247, 0.01941331848502159, -0.25576621294021606, -0.281766802072525], [0.4161592721939087, -0.2844870686531067, 0.10777987539768219, 0.10621917247772217, 0.5707802772521973, -0.08485125005245209, 0.12602882087230682, 0.019403517246246338, -0.25576263666152954, -0.2817770838737488], [0.41616126894950867, -0.2844853103160858, 0.10777486860752106, 0.10621781647205353, 0.5707783102989197, -0.0848408192396164, 0.12602762877941132, 0.019403353333473206, -0.25576862692832947, -0.28177008032798767], [0.4161624014377594, -0.28448405861854553, 0.1077771931886673, 0.1062152236700058, 0.5707773566246033, -0.08484075963497162, 0.12602883577346802, 0.01940317451953888, -0.2557663917541504, -0.2817685008049011], [0.41616055369377136, -0.2844814658164978, 0.10777916759252548, 0.10621754825115204, 0.5707764625549316, -0.084840327501297, 0.12602593004703522, 0.019398445263504982, -0.25576627254486084, -0.2817726731300354], [0.4161626696586609, -0.28447988629341125, 0.10777810215950012, 0.10621584206819534, 0.5707746148109436, -0.08483603596687317, 0.1260247528553009, 0.019397975876927376, -0.25576770305633545, -0.2817690968513489], [0.41616225242614746, -0.2844780683517456, 0.10777981579303741, 0.10621622204780579, 0.5707737803459167, -0.08483540266752243, 0.126023530960083, 0.019395995885133743, -0.2557671368122101, -0.28177013993263245], [0.4161628782749176, -0.2844774127006531, 0.10777847468852997, 0.10621567815542221, 0.5707730054855347, -0.08483321219682693, 0.12602367997169495, 0.01939575746655464, -0.2557678818702698, -0.2817686200141907], [0.41616275906562805, -0.28447583317756653, 0.10778069496154785, 0.10621603578329086, 0.5707722306251526, -0.08483314514160156, 0.1260218322277069, 0.01939362660050392, -0.25576719641685486, -0.28176993131637573], [0.41616344451904297, -0.2844761610031128, 0.10777757316827774, 0.10621516406536102, 0.5707719326019287, -0.0848308652639389, 0.12602338194847107, 0.01939515396952629, -0.25576838850975037, -0.2817672789096832], [0.4161643087863922, -0.2844792902469635, 0.10777230560779572, 0.10621332377195358, 0.5707731246948242, -0.08483266830444336, 0.12602919340133667, 0.01940091885626316, -0.2557674050331116, -0.2817641496658325], [0.4161618947982788, -0.28447821736335754, 0.10777878016233444, 0.10621707886457443, 0.5707734823226929, -0.08483856916427612, 0.12602472305297852, 0.019396524876356125, -0.25576460361480713, -0.28177228569984436], [0.41616296768188477, -0.28447815775871277, 0.1077764704823494, 0.10621678084135056, 0.5707730054855347, -0.08483380079269409, 0.12602350115776062, 0.0193970687687397, -0.25576820969581604, -0.2817687392234802], [0.41616326570510864, -0.2844776511192322, 0.10777918249368668, 0.10621573776006699, 0.5707730054855347, -0.08483413606882095, 0.12602351605892181, 0.019396569579839706, -0.25576716661453247, -0.28176847100257874], [0.4161626398563385, -0.2844775915145874, 0.10777788609266281, 0.1062159314751625, 0.570773184299469, -0.08483339846134186, 0.12602433562278748, 0.019396226853132248, -0.25576767325401306, -0.28176864981651306], [0.4161629378795624, -0.28447628021240234, 0.10778018087148666, 0.10621588677167892, 0.5707724094390869, -0.08483357727527618, 0.12602238357067108, 0.019394267350435257, -0.25576701760292053, -0.281769722700119], [0.41616398096084595, -0.28447890281677246, 0.10777268558740616, 0.10621406137943268, 0.5707730650901794, -0.08483163267374039, 0.12602780759334564, 0.019399913027882576, -0.2557685375213623, -0.28176453709602356], [0.41616296768188477, -0.28447970747947693, 0.10777582228183746, 0.1062152087688446, 0.5707738995552063, -0.08483758568763733, 0.12602771818637848, 0.01939971186220646, -0.2557651102542877, -0.2817687690258026], [0.41616198420524597, -0.2844790518283844, 0.10777707397937775, 0.10621747374534607, 0.5707738995552063, -0.08483710139989853, 0.126024529337883, 0.019397486001253128, -0.25576651096343994, -0.2817710340023041], [0.4161633849143982, -0.28447917103767395, 0.10777685046195984, 0.10621581226587296, 0.5707736015319824, -0.08483470976352692, 0.12602481245994568, 0.01939854957163334, -0.25576767325401306, -0.28176775574684143], [0.4161626696586609, -0.28447937965393066, 0.10777692496776581, 0.10621575266122818, 0.5707741379737854, -0.08483553677797318, 0.12602606415748596, 0.01939866878092289, -0.25576701760292053, -0.28176841139793396], [0.41616204380989075, -0.28447720408439636, 0.10778114199638367, 0.10621701925992966, 0.5707732439041138, -0.08483582735061646, 0.12602214515209198, 0.019394326955080032, -0.25576654076576233, -0.2817716896533966], [0.41616228222846985, -0.2844736576080322, 0.10778424888849258, 0.10621745884418488, 0.570771336555481, -0.08483143895864487, 0.12601739168167114, 0.019389664754271507, -0.2557683289051056, -0.28177180886268616], [0.4161628186702728, -0.28446900844573975, 0.10778895765542984, 0.10621701925992966, 0.5707688331604004, -0.08482642471790314, 0.12601256370544434, 0.019383788108825684, -0.2557693123817444, -0.2817717492580414], [0.41616255044937134, -0.28446164727211, 0.10779660195112228, 0.10621778666973114, 0.5707650780677795, -0.08482027053833008, 0.12600433826446533, 0.019373532384634018, -0.25577032566070557, -0.28177425265312195], [0.4161648154258728, -0.28445640206336975, 0.10779580473899841, 0.10621510446071625, 0.5707612037658691, -0.08480992913246155, 0.12600190937519073, 0.019369376823306084, -0.2557734251022339, -0.28176891803741455], [0.41616764664649963, -0.28445860743522644, 0.107784204185009, 0.10620978474617004, 0.5707606673240662, -0.08480630815029144, 0.1260121464729309, 0.019377578049898148, -0.2557733356952667, -0.28175950050354004], [0.4161668121814728, -0.28446322679519653, 0.10777793079614639, 0.10621020942926407, 0.5707626342773438, -0.08481547981500626, 0.1260199397802353, 0.019384577870368958, -0.2557682991027832, -0.28176164627075195], [0.4161665141582489, -0.2844702899456024, 0.10776947438716888, 0.10621199756860733, 0.5707658529281616, -0.08482296019792557, 0.12602604925632477, 0.019393976777791977, -0.2557671070098877, -0.2817617952823639], [0.41616392135620117, -0.28447118401527405, 0.10777916759252548, 0.10621725767850876, 0.5707677006721497, -0.08483197540044785, 0.1260194182395935, 0.019390886649489403, -0.255764365196228, -0.2817712426185608], [0.4161636531352997, -0.2844710052013397, 0.10778126120567322, 0.10621841996908188, 0.570768415927887, -0.08482720702886581, 0.1260155737400055, 0.019389016553759575, -0.2557690739631653, -0.28176984190940857], [0.416166752576828, -0.2844778001308441, 0.10776951909065247, 0.10621127486228943, 0.5707712769508362, -0.08482518047094345, 0.12602931261062622, 0.019401872530579567, -0.2557704448699951, -0.2817574739456177], [0.4161626696586609, -0.2844804525375366, 0.10777387768030167, 0.10621451586484909, 0.5707743167877197, -0.0848391130566597, 0.12603141367435455, 0.019401559606194496, -0.25576335191726685, -0.2817685008049011], [0.41616255044937134, -0.2844826281070709, 0.1077701523900032, 0.10621660947799683, 0.5707752108573914, -0.08483939617872238, 0.12603023648262024, 0.01940333843231201, -0.2557659447193146, -0.2817688286304474], [0.41616320610046387, -0.28448396921157837, 0.10777240246534348, 0.10621613264083862, 0.5707759857177734, -0.08484119176864624, 0.12602989375591278, 0.01940523087978363, -0.25576546788215637, -0.28176799416542053], [0.41616255044937134, -0.28448763489723206, 0.10776785761117935, 0.10621566325426102, 0.5707783699035645, -0.08484216779470444, 0.12603506445884705, 0.019409997388720512, -0.2557663023471832, -0.28176599740982056], [0.41616183519363403, -0.2844892740249634, 0.10777007788419724, 0.10621605813503265, 0.5707798004150391, -0.0848473608493805, 0.12603574991226196, 0.019410548731684685, -0.2557638883590698, -0.2817689776420593], [0.416160523891449, -0.28448837995529175, 0.10777290910482407, 0.1062183603644371, 0.5707799196243286, -0.0848480686545372, 0.12603212893009186, 0.019407570362091064, -0.25576460361480713, -0.2817724347114563], [0.41616177558898926, -0.28448811173439026, 0.10777267068624496, 0.10621697455644608, 0.57077956199646, -0.08484496176242828, 0.12603171169757843, 0.01940791867673397, -0.25576624274253845, -0.28176936507225037], [0.4161617159843445, -0.2844892144203186, 0.1077706515789032, 0.10621575266122818, 0.5707801580429077, -0.08484520763158798, 0.1260349005460739, 0.019410056993365288, -0.2557658553123474, -0.2817678451538086], [0.4161604344844818, -0.284487247467041, 0.1077757179737091, 0.10621771216392517, 0.5707796812057495, -0.08484755456447601, 0.1260310709476471, 0.0194055438041687, -0.2557642459869385, -0.2817729711532593], [0.4161602556705475, -0.28448227047920227, 0.10778167098760605, 0.10621938854455948, 0.570777177810669, -0.08484292030334473, 0.12602299451828003, 0.019397908821702003, -0.2557663023471832, -0.28177517652511597], [0.41616368293762207, -0.28448402881622314, 0.10777179896831512, 0.10621397197246552, 0.5707765817642212, -0.08483505249023438, 0.1260303407907486, 0.019404910504817963, -0.2557697594165802, -0.28176349401474], [0.41616153717041016, -0.28448301553726196, 0.10777738690376282, 0.10621552914381027, 0.5707768797874451, -0.08484240621328354, 0.1260298490524292, 0.01940193958580494, -0.2557641565799713, -0.281770795583725], [0.41616111993789673, -0.28448107838630676, 0.10777711868286133, 0.10621783137321472, 0.5707756876945496, -0.08483948558568954, 0.12602558732032776, 0.019398512318730354, -0.2557666301727295, -0.28177228569984436], [0.41616398096084595, -0.28448277711868286, 0.10777217149734497, 0.10621421784162521, 0.5707754492759705, -0.08483631163835526, 0.12602968513965607, 0.01940397173166275, -0.2557678818702698, -0.2817648649215698], [0.41616290807724, -0.28448671102523804, 0.10776779800653458, 0.10621403157711029, 0.5707777738571167, -0.08484151214361191, 0.1260363608598709, 0.01940952055156231, -0.255765438079834, -0.2817651629447937], [0.41616228222846985, -0.2844908535480499, 0.10776457190513611, 0.10621502995491028, 0.5707800388336182, -0.08484746515750885, 0.12603983283042908, 0.019414033740758896, -0.2557637691497803, -0.2817668318748474], [0.4161606431007385, -0.28449082374572754, 0.10777030140161514, 0.10621844977140427, 0.570780873298645, -0.08485210686922073, 0.12603503465652466, 0.01941126398742199, -0.25576266646385193, -0.28177279233932495], [0.41616079211235046, -0.2844899296760559, 0.10777243226766586, 0.10621890425682068, 0.5707807540893555, -0.08484850078821182, 0.1260317713022232, 0.019409341737627983, -0.2557656168937683, -0.2817716896533966], [0.4161616265773773, -0.2844902575016022, 0.10777179896831512, 0.10621646046638489, 0.5707809925079346, -0.08484624326229095, 0.12603402137756348, 0.01941060833632946, -0.25576627254486084, -0.281768262386322], [0.41616079211235046, -0.2844901382923126, 0.10777203738689423, 0.1062164157629013, 0.5707812309265137, -0.08484777808189392, 0.1260351687669754, 0.01940990798175335, -0.25576499104499817, -0.28176993131637573], [0.416159987449646, -0.28448641300201416, 0.10777802020311356, 0.10621853917837143, 0.57077956199646, -0.0848475769162178, 0.1260286569595337, 0.019403383135795593, -0.25576460361480713, -0.2817746698856354], [0.41616225242614746, -0.28448665142059326, 0.10777175426483154, 0.10621579736471176, 0.5707785487174988, -0.08484090864658356, 0.12603138387203217, 0.019406713545322418, -0.2557680308818817, -0.2817671597003937], [0.41616204380989075, -0.2844873070716858, 0.10777240246534348, 0.10621507465839386, 0.5707789659500122, -0.08484434336423874, 0.12603387236595154, 0.019407955929636955, -0.25576502084732056, -0.28176817297935486], [0.41616055369377136, -0.28448599576950073, 0.10777460038661957, 0.10621774196624756, 0.5707787275314331, -0.08484553545713425, 0.12603060901165009, 0.019404537975788116, -0.25576484203338623, -0.2817724645137787], [0.41616153717041016, -0.2844836115837097, 0.10777746140956879, 0.10621766746044159, 0.5707771182060242, -0.08484216034412384, 0.1260264813899994, 0.0194015521556139, -0.2557663321495056, -0.2817716598510742], [0.41616228222846985, -0.28448328375816345, 0.10777532309293747, 0.10621605813503265, 0.5707767009735107, -0.08483867347240448, 0.12602825462818146, 0.01940261758863926, -0.2557676434516907, -0.28176820278167725], [0.4161618649959564, -0.2844821810722351, 0.10777735710144043, 0.10621607303619385, 0.5707763433456421, -0.0848398432135582, 0.12602771818637848, 0.019400740042328835, -0.25576603412628174, -0.2817700207233429], [0.4161619544029236, -0.2844812870025635, 0.1077764704823494, 0.10621635615825653, 0.5707756280899048, -0.08483822643756866, 0.12602688372135162, 0.019399838522076607, -0.2557668685913086, -0.2817698121070862], [0.41616272926330566, -0.28448110818862915, 0.10777591168880463, 0.10621560364961624, 0.5707750916481018, -0.08483743667602539, 0.1260271817445755, 0.019400397315621376, -0.2557668089866638, -0.28176847100257874], [0.4161624014377594, -0.28448113799095154, 0.10777553915977478, 0.1062159314751625, 0.5707752108573914, -0.08483786135911942, 0.12602756917476654, 0.019400591030716896, -0.2557665705680847, -0.28176888823509216], [0.41616225242614746, -0.2844802141189575, 0.10777755826711655, 0.10621657967567444, 0.5707747936248779, -0.08483798056840897, 0.12602566182613373, 0.019398780539631844, -0.255766361951828, -0.281770259141922], [0.41616278886795044, -0.28448036313056946, 0.10777576267719269, 0.10621587187051773, 0.5707746148109436, -0.08483606576919556, 0.1260264664888382, 0.01939971186220646, -0.25576746463775635, -0.28176820278167725], [0.4161626994609833, -0.2844804525375366, 0.10777635127305984, 0.10621564835309982, 0.5707747340202332, -0.08483704924583435, 0.1260269433259964, 0.01939980871975422, -0.25576654076576233, -0.2817685902118683], [0.41616302728652954, -0.2844824194908142, 0.1077721118927002, 0.10621494054794312, 0.5707754492759705, -0.08483722060918808, 0.12603028118610382, 0.019403189420700073, -0.25576695799827576, -0.28176653385162354], [0.4161621332168579, -0.2844821512699127, 0.10777567327022552, 0.1062164306640625, 0.5707757472991943, -0.08484086394309998, 0.12602832913398743, 0.019401544705033302, -0.25576505064964294, -0.28177034854888916], [0.41616255044937134, -0.284483402967453, 0.10777238011360168, 0.10621616244316101, 0.5707761645317078, -0.08483894914388657, 0.1260296255350113, 0.01940370351076126, -0.25576698780059814, -0.281767874956131], [0.41616278886795044, -0.28448495268821716, 0.107772096991539, 0.10621529817581177, 0.5707770586013794, -0.08484117686748505, 0.12603183090686798, 0.01940598338842392, -0.25576573610305786, -0.2817673683166504], [0.41616103053092957, -0.2844836115837097, 0.1077764555811882, 0.10621781647205353, 0.5707771182060242, -0.08484330028295517, 0.12602820992469788, 0.019402073696255684, -0.25576499104499817, -0.28177234530448914], [0.41616174578666687, -0.284481406211853, 0.10777860879898071, 0.10621769726276398, 0.5707758665084839, -0.08483926206827164, 0.126024529337883, 0.019399011507630348, -0.2557670474052429, -0.28177136182785034], [0.4161640703678131, -0.28448542952537537, 0.10776805877685547, 0.1062130406498909, 0.5707768797874451, -0.08483622968196869, 0.1260342001914978, 0.019408179447054863, -0.2557685673236847, -0.2817619740962982], [0.41616183519363403, -0.2844873368740082, 0.10777056217193604, 0.10621492564678192, 0.5707786679267883, -0.08484597504138947, 0.12603610754013062, 0.01940879039466381, -0.25576311349868774, -0.2817688286304474], [0.4161612391471863, -0.2844885587692261, 0.10776882618665695, 0.10621731728315353, 0.5707793235778809, -0.08484677970409393, 0.12603449821472168, 0.019409222528338432, -0.2557646930217743, -0.28177037835121155], [0.4161628186702728, -0.28449177742004395, 0.1077655702829361, 0.10621538758277893, 0.5707805752754211, -0.08484716713428497, 0.1260381042957306, 0.019414860755205154, -0.25576522946357727, -0.2817659378051758], [0.4161613881587982, -0.28449559211730957, 0.10776353627443314, 0.10621588677167892, 0.5707833170890808, -0.08485236018896103, 0.1260426789522171, 0.019419075921177864, -0.25576356053352356, -0.2817672789096832], [0.4161594808101654, -0.284494549036026, 0.10777068138122559, 0.106219083070755, 0.570783793926239, -0.08485671132802963, 0.12603721022605896, 0.019414152950048447, -0.25576213002204895, -0.2817743122577667], [0.41616109013557434, -0.2844960689544678, 0.10776536911725998, 0.10621713846921921, 0.5707840919494629, -0.08485163748264313, 0.1260395348072052, 0.019417816773056984, -0.25576597452163696, -0.2817680537700653], [0.4161592721939087, -0.2844923138618469, 0.1077766939997673, 0.106219083070755, 0.5707833170890808, -0.08485522866249084, 0.12603315711021423, 0.019410138949751854, -0.25576263666152954, -0.28177544474601746], [0.4161599576473236, -0.28449001908302307, 0.10777396708726883, 0.10621852427721024, 0.5707817077636719, -0.0848471075296402, 0.12603144347667694, 0.019407829269766808, -0.25576722621917725, -0.28177180886268616], [0.41616085171699524, -0.28448572754859924, 0.10778030008077621, 0.10621721297502518, 0.5707793235778809, -0.08484530448913574, 0.1260274350643158, 0.01940261758863926, -0.2557656466960907, -0.2817726731300354], [0.4161596894264221, -0.2844793200492859, 0.10778551548719406, 0.10621929168701172, 0.5707761645317078, -0.08483966439962387, 0.12602004408836365, 0.01939334347844124, -0.2557673156261444, -0.28177595138549805], [0.416163831949234, -0.2844789922237396, 0.10777704417705536, 0.10621374845504761, 0.5707740187644958, -0.08483060449361801, 0.12602499127388, 0.0193977989256382, -0.25577038526535034, -0.2817647457122803], [0.41616272926330566, -0.2844788730144501, 0.10777738690376282, 0.1062140166759491, 0.5707740187644958, -0.08483553677797318, 0.12602759897708893, 0.019398236647248268, -0.25576603412628174, -0.28176799416542053], [0.4161614775657654, -0.28447604179382324, 0.1077813133597374, 0.1062176376581192, 0.570772647857666, -0.08483598381280899, 0.12602123618125916, 0.01939251832664013, -0.2557660639286041, -0.2817734479904175], [0.4161645770072937, -0.28447794914245605, 0.10777365416288376, 0.10621420294046402, 0.5707722902297974, -0.0848301500082016, 0.1260255128145218, 0.019398683682084084, -0.25576943159103394, -0.2817641794681549], [0.41616329550743103, -0.2844795882701874, 0.10777518898248672, 0.10621457546949387, 0.570773720741272, -0.08483605831861496, 0.12602831423282623, 0.01940029300749302, -0.2557657063007355, -0.2817671597003937], [0.41616132855415344, -0.2844773232936859, 0.10778066515922546, 0.10621827095746994, 0.5707733631134033, -0.08483748883008957, 0.1260220855474472, 0.019394252449274063, -0.25576573610305786, -0.28177353739738464], [0.41616374254226685, -0.2844773232936859, 0.10777731239795685, 0.1062157079577446, 0.5707724690437317, -0.08483143895864487, 0.1260228157043457, 0.019396331161260605, -0.2557690739631653, -0.28176698088645935], [0.4161626398563385, -0.2844754755496979, 0.10778222978115082, 0.1062161773443222, 0.5707722306251526, -0.0848333090543747, 0.12602123618125916, 0.01939314231276512, -0.255766898393631, -0.281770259141922], [0.4161628484725952, -0.2844744026660919, 0.10778062045574188, 0.10621608793735504, 0.5707713961601257, -0.08483000844717026, 0.12602059543132782, 0.019391847774386406, -0.2557685971260071, -0.28176915645599365], [0.41616302728652954, -0.2844710648059845, 0.10778571665287018, 0.10621634125709534, 0.5707696080207825, -0.08482912927865982, 0.1260162889957428, 0.019387252628803253, -0.255767822265625, -0.28177112340927124], [0.4161638021469116, -0.2844700217247009, 0.10778255015611649, 0.10621537268161774, 0.5707685351371765, -0.08482418954372406, 0.12601692974567413, 0.01938740164041519, -0.2557700574398041, -0.28176769614219666], [0.4161657691001892, -0.28447383642196655, 0.10777433216571808, 0.10621165484189987, 0.5707694888114929, -0.08482472598552704, 0.1260254979133606, 0.01939546689391136, -0.2557692229747772, -0.2817614674568176], [0.4161631464958191, -0.2844749689102173, 0.1077771931886673, 0.10621502995491028, 0.5707709193229675, -0.08483324199914932, 0.12602496147155762, 0.01939469203352928, -0.2557651102542877, -0.28176915645599365], [0.4161634147167206, -0.284475713968277, 0.10777632147073746, 0.10621649026870728, 0.5707710981369019, -0.08483229577541351, 0.12602278590202332, 0.01939501240849495, -0.25576722621917725, -0.28176891803741455], [0.41616353392601013, -0.2844752371311188, 0.10777981579303741, 0.1062164157629013, 0.5707712769508362, -0.08483217656612396, 0.12602096796035767, 0.01939406618475914, -0.2557673156261444, -0.2817690074443817], [0.4161640405654907, -0.2844780385494232, 0.10777398198843002, 0.10621447116136551, 0.570772647857666, -0.08483073115348816, 0.12602660059928894, 0.019398855045437813, -0.25576868653297424, -0.2817646265029907], [0.4161636531352997, -0.28448066115379333, 0.10777293890714645, 0.1062140166759491, 0.5707741379737854, -0.08483625948429108, 0.12603020668029785, 0.019401947036385536, -0.255765825510025, -0.2817660868167877], [0.4161616861820221, -0.2844798266887665, 0.10777696967124939, 0.10621750354766846, 0.570774495601654, -0.08483957499265671, 0.12602584064006805, 0.019398408010601997, -0.25576508045196533, -0.28177207708358765], [0.416162371635437, -0.2844776213169098, 0.10778043419122696, 0.1062178909778595, 0.5707732439041138, -0.0848357155919075, 0.12602096796035767, 0.019395027309656143, -0.2557673752307892, -0.2817714214324951], [0.41616344451904297, -0.28447777032852173, 0.10777793079614639, 0.10621537268161774, 0.5707731246948242, -0.08483174443244934, 0.12602370977401733, 0.01939692720770836, -0.25576892495155334, -0.2817666828632355], [0.41616320610046387, -0.2844787538051605, 0.10777651518583298, 0.10621441155672073, 0.5707736611366272, -0.08483391255140305, 0.1260269731283188, 0.01939835585653782, -0.2557671070098877, -0.2817669212818146], [0.4161628782749176, -0.2844797670841217, 0.10777440667152405, 0.10621508955955505, 0.5707740783691406, -0.08483605086803436, 0.12602807581424713, 0.019399652257561684, -0.2557663917541504, -0.28176799416542053], [0.41616159677505493, -0.28447607159614563, 0.10778319835662842, 0.1062183752655983, 0.570772647857666, -0.08483738452196121, 0.12601977586746216, 0.01939242146909237, -0.25576549768447876, -0.2817744016647339], [0.4161628186702728, -0.28447335958480835, 0.1077832281589508, 0.10621753334999084, 0.5707709193229675, -0.08482921868562698, 0.12601664662361145, 0.01938982866704464, -0.2557697594165802, -0.2817702889442444], [0.41616541147232056, -0.2844768166542053, 0.10777410119771957, 0.10621190816164017, 0.5707716345787048, -0.08482660353183746, 0.12602679431438446, 0.01939837820827961, -0.2557700276374817, -0.28176093101501465], [0.4161616265773773, -0.28447437286376953, 0.10778336226940155, 0.10621660947799683, 0.5707718133926392, -0.08483579009771347, 0.12602171301841736, 0.019391192123293877, -0.25576427578926086, -0.28177347779273987], [0.4161638915538788, -0.2844754755496979, 0.10777511447668076, 0.10621548444032669, 0.5707710385322571, -0.08482873439788818, 0.1260228157043457, 0.019394811242818832, -0.25576967000961304, -0.28176647424697876], [0.41616523265838623, -0.28447943925857544, 0.10777150839567184, 0.10621251165866852, 0.5707727074623108, -0.084832563996315, 0.12602989375591278, 0.019402364268898964, -0.25576701760292053, -0.28176257014274597], [0.4161616563796997, -0.2844799757003784, 0.10777591168880463, 0.10621712356805801, 0.5707743763923645, -0.08483964949846268, 0.12602750957012177, 0.019399257376790047, -0.2557643949985504, -0.28177154064178467], [0.41616344451904297, -0.28448179364204407, 0.10777214169502258, 0.1062159314751625, 0.5707747340202332, -0.0848366767168045, 0.12602825462818146, 0.01940239407122135, -0.25576743483543396, -0.28176695108413696], [0.41616278886795044, -0.2844827175140381, 0.10777431726455688, 0.10621584206819534, 0.5707758069038391, -0.08483976870775223, 0.12602925300598145, 0.019403278827667236, -0.25576573610305786, -0.28176823258399963], [0.4161616265773773, -0.2844822108745575, 0.10777630656957626, 0.10621733963489532, 0.570776104927063, -0.08484028279781342, 0.12602731585502625, 0.019400866702198982, -0.25576600432395935, -0.2817709147930145], [0.4161633849143982, -0.2844846248626709, 0.1077704206109047, 0.10621457546949387, 0.570776641368866, -0.08483821898698807, 0.12603197991847992, 0.019406072795391083, -0.25576746463775635, -0.2817651629447937], [0.4161619544029236, -0.28448545932769775, 0.10777284950017929, 0.10621582716703415, 0.5707777142524719, -0.0848437249660492, 0.12603244185447693, 0.01940596103668213, -0.2557644248008728, -0.28176936507225037], [0.4161612391471863, -0.28448486328125, 0.10777422040700912, 0.10621769726276398, 0.5707775950431824, -0.08484350889921188, 0.12602946162223816, 0.019403807818889618, -0.25576549768447876, -0.2817714512348175], [0.4161621034145355, -0.28448399901390076, 0.10777553915977478, 0.10621687024831772, 0.5707769989967346, -0.08484123647212982, 0.12602804601192474, 0.0194031223654747, -0.25576651096343994, -0.2817697525024414], [0.41616225242614746, -0.28448474407196045, 0.1077733039855957, 0.10621573776006699, 0.5707773566246033, -0.08484023064374924, 0.12603071331977844, 0.019404858350753784, -0.2557668387889862, -0.28176772594451904], [0.4161621034145355, -0.2844855785369873, 0.10777256637811661, 0.10621549934148788, 0.5707778334617615, -0.08484230190515518, 0.126032292842865, 0.019405849277973175, -0.25576555728912354, -0.28176841139793396], [0.41616111993789673, -0.2844839096069336, 0.10777627676725388, 0.10621756315231323, 0.5707772970199585, -0.08484353870153427, 0.1260283887386322, 0.019402282312512398, -0.25576508045196533, -0.28177228569984436], [0.41616183519363403, -0.2844821810722351, 0.10777735710144043, 0.1062173843383789, 0.5707761645317078, -0.08483967930078506, 0.1260257065296173, 0.01940031535923481, -0.25576701760292053, -0.2817707359790802], [0.4161629378795624, -0.2844831645488739, 0.1077738031744957, 0.10621500015258789, 0.5707762241363525, -0.08483745157718658, 0.12602950632572174, 0.019403405487537384, -0.2557676434516907, -0.28176644444465637], [0.4161624312400818, -0.28448486328125, 0.10777178406715393, 0.10621476173400879, 0.570777177810669, -0.0848408192396164, 0.12603288888931274, 0.019405700266361237, -0.2557656466960907, -0.2817672789096832], [0.4161621630191803, -0.2844867408275604, 0.10776954889297485, 0.10621557384729385, 0.5707780718803406, -0.08484358340501785, 0.12603428959846497, 0.01940797083079815, -0.25576508045196533, -0.28176820278167725], [0.41616150736808777, -0.28448647260665894, 0.10777299106121063, 0.1062173843383789, 0.5707783102989197, -0.08484586328268051, 0.1260313242673874, 0.019406333565711975, -0.2557644248008728, -0.281771183013916], [0.41616109013557434, -0.28448453545570374, 0.10777678340673447, 0.10621849447488785, 0.5707777142524719, -0.08484353125095367, 0.1260271519422531, 0.01940271444618702, -0.25576597452163696, -0.28177231550216675], [0.41616183519363403, -0.2844826877117157, 0.10777823626995087, 0.10621709376573563, 0.5707767009735107, -0.08483953028917313, 0.12602588534355164, 0.019400687888264656, -0.2557673752307892, -0.2817701995372772], [0.4161619544029236, -0.28448107838630676, 0.1077786237001419, 0.10621611773967743, 0.5707758665084839, -0.0848376676440239, 0.1260259747505188, 0.019399071112275124, -0.255767285823822, -0.28176966309547424], [0.4161616563796997, -0.2844778001308441, 0.10778200626373291, 0.1062169149518013, 0.5707741379737854, -0.08483640849590302, 0.12602220475673676, 0.019394349306821823, -0.2557668685913086, -0.28177204728126526], [0.41616296768188477, -0.28447651863098145, 0.1077793538570404, 0.10621561855077744, 0.570772647857666, -0.08483173698186874, 0.12602226436138153, 0.019394438713788986, -0.25576871633529663, -0.28176844120025635], [0.4161633253097534, -0.28447601199150085, 0.10777927190065384, 0.10621488094329834, 0.5707720518112183, -0.08483190089464188, 0.12602320313453674, 0.01939466968178749, -0.2557675838470459, -0.28176796436309814], [0.41616252064704895, -0.2844741940498352, 0.10778173059225082, 0.10621650516986847, 0.5707712769508362, -0.08483199030160904, 0.12602026760578156, 0.0193913783878088, -0.25576722621917725, -0.2817709147930145], [0.4161646068096161, -0.28447645902633667, 0.10777436196804047, 0.10621374845504761, 0.5707714557647705, -0.08482871949672699, 0.1260252594947815, 0.01939709112048149, -0.25576919317245483, -0.28176409006118774], [0.41616323590278625, -0.28447702527046204, 0.10777754336595535, 0.10621510446071625, 0.5707723498344421, -0.08483463525772095, 0.12602540850639343, 0.019396673887968063, -0.2557656466960907, -0.28176864981651306], [0.4161619544029236, -0.2844747304916382, 0.10778168588876724, 0.10621806234121323, 0.5707716345787048, -0.08483391255140305, 0.12601956725120544, 0.019391564652323723, -0.2557668089866638, -0.2817727029323578], [0.41616392135620117, -0.28447389602661133, 0.10778066515922546, 0.10621581226587296, 0.5707705616950989, -0.08482855558395386, 0.12601928412914276, 0.01939203403890133, -0.2557693421840668, -0.2817676365375519], [0.4161636531352997, -0.28447386622428894, 0.10778040438890457, 0.10621480643749237, 0.570770800113678, -0.08482886850833893, 0.12602147459983826, 0.019392510876059532, -0.2557682991027832, -0.28176724910736084], [0.4161638617515564, -0.2844754159450531, 0.10777644068002701, 0.10621414333581924, 0.5707712769508362, -0.08482972532510757, 0.12602469325065613, 0.019395146518945694, -0.25576794147491455, -0.2817661166191101], [0.4161625802516937, -0.28447312116622925, 0.10778284817934036, 0.10621678084135056, 0.5707705616950989, -0.0848328024148941, 0.12601928412914276, 0.019390253350138664, -0.25576603412628174, -0.28177204728126526], [0.4161624014377594, -0.28446826338768005, 0.10778877139091492, 0.10621869564056396, 0.5707681775093079, -0.08482717722654343, 0.12601102888584137, 0.019382702186703682, -0.25576889514923096, -0.28177374601364136], [0.4161648154258728, -0.28446635603904724, 0.1077866181731224, 0.10621494054794312, 0.5707663297653198, -0.08481910079717636, 0.12601213157176971, 0.019382910802960396, -0.2557717561721802, -0.28176650404930115], [0.41616493463516235, -0.2844665050506592, 0.10778401046991348, 0.1062130406498909, 0.570766270160675, -0.08481956273317337, 0.12601645290851593, 0.019384481012821198, -0.25576987862586975, -0.28176531195640564], [0.4161636233329773, -0.2844637632369995, 0.10778815299272537, 0.10621558874845505, 0.5707650184631348, -0.08482181280851364, 0.1260119080543518, 0.01937931962311268, -0.2557680904865265, -0.28177112340927124], [0.4161642789840698, -0.28445956110954285, 0.10779168456792831, 0.10621673613786697, 0.5707623958587646, -0.08481656014919281, 0.1260051727294922, 0.01937389001250267, -0.2557704448699951, -0.28177130222320557], [0.41616666316986084, -0.2844601273536682, 0.10778583586215973, 0.10621295124292374, 0.5707616806030273, -0.0848105326294899, 0.1260097473859787, 0.01937812753021717, -0.25577276945114136, -0.28176310658454895], [0.4161671996116638, -0.28446564078330994, 0.10777664929628372, 0.10621009767055511, 0.5707640647888184, -0.08481507748365402, 0.12602099776268005, 0.019387632608413696, -0.2557699978351593, -0.2817592918872833], [0.41616499423980713, -0.2844693660736084, 0.1077759712934494, 0.1062132939696312, 0.5707665085792542, -0.08482549339532852, 0.12602302432060242, 0.019390439614653587, -0.2557658851146698, -0.28176599740982056], [0.4161651134490967, -0.28447359800338745, 0.10777221620082855, 0.10621479153633118, 0.5707685947418213, -0.08482832461595535, 0.12602438032627106, 0.01939551904797554, -0.2557671070098877, -0.281765341758728], [0.4161636531352997, -0.28447404503822327, 0.10777928680181503, 0.10621710866689682, 0.5707700252532959, -0.08483274281024933, 0.1260206401348114, 0.019393470138311386, -0.2557658851146698, -0.2817699909210205], [0.41616350412368774, -0.28447476029396057, 0.10777866840362549, 0.10621681064367294, 0.5707709193229675, -0.08482977002859116, 0.12602072954177856, 0.01939362660050392, -0.25576871633529663, -0.2817680537700653], [0.41616466641426086, -0.2844776213169098, 0.10777463018894196, 0.10621355473995209, 0.5707722306251526, -0.08483031392097473, 0.1260267198085785, 0.019398735836148262, -0.2557682991027832, -0.28176379203796387], [0.4161626398563385, -0.2844782769680023, 0.10777657479047775, 0.10621552914381027, 0.5707733631134033, -0.08483604341745377, 0.12602673470973969, 0.019397806376218796, -0.25576555728912354, -0.2817692160606384], [0.41616225242614746, -0.2844763994216919, 0.10778016597032547, 0.10621759295463562, 0.5707724690437317, -0.08483531326055527, 0.12602132558822632, 0.019393812865018845, -0.2557665705680847, -0.2817719876766205], [0.41616520285606384, -0.284481406211853, 0.10776820778846741, 0.1062128096818924, 0.5707738399505615, -0.0848311111330986, 0.1260310709476471, 0.01940460503101349, -0.2557694911956787, -0.28176066279411316], [0.4161631166934967, -0.2844853401184082, 0.10776925086975098, 0.10621383786201477, 0.5707768201828003, -0.0848422423005104, 0.1260358691215515, 0.019408171996474266, -0.2557636499404907, -0.2817661762237549], [0.4161587059497833, -0.2844783663749695, 0.10778646916151047, 0.10622250288724899, 0.5707750916481018, -0.08484566956758499, 0.12601841986179352, 0.019391899928450584, -0.2557629644870758, -0.2817820906639099], [0.41616347432136536, -0.284475713968277, 0.10778146237134933, 0.10621757805347443, 0.5707721710205078, -0.08482854068279266, 0.1260167360305786, 0.019392473623156548, -0.2557721436023712, -0.2817680835723877], [0.41616401076316833, -0.2844752073287964, 0.10778205096721649, 0.10621342062950134, 0.5707719922065735, -0.08482887595891953, 0.12602238357067108, 0.019393932074308395, -0.2557688057422638, -0.2817654609680176], [0.4161631166934967, -0.28447750210762024, 0.10777425765991211, 0.10621338337659836, 0.5707728862762451, -0.08483095467090607, 0.12602835893630981, 0.01939743384718895, -0.255767822265625, -0.2817656099796295], [0.41616323590278625, -0.2844775319099426, 0.10777641087770462, 0.10621489584445953, 0.5707724690437317, -0.08483592420816422, 0.12602607905864716, 0.019397031515836716, -0.2557651400566101, -0.2817692756652832], [0.41616174578666687, -0.2844744324684143, 0.10778249800205231, 0.10621887445449829, 0.5707713961601257, -0.08483473211526871, 0.1260181963443756, 0.01939096860587597, -0.25576654076576233, -0.28177395462989807], [0.4161631464958191, -0.28447070717811584, 0.10778685659170151, 0.10621774196624756, 0.5707693099975586, -0.08482753485441208, 0.12601324915885925, 0.01938636600971222, -0.2557695508003235, -0.28177112340927124], [0.4161642789840698, -0.2844700515270233, 0.10778345167636871, 0.10621441155672073, 0.5707687139511108, -0.08482252806425095, 0.12601707875728607, 0.019387684762477875, -0.25577086210250854, -0.28176581859588623], [0.4161645174026489, -0.28447115421295166, 0.10777987539768219, 0.10621283203363419, 0.5707688927650452, -0.08482469618320465, 0.12602169811725616, 0.019390208646655083, -0.2557685971260071, -0.2817651927471161], [0.41616326570510864, -0.2844698131084442, 0.10778253525495529, 0.10621561855077744, 0.5707682967185974, -0.08482801914215088, 0.126018226146698, 0.019387178122997284, -0.2557668387889862, -0.2817705273628235], [0.41616398096084595, -0.28446826338768005, 0.10778355598449707, 0.10621634125709534, 0.5707671046257019, -0.08482466638088226, 0.12601454555988312, 0.01938539743423462, -0.25576895475387573, -0.2817695438861847], [0.4161645770072937, -0.28446727991104126, 0.10778464376926422, 0.10621535778045654, 0.5707665085792542, -0.08482219278812408, 0.12601426243782043, 0.019384853541851044, -0.25576964020729065, -0.2817676365375519], [0.41616472601890564, -0.2844679057598114, 0.10778230428695679, 0.10621423274278641, 0.570766806602478, -0.0848214253783226, 0.12601695954799652, 0.01938621699810028, -0.2557696998119354, -0.28176602721214294], [0.41616520285606384, -0.28447020053863525, 0.10777807235717773, 0.10621308535337448, 0.5707676410675049, -0.08482342958450317, 0.12602120637893677, 0.019390223547816277, -0.25576865673065186, -0.2817644774913788], [0.41616421937942505, -0.2844714820384979, 0.10777844488620758, 0.1062147319316864, 0.5707685351371765, -0.08482783287763596, 0.12602131068706512, 0.019391043111681938, -0.25576695799827576, -0.2817675769329071], [0.41616320610046387, -0.2844695746898651, 0.10778402537107468, 0.1062173992395401, 0.5707680583000183, -0.08482832461595535, 0.12601545453071594, 0.019386492669582367, -0.2557673156261444, -0.2817716598510742], [0.4161655306816101, -0.2844725549221039, 0.10777592658996582, 0.1062137633562088, 0.5707687735557556, -0.08482328802347183, 0.12602150440216064, 0.019393261522054672, -0.25577065348625183, -0.2817627191543579], [0.4161647856235504, -0.2844763994216919, 0.10777395218610764, 0.10621277987957001, 0.5707711577415466, -0.0848304033279419, 0.1260279268026352, 0.019398318603634834, -0.2557666003704071, -0.28176388144493103], [0.416163831949234, -0.2844817638397217, 0.10776716470718384, 0.10621386766433716, 0.5707740783691406, -0.084835946559906, 0.12603352963924408, 0.019404828548431396, -0.2557659149169922, -0.28176453709602356], [0.4161633849143982, -0.2844858169555664, 0.10776717960834503, 0.10621516406536102, 0.5707764625549316, -0.08484302461147308, 0.12603497505187988, 0.01940896175801754, -0.2557638883590698, -0.281766802072525], [0.416161447763443, -0.2844870090484619, 0.10777091979980469, 0.10621827095746994, 0.5707781910896301, -0.08484645187854767, 0.12603209912776947, 0.01940779946744442, -0.2557641267776489, -0.28177115321159363], [0.4161621034145355, -0.2844882607460022, 0.10777094960212708, 0.10621719807386398, 0.5707791447639465, -0.08484473824501038, 0.12603247165679932, 0.019409043714404106, -0.25576603412628174, -0.2817685604095459], [0.41616135835647583, -0.284488320350647, 0.10777303576469421, 0.10621687024831772, 0.5707798600196838, -0.08484599739313126, 0.12603285908699036, 0.019408298656344414, -0.25576528906822205, -0.2817697823047638], [0.41616150736808777, -0.28448915481567383, 0.10777068138122559, 0.10621620714664459, 0.5707801580429077, -0.08484555035829544, 0.12603464722633362, 0.019409528002142906, -0.25576579570770264, -0.28176867961883545], [0.4161614775657654, -0.28448957204818726, 0.10777074098587036, 0.10621616244316101, 0.5707803964614868, -0.08484731614589691, 0.12603510916233063, 0.01941012404859066, -0.2557647228240967, -0.28176936507225037], [0.4161597788333893, -0.28448548913002014, 0.1077791377902031, 0.10621946305036545, 0.5707789659500122, -0.08484772592782974, 0.12602707743644714, 0.01940223015844822, -0.25576430559158325, -0.2817758023738861], [0.41616156697273254, -0.28448283672332764, 0.10777842998504639, 0.10621772706508636, 0.5707769393920898, -0.08483922481536865, 0.12602472305297852, 0.01940016634762287, -0.2557683289051056, -0.2817707061767578], [0.41616320610046387, -0.2844841778278351, 0.10777315497398376, 0.10621379315853119, 0.5707769393920898, -0.08483723551034927, 0.12603126466274261, 0.01940484344959259, -0.25576797127723694, -0.28176483511924744], [0.4161626100540161, -0.28448787331581116, 0.10776706039905548, 0.10621339827775955, 0.5707787275314331, -0.08484262228012085, 0.12603814899921417, 0.019410422071814537, -0.2557651698589325, -0.2817651927471161], [0.41616180539131165, -0.2844906747341156, 0.107765793800354, 0.10621555894613266, 0.5707801580429077, -0.08484895527362823, 0.12603896856307983, 0.019413109868764877, -0.25576311349868774, -0.2817686200141907], [0.4161597192287445, -0.2844872772693634, 0.10777666419744492, 0.10622051358222961, 0.5707794427871704, -0.08485116064548492, 0.12602850794792175, 0.019404985010623932, -0.2557629346847534, -0.2817768156528473], [0.4161617159843445, -0.2844862639904022, 0.10777470469474792, 0.10621816664934158, 0.5707785487174988, -0.08484169840812683, 0.12602774798870087, 0.01940508931875229, -0.255768358707428, -0.28176945447921753], [0.4161619544029236, -0.28448545932769775, 0.10777655988931656, 0.10621561855077744, 0.5707784295082092, -0.08484172821044922, 0.1260300725698471, 0.019404642283916473, -0.25576648116111755, -0.2817685008049011], [0.4161602556705475, -0.28448188304901123, 0.10778053849935532, 0.10621781647205353, 0.5707770586013794, -0.08484169095754623, 0.12602561712265015, 0.019398154690861702, -0.255765825510025, -0.28177377581596375], [0.4161614179611206, -0.2844764292240143, 0.10778509825468063, 0.10621802508831024, 0.5707736015319824, -0.08483567088842392, 0.12601830065250397, 0.019391341134905815, -0.25576773285865784, -0.28177374601364136], [0.41616252064704895, -0.2844718098640442, 0.10778704285621643, 0.10621684044599533, 0.5707706809043884, -0.08482836186885834, 0.12601490318775177, 0.019386954605579376, -0.2557696998119354, -0.28177112340927124], [0.4161636233329773, -0.28446924686431885, 0.10778598487377167, 0.10621480643749237, 0.5707686543464661, -0.08482376486063004, 0.12601546943187714, 0.019385389983654022, -0.25577014684677124, -0.28176820278167725], [0.41616642475128174, -0.284475713968277, 0.10776878148317337, 0.10620951652526855, 0.5707702040672302, -0.0848228707909584, 0.1260303258895874, 0.01939934678375721, -0.25577038526535034, -0.2817573547363281], [0.41616445779800415, -0.2844821512699127, 0.10776577889919281, 0.10621165484189987, 0.5707738399505615, -0.08483804017305374, 0.12603722512722015, 0.019406788051128387, -0.25576314330101013, -0.28176364302635193], [0.4161624014377594, -0.2844866216182709, 0.10776452720165253, 0.10621675103902817, 0.5707767605781555, -0.08484542369842529, 0.12603604793548584, 0.01940983347594738, -0.25576305389404297, -0.2817689776420593], [0.41616302728652954, -0.2844909131526947, 0.10776448249816895, 0.10621684044599533, 0.5707793235778809, -0.08484766632318497, 0.12603704631328583, 0.019414778798818588, -0.25576433539390564, -0.2817668616771698], [0.4161610007286072, -0.2844928801059723, 0.10776843130588531, 0.10621815174818039, 0.570781946182251, -0.08485156297683716, 0.1260371208190918, 0.019414659589529037, -0.2557637393474579, -0.28177008032798767], [0.4161599576473236, -0.2844911813735962, 0.10777413100004196, 0.10621918737888336, 0.5707821249961853, -0.08485132455825806, 0.1260327696800232, 0.019409706816077232, -0.2557643949985504, -0.2817733883857727], [0.41616082191467285, -0.28448954224586487, 0.10777411609888077, 0.10621754825115204, 0.5707810521125793, -0.08484673500061035, 0.12603189051151276, 0.019408246502280235, -0.25576651096343994, -0.28177058696746826], [0.41616180539131165, -0.28449052572250366, 0.10776994377374649, 0.10621501505374908, 0.5707811117172241, -0.0848456397652626, 0.1260363757610321, 0.019411427900195122, -0.25576621294021606, -0.28176701068878174], [0.4161616563796997, -0.2844935357570648, 0.10776492208242416, 0.10621453076601028, 0.5707823634147644, -0.08484947681427002, 0.12604162096977234, 0.019416186958551407, -0.25576433539390564, -0.2817666232585907], [0.4161595404148102, -0.28449127078056335, 0.10777316987514496, 0.10621894896030426, 0.570781946182251, -0.08485451340675354, 0.12603434920310974, 0.019410034641623497, -0.2557620108127594, -0.2817753851413727], [0.41616111993789673, -0.2844911217689514, 0.10776986926794052, 0.10621799528598785, 0.5707812905311584, -0.0848475843667984, 0.12603358924388885, 0.019411182031035423, -0.25576668977737427, -0.2817697525024414], [0.4161616563796997, -0.28449171781539917, 0.10777075588703156, 0.10621587187051773, 0.5707817077636719, -0.08484847098588943, 0.12603627145290375, 0.019412722438573837, -0.2557651400566101, -0.28176817297935486], [0.41616106033325195, -0.28449440002441406, 0.10776523500680923, 0.10621552914381027, 0.570783257484436, -0.08485009521245956, 0.12604130804538727, 0.019416559487581253, -0.255764901638031, -0.281767338514328], [0.4161602854728699, -0.28449392318725586, 0.10776974260807037, 0.10621733218431473, 0.5707831978797913, -0.08485475182533264, 0.12603822350502014, 0.019414205104112625, -0.2557624876499176, -0.2817722260951996], [0.4161600172519684, -0.2844928801059723, 0.10777036100625992, 0.10621868073940277, 0.5707827806472778, -0.08485198765993118, 0.1260351538658142, 0.019412441179156303, -0.25576481223106384, -0.28177228569984436], [0.41616153717041016, -0.28449392318725586, 0.1077682375907898, 0.10621614754199982, 0.5707828998565674, -0.08484990149736404, 0.12603795528411865, 0.019415292888879776, -0.25576555728912354, -0.28176775574684143], [0.4161601662635803, -0.28449392318725586, 0.10776978731155396, 0.10621700435876846, 0.5707834959030151, -0.08485276997089386, 0.12603837251663208, 0.01941431686282158, -0.25576379895210266, -0.28177085518836975], [0.41616153717041016, -0.28449758887290955, 0.10776159167289734, 0.10621507465839386, 0.5707845687866211, -0.0848521813750267, 0.12604431807994843, 0.019420893862843513, -0.25576499104499817, -0.28176578879356384], [0.4161604046821594, -0.2844997048377991, 0.10776321589946747, 0.10621634125709534, 0.57078617811203, -0.08485928922891617, 0.1260455697774887, 0.019422724843025208, -0.25576159358024597, -0.28176969289779663], [0.41615843772888184, -0.28449779748916626, 0.10776938498020172, 0.10622037947177887, 0.5707860589027405, -0.08486063033342361, 0.12603868544101715, 0.019417066127061844, -0.25576210021972656, -0.2817758321762085], [0.4161606431007385, -0.28449803590774536, 0.10776674747467041, 0.10621771216392517, 0.5707855820655823, -0.08485449105501175, 0.1260395497083664, 0.01941906102001667, -0.2557656466960907, -0.2817692160606384], [0.41615957021713257, -0.2844966650009155, 0.10777094960212708, 0.1062176525592804, 0.570785641670227, -0.08485634624958038, 0.12603901326656342, 0.019416499882936478, -0.2557635009288788, -0.2817719280719757], [0.4161597490310669, -0.28449633717536926, 0.10776828229427338, 0.10621733218431473, 0.5707851648330688, -0.08485395461320877, 0.12603959441184998, 0.019416306167840958, -0.2557648718357086, -0.2817706763744354], [0.4161600172519684, -0.2844944894313812, 0.1077713891863823, 0.1062173843383789, 0.5707840323448181, -0.084854356944561, 0.12603718042373657, 0.019413936883211136, -0.2557637691497803, -0.28177210688591003], [0.41616055369377136, -0.28449514508247375, 0.10776709020137787, 0.10621671378612518, 0.5707839727401733, -0.0848516970872879, 0.1260393112897873, 0.019416097551584244, -0.2557653486728668, -0.2817690968513489], [0.41615983843803406, -0.2844926416873932, 0.10777381807565689, 0.10621809214353561, 0.5707830190658569, -0.08485395461320877, 0.12603484094142914, 0.019411323592066765, -0.25576314330101013, -0.2817736566066742], [0.41615912318229675, -0.2844875454902649, 0.10777921229600906, 0.10622017085552216, 0.5707806944847107, -0.08484859764575958, 0.12602710723876953, 0.01940341293811798, -0.2557657063007355, -0.2817760705947876], [0.4161616265773773, -0.28448453545570374, 0.10777856409549713, 0.10621676594018936, 0.5707781910896301, -0.08484046161174774, 0.1260264366865158, 0.019401976838707924, -0.2557682693004608, -0.28176984190940857], [0.4161616861820221, -0.2844829559326172, 0.10777761787176132, 0.10621540248394012, 0.570777177810669, -0.08483913540840149, 0.12602832913398743, 0.01940123178064823, -0.2557671368122101, -0.2817690968513489], [0.4161611795425415, -0.28447961807250977, 0.10778091847896576, 0.10621688514947891, 0.5707752704620361, -0.08483881503343582, 0.12602415680885315, 0.019396167248487473, -0.2557661235332489, -0.281772643327713], [0.41616296768188477, -0.2844790816307068, 0.10777644068002701, 0.10621535778045654, 0.5707738995552063, -0.08483387529850006, 0.12602517008781433, 0.019397931173443794, -0.25576847791671753, -0.28176769614219666], [0.41616278886795044, -0.28447824716567993, 0.10777866840362549, 0.10621548444032669, 0.5707734823226929, -0.08483551442623138, 0.1260247379541397, 0.019397009164094925, -0.25576651096343994, -0.2817692160606384], [0.4161622226238251, -0.28447675704956055, 0.10777978599071503, 0.10621684044599533, 0.5707728862762451, -0.08483422547578812, 0.12602229416370392, 0.01939435675740242, -0.255767285823822, -0.2817707061767578], [0.41616350412368774, -0.2844763398170471, 0.10777869820594788, 0.10621538758277893, 0.5707721710205078, -0.08483166247606277, 0.12602268159389496, 0.019395064562559128, -0.25576817989349365, -0.28176775574684143], [0.4161624014377594, -0.2844736874103546, 0.1077837198972702, 0.10621684044599533, 0.5707712769508362, -0.08483216911554337, 0.1260189563035965, 0.019390380010008812, -0.2557671070098877, -0.28177160024642944], [0.4161619544029236, -0.28446730971336365, 0.10779180377721786, 0.10621874034404755, 0.5707681775093079, -0.08482716232538223, 0.12600946426391602, 0.019380467012524605, -0.25576871633529663, -0.2817750573158264], [0.4161642789840698, -0.28446313738822937, 0.107791006565094, 0.10621576756238937, 0.5707650780677795, -0.08481692522764206, 0.12600760161876678, 0.019377607852220535, -0.25577235221862793, -0.28176870942115784], [0.41616588830947876, -0.28446340560913086, 0.1077851727604866, 0.10621190816164017, 0.5707642436027527, -0.08481429517269135, 0.12601397931575775, 0.019381346181035042, -0.25577160716056824, -0.2817632555961609], [0.41616564989089966, -0.2844661474227905, 0.10777919739484787, 0.10621166974306107, 0.5707651376724243, -0.08481886237859726, 0.12601977586746216, 0.01938602328300476, -0.2557688355445862, -0.28176361322402954], [0.4161646366119385, -0.2844669222831726, 0.10778060555458069, 0.10621467977762222, 0.5707655549049377, -0.08482415974140167, 0.12601760029792786, 0.01938582956790924, -0.255766898393631, -0.28176841139793396], [0.41616466641426086, -0.2844671905040741, 0.10778174549341202, 0.10621616244316101, 0.5707657337188721, -0.08482325077056885, 0.12601487338542938, 0.019385598599910736, -0.25576862692832947, -0.28176844120025635], [0.41616562008857727, -0.2844698429107666, 0.10777844488620758, 0.10621407628059387, 0.5707671046257019, -0.08482225984334946, 0.12601915001869202, 0.019390186294913292, -0.25576964020729065, -0.2817639410495758], [0.4161640405654907, -0.2844706177711487, 0.10778112709522247, 0.10621505975723267, 0.5707683563232422, -0.08482687175273895, 0.12601962685585022, 0.019389426335692406, -0.2557673156261444, -0.28176790475845337], [0.41616395115852356, -0.2844710052013397, 0.1077800765633583, 0.10621552914381027, 0.5707685351371765, -0.08482645452022552, 0.12601909041404724, 0.019389426335692406, -0.25576841831207275, -0.28176799416542053], [0.41616368293762207, -0.2844688892364502, 0.1077851876616478, 0.10621640086174011, 0.5707678198814392, -0.08482658863067627, 0.12601496279239655, 0.01938576251268387, -0.25576791167259216, -0.28177040815353394], [0.41616496443748474, -0.28447073698043823, 0.10777841508388519, 0.10621407628059387, 0.5707681775093079, -0.08482252806425095, 0.1260197013616562, 0.01939029060304165, -0.2557704746723175, -0.28176426887512207], [0.4161660969257355, -0.28447720408439636, 0.10776916891336441, 0.10621074587106705, 0.5707709193229675, -0.08482770621776581, 0.12603110074996948, 0.01940116472542286, -0.255767822265625, -0.2817595899105072], [0.41616290807724, -0.28448060154914856, 0.1077708750963211, 0.10621507465839386, 0.570773720741272, -0.08483916521072388, 0.12603165209293365, 0.019402431324124336, -0.255763441324234, -0.2817685008049011], [0.4161623418331146, -0.2844809889793396, 0.10777410119771957, 0.106218121945858, 0.5707743167877197, -0.08484024554491043, 0.12602634727954865, 0.019400635734200478, -0.2557651996612549, -0.28177133202552795], [0.4161621630191803, -0.28447863459587097, 0.10778099298477173, 0.10621874034404755, 0.5707738399505615, -0.08483753353357315, 0.1260208636522293, 0.01939621940255165, -0.255766898393631, -0.28177210688591003], [0.4161621928215027, -0.284475713968277, 0.10778412967920303, 0.10621762275695801, 0.5707727670669556, -0.08483223617076874, 0.12601853907108307, 0.01939193718135357, -0.25576892495155334, -0.28177088499069214], [0.41616326570510864, -0.2844739556312561, 0.1077827587723732, 0.1062149703502655, 0.5707715153694153, -0.0848284512758255, 0.12601998448371887, 0.019391072914004326, -0.25576937198638916, -0.281767874956131], [0.41616320610046387, -0.28447243571281433, 0.1077822744846344, 0.10621469467878342, 0.5707703232765198, -0.08482840657234192, 0.12602011859416962, 0.019389783963561058, -0.25576815009117126, -0.28176867961883545], [0.4161638021469116, -0.28447219729423523, 0.10777981579303741, 0.10621469467878342, 0.5707694888114929, -0.08482745289802551, 0.12602050602436066, 0.01939055137336254, -0.2557683289051056, -0.28176766633987427], [0.4161631166934967, -0.2844694256782532, 0.10778538137674332, 0.10621662437915802, 0.5707682967185974, -0.08482804149389267, 0.12601539492607117, 0.019385896623134613, -0.25576743483543396, -0.2817715108394623], [0.4161651134490967, -0.28447166085243225, 0.10777707397937775, 0.10621383786201477, 0.5707684755325317, -0.08482281863689423, 0.1260206401348114, 0.019391587004065514, -0.25577065348625183, -0.2817636728286743], [0.4161645472049713, -0.2844734489917755, 0.10777802020311356, 0.1062135249376297, 0.570769727230072, -0.08482887595891953, 0.12602370977401733, 0.01939370110630989, -0.25576677918434143, -0.2817659378051758], [0.41616350412368774, -0.2844754457473755, 0.10777502506971359, 0.10621529817581177, 0.5707710385322571, -0.08483109623193741, 0.12602484226226807, 0.019395511597394943, -0.2557671368122101, -0.28176748752593994], [0.41616371273994446, -0.28447577357292175, 0.10777788609266281, 0.10621590167284012, 0.5707712769508362, -0.08483312278985977, 0.1260228157043457, 0.019395191222429276, -0.25576648116111755, -0.2817687690258026], [0.41616323590278625, -0.2844764292240143, 0.10777732729911804, 0.10621629655361176, 0.5707719326019287, -0.08483217656612396, 0.1260230839252472, 0.019395742565393448, -0.2557677924633026, -0.28176820278167725], [0.41616395115852356, -0.28447842597961426, 0.10777502506971359, 0.10621457546949387, 0.5707728862762451, -0.08483271300792694, 0.1260264813899994, 0.019398929551243782, -0.2557675540447235, -0.28176575899124146], [0.4161622226238251, -0.2844774127006531, 0.10777942836284637, 0.10621669888496399, 0.5707731246948242, -0.08483614772558212, 0.1260237693786621, 0.019395601004362106, -0.2557658553123474, -0.2817710041999817], [0.41616201400756836, -0.2844736874103546, 0.10778450965881348, 0.10621821135282516, 0.570771336555481, -0.08483271300792694, 0.1260170191526413, 0.019389456138014793, -0.2557676434516907, -0.28177306056022644]]], 'fractal_dimension': 4.25} 2025-07-28 23:04:44,032 - DEBUG - Sending response: { "message": "File uploaded successfully", "filename": "S001R01.edf", "shape": [ 64, 9760 ], "sampling_rate": 160.0, "channel_names": [ "Fc5.", "Fc3.", "Fc1.", "Fcz.", "Fc2.", "Fc4.", "Fc6.", "C5..", "C3..", "C1..", "Cz..", "C2..", "C4..", "C6..", "Cp5.", "Cp3.", "Cp1.", "Cpz.", "Cp2.", "Cp4.", "Cp6.", "Fp1.", "Fpz.", "Fp2.", "Af7.", "Af3.", "Afz.", "Af4.", "Af8.", "F7..", "F5..", "F3..", "F1..", "Fz..", "F2..", "F4..", "F6..", "F8..", "Ft7.", "Ft8.", "T7..", "T8..", "T9..", "T10.", "Tp7.", "Tp8.", "P7..", "P5..", "P3..", "P1..", "Pz..", "P2..", "P4..", "P6..", "P8..", "Po7.", "Po3.", "Poz.", "Po4.", "Po8.", "O1..", "Oz..", "O2..", "Iz.." ], "metrics": [ { "mean_amplitude": -0.7604508196721314, "mu_psd": 32.96217130036497, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.0400614754098365, "mu_psd": 42.208361534205906, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.0797131147540973, "mu_psd": 39.75499892768321, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.8452868852459003, "mu_psd": 38.731687895830035, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.4572745901639337, "mu_psd": 36.45671846636971, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 3.0593237704918033, "mu_psd": 33.12253401258297, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.7516393442622946, "mu_psd": 20.383899986541035, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.8946721311475412, "mu_psd": 36.13147005560294, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.358299180327869, "mu_psd": 42.707443489824996, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.18688524590164052, "mu_psd": 35.83879768589472, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.3882172131147534, "mu_psd": 32.816917407410266, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.692213114754098, "mu_psd": 31.95003385558746, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.224282786885246, "mu_psd": 28.29165483101699, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.628790983606558, "mu_psd": 17.01563826863389, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.463422131147541, "mu_psd": 36.32390309607568, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.16557377049180302, "mu_psd": 38.3608098936832, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.777049180327868, "mu_psd": 35.58889841907527, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6493852459016396, "mu_psd": 32.76094623423135, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.11547131147541033, "mu_psd": 30.293224827502296, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.5043032786885251, "mu_psd": 29.00179204029715, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.3472336065573767, "mu_psd": 21.313346303950205, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -8.763217213114755, "mu_psd": 30.889085201415394, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -7.782786885245901, "mu_psd": 27.436530092968738, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -8.68954918032787, "mu_psd": 26.901803396603853, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -10.696823770491802, "mu_psd": 31.79732985272577, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -9.142418032786885, "mu_psd": 30.979407517628683, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.964241803278689, "mu_psd": 33.534322865086395, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -4.732991803278689, "mu_psd": 28.50425245527458, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -6.505122950819672, "mu_psd": 23.90336767313496, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.3546106557377042, "mu_psd": 27.836928662869006, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -5.617827868852459, "mu_psd": 35.33012840136983, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.6713114754098355, "mu_psd": 32.67831622400885, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.14334016393442614, "mu_psd": 38.17433457556781, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8379098360655738, "mu_psd": 38.28653350595802, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.4547131147540994, "mu_psd": 35.04637279580251, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8713114754098362, "mu_psd": 31.850613664878395, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.163422131147541, "mu_psd": 25.829493870582244, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.7753073770491805, "mu_psd": 17.6736917924352, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.3829918032786885, "mu_psd": 28.17966031322613, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8619877049180324, "mu_psd": 11.291750159105318, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.9428278688524583, "mu_psd": 27.626524911435336, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.750409836065573, "mu_psd": 9.30286324704405, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.7112704918032788, "mu_psd": 26.482776617605577, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.09641393442622959, "mu_psd": 2.533695442731044, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.14477459016393418, "mu_psd": 30.068746868094838, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6962090163934423, "mu_psd": 11.550468816632018, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8612704918032791, "mu_psd": 37.79443489890606, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.0809426229508203, "mu_psd": 40.656749513463446, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.3059426229508198, "mu_psd": 41.330996096642515, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.5913934426229513, "mu_psd": 41.42380498373986, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.18893442622950787, "mu_psd": 38.186882884316766, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.7969262295081971, "mu_psd": 37.650624175942006, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.1698770491803276, "mu_psd": 33.958598201727426, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.8021516393442623, "mu_psd": 27.053105215942246, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.02530737704918, "mu_psd": 19.503264664200966, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.7867827868852455, "mu_psd": 47.11752538431089, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.0236680327868863, "mu_psd": 48.43728070052847, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.284118852459016, "mu_psd": 46.34457088667734, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.0335040983606556, "mu_psd": 41.35467641899583, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.2284836065573768, "mu_psd": 39.659832169131796, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6304303278688523, "mu_psd": 55.50730913514963, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.154713114754098, "mu_psd": 49.149252934165, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.3248975409836069, "mu_psd": 50.32309919576436, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.56875, "mu_psd": 44.79530326491978, "erd_amplitude": 0.0, "event_latency": 0.0 } ] } 2025-07-28 23:04:44,034 - INFO - 127.0.0.1 - - [28/Jul/2025 23:04:44] "POST /upload HTTP/1.1" 200 - 2025-07-28 23:17:43,120 - INFO - [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m * Running on all addresses (0.0.0.0) * Running on http://127.0.0.1:5000 * Running on http://192.168.3.155:5000 2025-07-28 23:17:43,121 - INFO - [33mPress CTRL+C to quit[0m 2025-07-28 23:18:18,899 - DEBUG - Received upload request 2025-07-28 23:18:18,924 - DEBUG - Saving file to C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001\S001R01.edf 2025-07-28 23:18:18,926 - DEBUG - Loading EDF: C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001\S001R01.edf 2025-07-28 23:18:18,993 - DEBUG - EDF loaded: shape=(64, 9760), sfreq=160.0, channels=64 2025-07-28 23:18:20,889 - DEBUG - Chaos metrics: {'lorentz_trajectory': [[1.0, 1.012526435333749, 1.0488427648448813, 1.1074268310054123, 1.1872456699842253, 1.2879299443535448, 1.4100743204422619, 1.5546044176661293, 1.7226797617541962, 1.9156937847488102, 2.135501404667851, 2.3848509372121334, 2.6668380107922536, 2.984813421248435, 3.342383141022818, 3.7434083191594643, 4.191980636293861, 4.690242034217356, 5.244446379255251, 5.862109805589737, 6.548741906638002, 7.30784573505223, 8.140917802719603, 9.047448080762301, 10.024919999537499, 11.068810448637375, 12.172454030074087, 13.319363905546792, 14.484208344247893, 15.63513294827697, 16.731680385697324, 17.72479039053596, 18.558078017232326, 19.181057568135333, 19.537958095934012, 19.590016084394605, 19.32129990077376, 18.738709795818533, 17.868310041649757, 16.737663372007585, 15.398614892117966, 13.908598791349505, 12.327156229548489, 10.712315173349486, 9.10947837720894, 7.555592979577969, 6.078057482050836, 4.694801809243179, 3.4162471900409197, 2.2452230013149133, 1.181297687437059, 0.22176199989058532, -0.6383710027299765, -1.4063843651789711, -2.090985274463022, -2.6997109542721507, -3.2398852910893883, -3.7188737648943477, -4.144083449163219, -4.522963010868772, -4.862968807665948, -5.170009255773388, -5.4479837854463495, -5.7006486432102905, -5.931734687064622, -6.144947386482708, -6.343966822411869, -6.532447687273377, -6.7136985588011795, -6.8888340066299065, -7.058731372860783, -7.224289979754371, -7.386339467345437, -7.5456397934429615, -7.7028812336301336, -7.858684381264349, -8.013593048435599, -8.167488545892828, -8.319479097017247, -8.46866633725987, -8.614142894434366, -8.754992388717069, -8.890289432646965, -9.019099631125703, -9.140479581417596, -9.253476873149609, -9.35713008831137, -9.450594422061542, -9.532791072591133, -9.602206389748064, -9.657597021076525, -9.698008423928131, -9.722774865461929, -9.731519422644384, -9.724153982249392, -9.700879240858276, -9.662184704859783, -9.608848690450083, -9.541938323632781, -9.462772849451799, -9.371685987178621, -9.269630020722667, -9.158148638239561, -9.038783951303282, -8.913076494906171, -8.782565227458925, -8.648787530790598, -8.513279210148607, -8.377574494198718, -8.243206035025063, -8.111704908130129, -7.984600612434762, -7.863404747441387, -7.7492423187050825, -7.642944184696112, -7.545282114131972, -7.456948549077124, -7.378556604942999, -7.310640070487999, -7.253653407817487, -7.207971752383799, -7.173890912986237, -7.15162737177107, -7.141318284231538, -7.143021479207844, -7.156715458887163, -7.181874959232638, -7.217409249226833, -7.263409657025492, -7.319893661722231, -7.386736338229492, -7.463670357278543, -7.550285985419476, -7.6460310850212085, -7.750211114271484, -7.861989127176871, -7.980385773562762, -8.10427929907338, -8.232405545171764, -8.363357949139786, -8.495914576487744, -8.629752863825058, -8.763459277088652, -8.895515835795143, -9.024427049858648, -9.14871991959078, -9.266943935700645, -9.377671079294855, -9.47949582187751, -9.571035125350217, -9.650928442012074, -9.717837714559675, -9.770447376087121, -9.807531613047413, -9.828752723335299, -9.83379993391946, -9.822445766314303, -9.794701473837263, -9.750817041608803, -9.691281186552414, -9.616821357394612, -9.528403734664938, -9.42723323069597, -9.314753489623305, -9.19264688738557, -9.062834531724416, -8.927461942101298, -8.787713390817125, -8.644830853165788, -8.500562729492893, -8.356569210284198, -8.214422276165605, -8.075605697903164, -7.941515036403072, -7.813457642711677, -7.692652658015469, -7.580231013641087, -7.47723543105532, -7.384620421865098, -7.302954716502444, -7.232317569344705, -7.173131836879367, -7.125744194242481, -7.090413688185375, -7.067311737074662, -7.056522130892233, -7.05804103123526, -7.071776971316195, -7.097550855962773, -7.1350959616180045, -7.184057936340187, -7.2438408624372475, -7.3133908061992265, -7.392661148749552, -7.481583732765693, -7.579917354594806, -7.687247764253738, -7.802987665429025, -7.926376715476891, -8.056481525423253, -8.192195659963717, -8.332239637463571, -8.4751609299578, -8.619333963151075, -8.762960116417757, -8.9040677228019, -9.041733651545048, -9.175411283227357, -9.303033623622047, -9.422692562313493, -9.53264852875856, -9.63133049228661, -9.717335962099487, -9.789430987271533, -9.846550156749583, -9.887796599352956, -9.91244198377347, -9.91992651857543, -9.909852492276912, -9.881840335197099, -9.83624943855869, -9.77383947072025, -9.695523211097457, -9.602366550163127, -9.49558848944719, -9.376561141536701, -9.246809730075842, -9.108012589765915, -8.962001166365349, -8.810760016689695, -8.656426808611627, -8.501215340287875, -8.34670564920694, -8.19447313415197, -8.046067250400013, -7.902926422881614, -7.766378046180814, -7.637638484535146, -7.517813071835638, -7.407896111626812, -7.308770877106684, -7.221209611126764, -7.145873526192057, -7.083219149135018, -7.032952714674168, -6.995232605770079, -6.970275303333803, -6.958205343333993, -6.959055316796903, -6.972765869806392, -6.9991857035039216, -7.038071574088554, -7.089088292816957, -7.151808726003399, -7.225713795019751, -7.31011357873849, -7.403957374717543, -7.507029474944586, -7.619107646305065, -7.739784593686578, -7.868467959978874, -8.004380326073855, -8.146559210865576, -8.293857071250242, -8.444941302126212, -8.598294236393995, -8.752213144956256, -8.904810236717807, -9.054012658585616, -9.197562495468803, -9.334624071478189, -9.464335474289687, -9.584388298062176, -9.692736107769305, -9.787594520645944, -9.86744120618821, -9.931015886153448, -9.97732033456024, -10.005618377688402, -10.015435894078982, -10.006560814534264, -9.979043122117771, -9.933063375833731, -9.868448237605362, -9.786257552142349, -9.687860380509992, -9.574725367862372, -9.448420743442336, -9.3106143205815, -9.163073496700262, -9.00766525330778, -8.846356156001994, -8.681212354469608, -8.514399582486101, -8.348183028946847, -8.184666843939338, -8.025445046639371, -7.871984306766961, -7.725636568489001, -7.587639050419258, -7.459114245618373, -7.341069921593863, -7.234399120300118, -7.139880158138405, -7.058176625956866, -6.989837389050518, -6.935296587161249, -6.894387842218629, -6.866686924439915, -6.8523863742908615, -6.8515848157115595, -6.864281849317243, -6.890378052398285, -6.929674978920194, -6.9818751595236215, -7.046582101524358, -7.12330028891333, -7.211435182356607, -7.310293219195396, -7.4187462322832065, -7.535703212393713, -7.661079587735009, -7.794606359599258, -7.935795192632162, -8.083938414832934, -8.23810901755431, -8.397160655502544, -8.559727646737409, -8.7242249726722, -8.888848278073729, -9.051573871062331, -9.210158723111856, -9.362140469049681, -9.504837407056696, -9.635386638281505, -9.753725229178356, -9.859024334812688, -9.949018731657922, -10.021835817013518, -10.075995609004963, -10.110410746583785, -10.124386489527545, -10.117620718439838, -10.0902039347503, -10.042619260714591, -9.97574243941442, -9.890841834757518, -9.789205553658606, -9.670831001584585, -9.537578170613347, -9.391603304905122, -9.235047511469363, -9.070036760164752, -8.898681883699199, -8.723078577629838, -8.545307400363033, -8.36743377315437, -8.19150798010867, -8.019565168179971, -7.8536288706212245, -7.695622850755487, -7.546800938397233, -7.40817111123786, -7.2806441676331755, -7.1650337266034025, -7.062056227833178, -6.97233093167155, -6.896379919131983, -6.83462809189235, -6.787403172294942, -6.754935703346462, -6.737359048718023, -6.73451248013291, -6.74518638294261, -6.769366675357218, -6.807161898345692, -6.858544770950088, -6.9233521902855575, -7.001285231540347, -7.091909147975802, -7.1946533709263605, -7.308811509799559, -7.4335413520760305, -7.567864863309502, -7.7106681871267995, -7.8607354828340545, -8.017212966693926, -8.179243679756066, -8.345772489958605, -8.5155896051879, -8.687330573278524, -8.859476282013276, -9.030352959123178, -9.198132172287472, -9.360830829133624, -9.516311177237323, -9.66228080412248, -9.796292637261226, -9.915744944073918, -10.017881331929136, -10.100764433156062, -10.164634780781967, -10.208156853214215, -10.230274453611187, -10.230338898474587, -10.20810901764944, -10.163751154324084, -10.097839165030187, -10.011354419642732, -9.905685801380024, -9.782629706803688, -9.64439004581867, -9.493578241673237, -9.333068906145296, -9.162981965277103, -8.98482878759277, -8.801160007163114, -8.614402586788056, -8.426859817996617, -8.240711321046913, -8.058013044926163, -7.880697267350682, -7.710572594765888, -7.549323962346295, -7.398512633995519, -7.2594784903540095, -7.132904663623455, -7.019415088932684, -6.919567309433686, -6.833826511422586, -6.762565524339654, -6.706064820769292, -6.664512516440045, -6.638004370224596, -6.626543784139766, -6.630041803346518, -6.648317116149947, -6.680228095852599, -6.725027301938794, -6.783159275420805, -6.854867279360083, -6.940191550021407, -7.0389692968728825, -7.1508347025859464, -7.275218923035359, -7.411350087299215, -7.55825329765893, -7.714750629599253, -7.879461131808261, -8.050800826177358, -8.226982707801273, -8.406017657705853, -8.587268944634591, -8.770039610765313, -8.952293440642876, -9.131972706673974, -9.306998169127132, -9.47526907613271, -9.6346631636829, -9.78303665563173, -9.918224263695059, -10.038039187450586, -10.140273114337834, -10.22269621965817, -10.283423763794456, -10.3218497007096, -10.337033842066914, -10.328383997380124, -10.295734067952337, -10.239344046876033, -10.159900019033067, -10.058514161094676, -9.936724741521465, -9.796496120563422, -9.640218750259907, -9.47070917443966, -9.291060150592779, -9.10236981618524, -8.906799278867322, -8.707076658711406, -8.505774646253728, -8.305310502494375, -8.107946058897298, -7.915787717390292, -7.730786450365016, -7.554737800676982, -7.389281881645554, -7.235903360998501, -7.095648944771609, -6.96909317908797, -6.8568150132149945, -6.759299456887157, -6.676937580305993, -6.6100265141401024, -6.558769449525145, -6.523275638063845, -6.503560391825989, -6.499545083348426, -6.511057145635067, -6.5372937525509816, -6.576950981572713, -6.6305074059456155, -6.698331105039451, -6.780576972210342, -6.87718671480078, -6.987888854139619, -7.112198725542077, -7.249418478309739, -7.398637075730553, -7.558730295078834, -7.728360727615259, -7.905977778586871, -8.089817667227079, -8.277903426755655, -8.468764577742625, -8.66246318804759, -8.857104546984818, -9.050584770576615, -9.240745084936115, -9.42537182626729, -9.602196440864931, -9.768895485114667, -9.92309062549295, -10.062348638567068, -10.184181410995134, -10.286045939526094, -10.365506505847325, -10.421659650759985, -10.453330840646105, -10.459546454825183, -10.439822357860882, -10.394163899561033, -10.32306591497764, -10.227512724406873, -10.108978133389076, -9.969425432708755, -9.811307398394593, -9.637566291719438, -9.451593963899635, -9.254733542434357, -9.04889371524319, -8.837115157064973, -8.622267102767625, -8.407047347348136, -8.19398224593258, -7.985426713776103, -7.78356422626293, -7.590406818906363, -7.407795087348783, -7.237398053982101, -7.080464817808489, -6.937711176584645, -6.809778415676883, -6.697208695053258, -6.600445049283575, -6.519831387539383, -6.455612493593976, -6.407934025822396, -6.376842517201431, -6.362285375309612, -6.36411088232722, -6.381287515149129, -6.413008531528666, -6.459742401128868, -6.521770632018398, -6.599180401355229, -6.691864555386654, -6.79952160944928, -6.921655747969031, -7.057576824461144, -7.206400361530175, -7.367047550869994, -7.538245253263787, -7.718525998584054, -7.906227985792615, -8.099753826467976, -8.29894800377932, -8.502516477912176, -8.708747135704986, -8.915772781495876, -9.12157113712266, -9.323964841922836, -9.520621452733591, -9.709053443891799, -9.886618207234019, -10.0505180520965, -10.197800205315172, -10.325356811225664, -10.429924931663273, -10.509242694274901, -10.563124617947837, -10.590243943545273, -10.589740727333378, -10.56128123162757, -10.505057924792517, -10.42178948124214, -10.312720781439607, -10.179622911897338, -10.024793165177003, -9.851055039889525, -9.661758240695073, -9.460647126667864, -9.248484210392412, -9.027377880178593, -8.800615601726816, -8.571285307507699, -8.342275396762046, -8.116274735500868, -7.895772656505365, -7.6830589593269405, -7.480223910287188, -7.289158242477907, -7.11152734778165, -6.9483904249257264, -6.80045151960636, -6.668326268035488, -6.552526918389259, -6.453462330808045, -6.371437977396435, -6.306655942223234, -6.259214921321466, -6.2291102226883766, -6.216233766285424, -6.220045735099047, -6.239236728324175, -6.274137938862359, -6.325085252704138, -6.392229563353213, -6.475536771826453, -6.574787786653891, -6.689578523878725, -6.819319907057318, -6.9632378672592, -7.120373343067063, -7.289582280576766, -7.469535633397332, -7.658719362650954, -7.855619290226343, -8.059963378901333, -8.270766971196366, -8.486606756326628, -8.705823907023454, -8.926524079534246, -9.146577413622595, -9.363618532568202, -9.575046543166891, -9.778025035730618, -9.969482084087467, -10.14611024558165, -10.3043665610735, -10.440472554939493, -10.552356346863064, -10.63906505743021, -10.69833474145512, -10.728540915647725, -10.728702008585254, -10.698479360712229, -10.638177224340467, -10.548742763649079, -10.431766054684475, -10.289480085360351, -10.124760755457707, -9.941126876624832, -9.74262704374555, -9.529299146131443, -9.302810678944223, -9.066844954678926, -8.824885570142529, -8.580216406453953, -8.335921629044055, -8.09488568765564, -7.859793316343454, -7.63312953347418, -7.417179641726447, -7.214018230909568, -7.025163097976971, -6.851545744292793, -6.693952201430297, -6.553050292730022, -6.429389633299802, -6.323401630014749, -6.235399481517266, -6.16557817821704, -6.1140145022910435, -6.0806670276835355, -6.065006490935123, -6.065987350328593, -6.083855888450332, -6.118801031573438, -6.170864571821662, -6.239941167169406, -6.325778341441723, -6.427976484314318, -6.545988851313546, -6.679121563816418, -6.826533609050591, -6.987236840094377, -7.16009597587674, -7.343914270556231, -7.538181974375951, -7.742465066178709, -7.955989176337656, -8.177654987369648, -8.40603823393523, -8.639389702838658, -8.875635233027872, -9.11237571559452, -9.346887093773946, -9.57612036294519, -9.796701570630992, -10.004931816497788, -10.196816989822064, -10.370828640690364, -10.524398286970609, -10.653691289698742, -10.755581716924958, -10.827652343713696, -10.868194652143652, -10.876208831307766, -10.851403777313232, -10.794197093281491, -10.705715089348239, -10.58779278266341, -10.441343065899435, -10.267497888805787, -10.069789389187859, -9.851753949508923, -9.616920773699706, -9.368811887158405, -9.110942136750674, -8.846819190809638, -8.579943539135877, -8.313808492997438, -8.051900447666117, -7.797754585466976, -7.553852312253302, -7.322005783592637, -7.103842314261366, -6.900804378244723, -6.714149608736789, -6.544950798140497, -6.394095898067622, -6.262288019338793, -6.15004543198348, -6.057701565240005, -5.984875493197264, -5.930640461362261, -5.895014964238059, -5.877960628182321, -5.879358024868149, -5.899006671284084, -5.936625029734106, -5.991850507837634, -6.064239458529525, -6.1532671800600784, -6.258327915995029, -6.378456196120566, -6.512769761829688, -6.661698356131369, -6.825438944131511, -7.003875176621308, -7.196577390077255, -7.402802606661146, -7.621494534220067, -7.851283566286405, -8.090486782077845, -8.337107946497365, -8.58883751013325, -8.843052609259068, -9.096817065833694, -9.347569994447012, -9.59412944296327, -9.83274892586172, -10.059610516710844, -10.271081476082484, -10.463714251551842, -10.634246477697486, -10.779600976101339, -10.896885755348693, -10.983394011028194, -11.036604125731854, -11.054376746189545, -11.035964280250669, -10.981481428092648, -10.891633084516688, -10.767718335565634, -10.611630458523976, -10.42585692191785, -10.213479385515033, -9.978173700324945, -9.724209908598652, -9.45645224382886, -9.17896518092362, -8.894633096706848, -8.607587271780016, -8.321634549912252, -8.040240932010176, -7.766531576117909, -7.50329079741706, -7.252962068226739, -7.0176480180035306, -6.799110182191392, -6.598588931593856, -6.416735423783791, -6.254060552391942, -6.110961268943225, -5.987720582856733, -5.884507561445735, -5.801377329917677, -5.738271071374176, -5.695016026811027, -5.67127437894807, -5.6655102725116535, -5.6775845494007395, -5.707948517525475, -5.756876214411522, -5.824464407200071, -5.910632592647825, -6.015122997127014, -6.137500576625385, -6.277153016746208, -6.433290732708274, -6.604946869345892, -6.790977301108893, -6.990060632062631, -7.200910734942229, -7.42371379485179, -7.658210899008282, -7.903596072099213, -8.158658812260963, -8.421784091078777, -8.690952353586773, -8.963739518267936, -9.237316977054117, -9.508451595326038, -9.773505711913291, -10.028437139094333, -10.268799162596492, -10.491400960811863, -10.693637330924663, -10.870423292222078, -11.017440698571619, -11.13118837122147, -11.20898209880049, -11.248954637318214, -11.250055710164856, -11.212052008111302, -11.135527189309116, -11.02172743836465, -10.870602508052292, -10.684879710285756, -10.468415406276245, -10.225188259471134, -9.959299235553976, -9.674971602444502, -9.376550930298624, -9.068505091508428, -8.755424260702176, -8.44202091474431, -8.133004873574595, -7.831871448514517, -7.541354957475765, -7.263910052704116, -7.001711959888221, -6.756656478159602, -6.5303599800926575, -6.324159411704661, -6.139112292455757, -5.975996715248969, -5.835304604083793, -5.716292932033446, -5.618266622153557, -5.541123268810432, -5.4846970173036524, -5.448758563866075, -5.43301515566383, -5.4371105907963235, -5.460625218296235, -5.503075938129518, -5.563916201195403, -5.642209880626704, -5.737553207744417, -5.850409462841139, -5.981033543624884, -6.129462862922454, -6.295517348679427, -6.478799443960166, -6.678694106947816, -6.8943688109443, -7.124773544370328, -7.368640810765387, -7.624485628787749, -7.890606252489617, -8.165667036782889, -8.448417166714737, -8.736931137785636, -9.028896019245243, -9.3216114540924, -9.611989659075137, -9.89655542469067, -10.171446115185397, -10.432411668554902, -10.674814596543957, -10.893629984646518, -11.083445492105726, -11.238561291235479, -11.356698628218233, -11.435698067506443, -11.473017788368411, -11.46714724858019, -11.417607184425583, -11.32494961069615, -11.1907578206912, -11.017646386217796, -10.80926115759075, -10.570279263632631, -10.306409111673759, -10.022959356072608, -9.719411807629815, -9.40060185698769, -9.071976456287343, -8.738589231017, -8.405100480012, -8.075777175454807, -7.754492962874992, -7.444728161149251, -7.149569790892485, -6.871673364793906, -6.612653403950992, -6.373609663912343, -6.1554519244162105, -5.958899989390499, -5.784483686952766, -5.632542869410221, -5.503227413259728, -5.396497219187801, -5.3119750101434, -5.2485317259284585, -5.205989294556362, -5.1842662824151, -5.183197665645914, -5.202534830143294, -5.241945571554977, -5.301014095281951, -5.379241016478454, -5.476043360051969, -5.590754560663235, -5.722624084685755, -5.8711576359978634, -6.036776221242916, -6.219829022346376, -6.420375336478269, -6.638184576053179, -6.872736268730252, -7.123220057413194, -7.388535700250272, -7.667293070634313, -7.957812157202707, -8.258123063837402, -8.565966009664908, -8.879230201532385, -9.195610178693487, -9.511529581946435, -9.823139927036284, -10.126340741415417, -10.416779564243566, -10.68985194638779, -10.940701450422498, -11.164219650629425, -11.355046132997652, -11.507976092598339, -11.620243917269454, -11.688180652420217, -11.708958266995737, -11.681046402318996, -11.60421237209083, -11.479521162389942, -11.309335431672897, -11.097315510774123, -10.84841940290591, -10.56884241458601, -10.261310820095364, -9.929917318524744, -9.581070675529574, -9.220776265837811, -8.854636073249953, -8.487848690639026, -8.125209319950601, -7.771109772202781, -7.42953846748621, -7.104115616864463, -6.7973797834087275, -6.510922775651294, -6.24606957502629, -6.003887644894541, -5.785186930543568, -5.590519859187591, -5.420181339967528, -5.274208763950994, -5.152299765221021], [1.0, 1.2602660236168577, 1.5246335723524451, 1.7991441836578583, 2.089728465710837, 2.402034337231003, 2.741062813428148, 3.112108094933138, 3.5209056034597817, 3.9736319818048305, 4.476508624259135, 5.0358407583463, 5.6584509900370925, 6.351383862848584, 7.121905813858448, 7.977505173704959, 8.925778443221201, 9.963354240539273, 11.1014214855464, 12.355152644794467, 13.72930570570825, 15.218224176585434, 16.805837086596576, 18.465658985785158, 20.160789945067535, 21.84391555623297, 23.45754370283531, 24.927788026075323, 26.130471116352034, 26.938428538030376, 27.23522106634597, 26.91513468740514, 25.879224671434386, 24.060423345716178, 21.57025996397508, 18.552428513235164, 15.152118776873753, 11.516016334621394, 7.810398882381861, 4.3020344437607125, 1.1578489839938353, -1.527493297304403, -3.7170042314612246, -5.428463401599892, -6.710890706310459, -7.623971241460531, -8.234967983687026, -8.617721943580147, -8.829542700730316, -8.914353821913945, -8.910905518039147, -8.850385250725857, -8.75641773230583, -8.645357756192142, -8.530342010868546, -8.419156527828727, -8.317372099743235, -8.229513447955323, -8.159059222480957, -8.108442002008802, -8.078837290813777, -8.069230532403084, -8.078846414866488, -8.106927167931449, -8.152570116259975, -8.214727679448623, -8.292207372028502, -8.38367180346526, -8.487560486117289, -8.602025828043356, -8.725544330125395, -8.856498079629198, -8.993125453940417, -9.133521120564568, -9.275636037127033, -9.417277451373055, -9.556125604289676, -9.690394953873497, -9.817943815603948, -9.936401239313605, -10.04354934905263, -10.137323343088783, -10.215811493907406, -10.277255148211436, -10.320048726921405, -10.34273972517543, -10.344028712329223, -10.322680317834667, -10.278289927274846, -10.211537685984485, -10.123326943851147, -10.014763721135683, -9.887156708472236, -9.742017266868242, -9.58105942770442, -9.406199892734783, -9.219558034086635, -9.023455894260566, -8.820418186130464, -8.6132106562799, -8.405927040773786, -8.201681620145132, -8.002745402265768, -7.811223147172688, -7.629053367068048, -7.45800832631916, -7.299694041458496, -7.155550281183689, -7.02685056635753, -6.914702170007971, -6.820046117328123, -6.743657185676255, -6.685937836956949, -6.644732023758531, -6.619692282099529, -6.61111038970383, -6.619082629546092, -6.643509789851739, -6.684097164096964, -6.740354551008731, -6.811596254564771, -6.896941083993584, -6.995312353774438, -7.105437883637372, -7.225849998563191, -7.3548855287834725, -7.491509520338424, -7.636624499743727, -7.789643601403191, -7.949756754880583, -8.116032680399787, -8.287418888844805, -8.462741681759757, -8.640706151348883, -8.819896180476544, -8.998774442667212, -9.175682402105481, -9.348840313636066, -9.516347222763795, -9.676180965653618, -9.826554038916548, -9.966258371830582, -10.09254942083166, -10.202850520156446, -10.294919311231842, -10.366847742674974, -10.417062070293197, -10.444322857084096, -10.447724973235482, -10.426697596125404, -10.381004210322127, -10.310742607584155, -10.216344886860217, -10.098425065093105, -9.957214359092408, -9.795729209724989, -9.617434121942843, -9.425627050255322, -9.223439398729127, -9.01383602098832, -8.799615220214317, -8.583408749145882, -8.367681810079148, -8.154733054867592, -7.946694584922046, -7.745531951210701, -7.553062448511212, -7.372350275021708, -7.205951003678668, -7.055342134229806, -6.921720456087645, -6.8060020483295105, -6.708822279697546, -6.630535808598694, -6.571216583104713, -6.5306578409521645, -6.508372109542423, -6.503591205941669, -6.515266236880893, -6.54236935793654, -6.584662041739082, -6.641834188471432, -6.713477573309693, -6.799092105287347, -6.898085827295245, -7.009774916081612, -7.133383682252044, -7.268044570269512, -7.4127981584543585, -7.566593158984299, -7.728286417894421, -7.896809001087917, -8.07184479382068, -8.25239957483902, -8.437248831803542, -8.625057029452362, -8.814377609601102, -9.003652991142893, -9.19121457004837, -9.375282719365675, -9.553966789220462, -9.725265106815879, -9.887064976432594, -10.037142679428774, -10.173163474240098, -10.292681596379747, -10.393717216933542, -10.474517429523797, -10.532908639749504, -10.567153794173173, -10.575957016070056, -10.558463605428146, -10.514260038948176, -10.443373970043618, -10.346274228840688, -10.223870822178338, -10.077514933608263, -9.9089989233949, -9.72055541490668, -9.515052647015864, -9.29626299993238, -9.06794955806303, -8.833682932642184, -8.596841261731788, -8.360610210221353, -8.12798296982796, -7.901760259096263, -7.684550323398485, -7.478768934934419, -7.286639392731429, -7.110192522644447, -6.951117403278269, -6.809815006407505, -6.6871417510202, -6.583890496458093, -6.500572878873887, -6.4374193112312525, -6.394378983304827, -6.371119861680209, -6.367028689753966, -6.38121098773363, -6.4124910526377, -6.459411958295636, -6.520442835165364, -6.595773970637356, -6.68521603668008, -6.788256273723043, -6.904308120981534, -7.032711216456628, -7.172731396935186, -7.32356069798985, -7.4843173539790495, -7.654045798046997, -7.831716662123689, -8.016226776924908, -8.206489615020677, -8.40188983596458, -8.601032770647816, -8.802271293580354, -9.00387051321159, -9.204007771930334, -9.40077264606482, -9.592166945882699, -9.776104715591044, -9.950412233336351, -10.11282801120453, -10.261002795220914, -10.392499565350258, -10.504793535496736, -10.595272153503942, -10.661656556610017, -10.7023287550876, -10.71592436965587, -10.701525286207318, -10.658659670044681, -10.587301965880943, -10.48787289783934, -10.36123946945335, -10.208714963666708, -10.032058942833391, -9.833477248717626, -9.61562200249389, -9.381760042433546, -9.136730589106863, -8.884701654725426, -8.629424742690311, -8.374436252987152, -8.123057482186137, -7.8783946234420235, -7.643338766494116, -7.420565897666283, -7.212536899866954, -7.021497552589114, -6.849478531910307, -6.698293466777031, -6.5677500260037025, -6.457323244134125, -6.3676369078951565, -6.2990410891210535, -6.251612144753469, -6.225152716841455, -6.219191732541458, -6.232984404117324, -6.265512228940295, -6.315482989489012, -6.381330753349513, -6.46121587321523, -6.554336972331245, -6.661382332747329, -6.781849389615288, -6.915149003489203, -7.06061622390393, -7.21751028937509, -7.385014627399081, -7.5622368544530705, -7.748208775994998, -7.9418863864635725, -8.142149869278278, -8.347803596839364, -8.557980380467752, -8.77180291844666, -8.987123441878142, -9.201725457844521, -9.41336194016083, -9.61975532937476, -9.818597532766685, -10.007549924349647, -10.184243344869369, -10.346278101804243, -10.491223969365343, -10.61662018849641, -10.71997546687387, -10.798767978906813, -10.850445365737016, -10.872415921555946, -10.86210051369038, -10.81948893533838, -10.74564738686183, -10.641874284474355, -10.50970026024133, -10.35088816207987, -10.167433053758835, -9.961562214898827, -9.735735140972196, -9.492643543303032, -9.23521134906717, -8.96659470129219, -8.690856814291855, -8.415235446305326, -8.143734357145652, -7.879551058515536, -7.625627433122485, -7.384649734678811, -7.159048587901633, -6.9509989885128745, -6.762420303239267, -6.594976269812345, -6.45007499696845, -6.328868964448729, -6.2321665349566615, -6.157526038713206, -6.103798228987777, -6.071128723577401, -6.059443944848854, -6.06845111973866, -6.097638279753093, -6.146274260968172, -6.213408704029669, -6.297872054153102, -6.39827556112374, -6.513011279296599, -6.640252067596444, -6.778354611239248, -6.9284279723473325, -7.0903909821508995, -7.2636388759413, -7.44744373552113, -7.640954489204228, -7.843196911815676, -8.053073624691802, -8.26936409568017, -8.490724639139597, -8.715688415940136, -8.942665433463088, -9.169942545600993, -9.395884592822021, -9.619835591874702, -9.83847389384135, -10.04808456902251, -10.245191467619236, -10.426557219733079, -10.5891832353661, -10.730309704420868, -10.847415596700452, -10.93821866190843, -11.000675429648885, -11.032981209426403, -11.03357009064608, -11.00111494261351, -10.9345274145348, -10.831400288699085, -10.690255494193734, -10.516649717766903, -10.315996399405586, -10.093247839368521, -9.852895198186172, -9.598968496660746, -9.335036615866178, -9.06420729714815, -8.78912714212407, -8.511981612683083, -8.234495030986075, -7.957930579465664, -7.683463094810176, -7.420063878312348, -7.173362379680764, -6.9456684645484, -6.738883840036248, -6.554502054753318, -6.393608498796637, -6.256880403751252, -6.144586842690225, -6.056588730174638, -5.992338822253589, -5.950881716464195, -5.930854310369259, -5.9311418712442325, -5.9512314668624295, -5.990563399909557, -6.0484966217145235, -6.124308732249446, -6.217195980129641, -6.32627326261363, -6.450574125603138, -6.589050763643094, -6.740574019921631, -6.903933386270086, -7.078459295575534, -7.264134734746131, -7.460418754846489, -7.6665909944080255, -7.881752468100064, -8.104825566729835, -8.334554057242476, -8.569503082721031, -8.808059162386451, -9.048430191597596, -9.288645441851227, -9.526555560782018, -9.759832572162548, -9.985969875903303, -10.202282970655363, -10.406749182970033, -10.595972282718538, -10.765607285317683, -10.911798558862214, -11.031179824124822, -11.120874154556127, -11.1784939762847, -11.202141068117047, -11.19040656153761, -11.142370940708778, -11.057604042470873, -10.936165056342162, -10.777692242489884, -10.582569593871934, -10.356504283511086, -10.105154784297792, -9.833798314820402, -9.547330839365184, -9.250267067916301, -8.946740456155826, -8.64050320546374, -8.334926262917925, -8.032999321294175, -7.7373308190661865, -7.450453707025828, -7.179245738589397, -6.927865561967064, -6.698522820648053, -6.492961086315876, -6.312457858848336, -6.157824566317523, -6.029406564989818, -5.927083139325892, -5.850267501980702, -5.797906793803497, -5.768482105676627, -5.760568271186873, -5.773560441437439, -5.806793236164028, -5.859545743910568, -5.9310415220292185, -6.02044859668037, -6.126879462832641, -6.24939108426288, -6.386984893556166, -6.5386067921058055, -6.703147150113336, -6.87969969613766, -7.068213675330882, -7.268288618858554, -7.479311277695299, -7.70048389880777, -7.930824225154646, -8.169165495686638, -8.414156445346489, -8.664261305068962, -8.917759801780859, -9.172747158401009, -9.427134093840266, -9.678646823001516, -9.924827056779678, -10.163032002061696, -10.390811590888177, -10.605325247384346, -10.801767671003725, -10.975703831997713, -11.123196013051032, -11.24080380928174, -11.325584128241218, -11.37509118991418, -11.387376526718667, -11.360988983506047, -11.294974717561017, -11.188877198601604, -11.042262232220867, -10.853583381015124, -10.628315564187176, -10.372833016851656, -10.093055681059026, -9.794449205795576, -9.482024946983433, -9.160339967480557, -8.833497037080729, -8.505144632513577, -8.17847693744455, -7.85623384247493, -7.5407903010030894, -7.239655168925597, -6.958826634744016, -6.700901214449172, -6.467952732624536, -6.261532322446217, -6.08266842568297, -5.931866792696189, -5.809110482439911, -5.713859862460816, -5.645052608898224, -5.601103882022646, -5.580407741761831, -5.582162607431239, -5.605593233580322, -5.6498736179106155, -5.714127001275738, -5.7974258676813895, -5.898791944285355, -6.0171962013975016, -6.151558852479781, -6.300749354146224, -6.46358640616295, -6.639406741704176, -6.828312811079023, -7.029888971805326, -7.243554498414342, -7.4685669335273985, -7.704022087855896, -7.948854040201311, -8.20183513745519, -8.461575994599151, -8.726525494704894, -8.994970788934182, -9.26503729653886, -9.534688704860836, -9.801726969332101, -10.064099037521494, -10.320065062194947, -10.564546842435643, -10.792408054358987, -10.998954454279172, -11.1799338787092, -11.331536244360855, -11.450393548144728, -11.5335798671702, -11.578611358745452, -11.583446260377457, -11.546484889771984, -11.466569644833601, -11.342985003665673, -11.17316494367021, -10.957237021758457, -10.703400931796075, -10.419312230621246, -10.11188554613122, -9.787294577282294, -9.450972094089831, -9.107609937628244, -8.761159020031009, -8.414829324490654, -8.07108990525877, -7.731668887645998, -7.39791824239769, -7.080274685960744, -6.785641599731247, -6.516639369418936, -6.275297930586426, -6.063056768649204, -5.88076491887563, -5.728680966386937, -5.606473046157235, -5.513218843013503, -5.447405591635597, -5.407013808592985, -5.390790291661755, -5.397886530448421, -5.427355115682728, -5.478217076152157, -5.549461878701931, -5.640047428235003, -5.748900067712068, -5.874914578151554, -6.016954178629629, -6.173850526280194, -6.344622508150169, -6.529388742166002, -6.727884120971334, -6.939624874707443, -7.163986482710667, -7.400203673512407, -7.647370424839124, -7.9044399636123375, -8.170224765948632, -8.443396557159645, -8.722486311752084, -9.00588425342771, -9.29183985508335, -9.578461838810886, -9.863919016332197, -10.14629252834597, -10.420695242656265, -10.682089979068808, -10.925723019366371, -11.147124107308706, -11.342106448632657, -11.506766711052082, -11.63748502425787, -11.73092497991795, -11.784033631677277, -11.794041495157844, -11.758462547958676, -11.675094229655835, -11.537916295668772, -11.347582271857162, -11.11304341148178, -10.842398597024781, -10.54288284088559, -10.220867285380901, -9.881859202744685, -9.530501995128184, -9.170575194599909, -8.80499446314565, -8.435811592668465, -8.064214504988682, -7.690849286474466, -7.329154575590641, -6.989181938595335, -6.674338740212094, -6.387375771709541, -6.130387250901381, -5.904810822146395, -5.711427556348447, -5.550361950956474, -5.4210819299645, -5.322398843911623, -5.252460027376549, -5.209329906626082, -5.191895562559699, -5.199094359006064, -5.229812353930988, -5.282884299437433, -5.357093641765511, -5.451172521292482, -5.563801772532755, -5.693610924137893, -5.839178198896603, -5.999485546176893, -6.1749533446918905, -6.365250576713241, -6.569889636058173, -6.788301707723719, -7.019836767886719, -7.263763583903817, -7.519269714311461, -7.785461508825907, -8.061364108343215, -8.345921444939247, -8.637996241869677, -8.936370013569977, -9.239784069824628, -9.54617325660569, -9.851925873766296, -10.153233381531896, -10.44619829696377, -10.726834193959023, -10.991065703250598, -11.234728512407266, -11.453569365833626, -11.643246064770114, -11.79932746729299, -11.91729348831435, -11.99253509958212, -12.020341526338406, -11.995856076418105, -11.918524015819608, -11.78984726226535, -11.611874295816039, -11.387200158870659, -11.118966456166469, -10.810861354779007, -10.467119584122084, -10.09252243594779, -9.692397764346488, -9.272619985746818, -8.842791447580229, -8.414007867448321, -7.9927786160055945, -7.58496958296014, -7.195824243506355, -6.8299636583249335, -6.491386473582882, -6.183468920933503, -5.908964817516406, -5.670005565957505, -5.468097611837334, -5.301067954476938, -5.1662913287132355, -5.06339368590343, -4.991680225352757, -4.95013539431448, -4.937422887989895, -4.951885649528325, -4.991545870027125, -5.054104988531678, -5.136943692035398, -5.237121915479728, -5.353267571627883, -5.487004990816794, -5.637699540115593, -5.804690479244338, -5.98736067666767, -6.185136609594812, -6.397488363979571, -6.623929634520341, -6.8640177246600915, -7.117353546586385, -7.38358162123136, -7.662128138315135, -7.951813375463027, -8.251819809086625, -8.560979218074547, -8.87772177366964, -9.20007603946898, -9.525668971423869, -9.851725917839833, -10.175070619376626, -10.49212520904823, -10.798910212222856, -11.091044546622935, -11.363745522325134, -11.611828841760337, -11.830272920331069, -12.014522365697761, -12.157840545665747, -12.254452254099245, -12.299795006117034, -12.290519038092453, -12.224487307653401, -12.100775493682335, -11.919671996316271, -11.682677936946787, -11.392507158220019, -11.052116709992072, -10.667467794307786, -10.249416980918834, -9.808098527087479, -9.352763175551246, -8.89177815452293, -8.4326271776906, -7.981910444217588, -7.545344638742498, -7.127762931379201, -6.733114977716838, -6.366669484673502, -6.034391415374654, -5.738534846927349, -5.480516531853708, -5.260944254532192, -5.079616831197608, -4.935524109941106, -4.826846970710178, -4.750957325308656, -4.70442294805911, -4.6851938683944825, -4.6924833176833, -4.724691004332686, -4.780299897896631, -4.857876229075999, -4.956069489718522, -5.073612432818802, -5.209321072518314, -5.3620946841054025, -5.530941138008486, -5.715771871371197, -5.916507442100515, -6.132760594246079, -6.364092400593757, -6.610012262665641, -6.8699779107200545, -7.143395403751551, -7.429619129490908, -7.727951804405137, -8.037644473697473, -8.357896511307382, -8.68785561991056, -9.026617830918926, -9.373050286036905, -9.724041756314113, -10.075593606717838, -10.423523625032173, -10.763400350186938, -11.090543072257676, -11.400021832465658, -11.686657423177877, -11.945021387907056, -12.169436021311645, -12.353974369195814, -12.492460228509463, -12.57846814734822, -12.605528639462083, -12.570306152390364, -12.47215661894242, -12.311523250135087, -12.089925135943796, -11.809957245302575, -11.47529042610405, -11.090671405199439, -10.661922788398563, -10.195943060469833, -9.700976672739598, -9.190700926987523, -8.676552134807087, -8.167630373609004, -7.672129662307604, -7.197337961320841, -6.749637172570283, -6.334503139481125, -5.956505646982177, -5.61930842150587, -5.325669130988256, -5.074479502114936, -4.862975121237278, -4.6910054810912, -4.557880517063618, -4.462366356560629, -4.402685319007517, -4.376515915848748, -4.3809928505479725, -4.412707018588023, -4.467705507470919, -4.54152034583346, -4.634002730964389, -4.746293164474873, -4.877321809125977, -5.026169415787947, -5.192067323440208, -5.374397459171372, -5.57269233817923, -5.786635063770756, -6.016059327362106, -6.260949408478616, -6.521111352137295, -6.796257083635316, -7.086393689709154, -7.391226411141468, -7.710152447523238, -8.042260957253763, -8.386333057540664, -8.740841824399881, -9.103952292655672, -9.473521455940618, -9.84709826669562, -10.221923636169894, -10.594934259892757, -10.964229490908384, -11.32380761796862, -11.665173530328484, -11.980383225548307, -12.262043809493726, -12.503313496335684, -12.697901608550435, -12.84006857691954, -12.92462594052987, -12.946936346773601, -12.902913551348218, -12.789022418256518, -12.601901476398178, -12.331646960013135, -11.987984637992938, -11.587080896526668, -11.14310954765855, -10.668251829287964, -10.172696405169427, -9.664639364912617, -9.150284223982348, -8.633841923698592, -8.117530831236465, -7.601576739626229, -7.089092421935404, -6.605795021703842, -6.16022490431683, -5.756443490740766, -5.397277069620126, -5.084316797277461, -4.817918697713395, -4.597203662606633, -4.42005745131395, -4.2831308309077745, -4.183084522948512, -4.117815993041674, -4.084995885539322, -4.0823382647927655, -4.1076006151525615, -4.158583840968515, -4.233132266589678, -4.3291336363643484, -4.444519114640073, -4.577534007513342, -4.72830182530277, -4.896307991750897, -5.080928074125314, -5.281671956963393, -5.498183842072281, -5.730242248528901, -5.977760012679955, -6.240784288141921, -6.5194965458010525, -6.814212573813382, -7.12535453381525, -7.451947437332835, -7.793358552646696, -8.149256509940123, -8.51874371628088, -8.900356355621208, -9.292064388797817, -9.691271553531896, -10.094815364429103, -10.498967112979567, -10.899431867557901, -11.29134847342318, -11.669289552718963, -12.028263535113997, -12.361190880625577, -12.65784545317771, -12.908972413312696, -13.106352250267278, -13.242800781972637, -13.312169155054395, -13.309343844832616, -13.230246655321805, -13.071834719230907, -12.830853983037333, -12.50391272228022, -12.103382631585484, -11.642752073139667, -11.134418125884503, -10.589686585516922, -10.01877196448906, -9.430797492008248, -8.833795114037006, -8.234705493293069, -7.639533159485056, -7.065524554901114, -6.527108657850594, -6.030569848529395, -5.580684154178877, -5.180719249085869, -4.832434454582659, -4.536080739047, -4.290400717902106, -4.092628653616661, -3.9388290219065185, -3.8257903502211756, -3.7506944313429216, -3.710724223691946, -3.7030656168560054, -3.7249074315904194, -3.7734414198180737, -3.8458622646294187, -3.939367580282471, -4.051570877802729], [1.0, 0.9848771469249452, 0.9730975826471474, 0.9651532309165722, 0.9617570252901997, 0.963904606417799, 0.9727601655196005, 0.9899192304647947, 1.0174647047259775, 1.057966867379151, 1.1149430227324708, 1.192078097761772, 1.2939084534994867, 1.426829887582959, 1.5990977215072504, 1.8208268006251416, 2.1040149031683373, 2.465412055835648, 2.922781261820937, 3.49573286187271, 4.208308411941916, 5.088980683181951, 6.170653661948647, 7.490662549800286, 9.09077376349759, 11.017184935003726, 13.319676765062745, 16.013277922693206, 19.09891690146636, 22.550897700579338, 26.2987607072238, 30.22728269658591, 34.17901791860924, 37.96377819776274, 41.34061632404104, 44.11812871543175, 46.17182900435874, 47.444148037682076, 47.94000011753252, 47.713774612350996, 46.889140761025594, 45.613943439583586, 44.05463346215421, 42.37201395635693, 40.660443799954486, 38.9965470513804, 37.4331847014341, 35.9991779015414, 34.70351752958226, 33.54253091085396, 32.508733317624525, 31.592170937477576, 30.780420873312334, 30.058848526828932, 29.415834904267893, 28.841831398114252, 28.327962708366236, 27.86656712596843, 27.45119653281176, 27.076616401733492, 26.738618905143927, 26.433630643943474, 26.16005009540578, 25.9165303736676, 25.701749830721077, 25.514412056413693, 25.353245878448316, 25.21700536238317, 25.104701810355778, 25.0169179595198, 24.954221182698806, 24.916877282929516, 24.904914058529055, 24.91812130309493, 24.956050805505043, 25.018016349917684, 25.103097771179424, 25.21056131213016, 25.340034671251278, 25.4908023921227, 25.661758497642236, 25.851406490025568, 26.057859350806265, 26.278839540835765, 26.511679000283397, 26.753319148636365, 27.00031088469975, 27.249519007573898, 27.498387658084113, 27.742954277839182, 27.979502196412305, 28.204623473716573, 28.41521890000498, 28.60849799587041, 28.78197901224565, 28.933488930403378, 29.06116346195617, 29.1634470488565, 29.23909286339674, 29.28719706759695, 29.308294314876285, 29.30267143749045, 29.2704165965432, 29.211988779234215, 29.1282177988591, 29.020304294809367, 28.889819732572445, 28.738706403731687, 28.56927742596635, 28.384216743051624, 28.186579124858607, 27.97979016735431, 27.767421643164862, 27.549988846231564, 27.328623964844226, 27.105146003666924, 26.88134098514783, 26.658961949519192, 26.439728954797353, 26.225329076782735, 26.01741640905985, 25.817612062997295, 25.627504167747745, 25.448647870247967, 25.28256533521882, 25.130745745165235, 24.99412039865892, 24.872806946985882, 24.768237352414825, 24.681757965831324, 24.614549030546524, 24.56762468229713, 24.541832949245425, 24.53785575197926, 24.55620890351206, 24.597242109282814, 24.661138967156077, 24.747916967421983, 24.857427492796226, 24.989355818420083, 25.14318370401779, 25.317902475301963, 25.512145595029583, 25.72428742080819, 25.952439495364818, 26.194450546546, 26.44790648731778, 26.710130415765683, 26.978182615094745, 27.24886055362951, 27.518698884814, 27.783969447211756, 28.04068126450581, 28.28464462943248, 28.512415509089394, 28.720885302650096, 28.907253469400995, 29.069153078788577, 29.204650810419388, 29.31224695406003, 29.39087540963718, 29.439903687237575, 29.45913290710802, 29.448797799655384, 29.409566705446597, 29.342541575208664, 29.249271132548284, 29.132487143298317, 28.994216410291685, 28.83595844433886, 28.659409107360958, 28.46646061238972, 28.259201523567526, 28.039916756147385, 27.81108757649294, 27.57539160207847, 27.33570280148888, 27.095091494419716, 26.856824351677158, 26.62273073121497, 26.392328058983196, 26.16728069324852, 25.949242982331707, 25.739798436189886, 25.540459726416568, 25.352668686241643, 25.177796310531367, 25.017142755788374, 24.871937340151675, 24.743338543396654, 24.632434006935068, 24.54005524278408, 24.466504595347423, 24.41326528597613, 24.381739953037894, 24.373067812158077, 24.388124656219745, 24.427522855363627, 24.49161135698815, 24.580475685749427, 24.693937943561245, 24.831556809595078, 24.99262754028009, 25.176181969303123, 25.380988507608706, 25.60555214339906, 25.84844205379741, 26.10728060852878, 26.378647011639956, 26.659090747432575, 26.94513575647864, 27.233280435620514, 27.51999763797092, 27.801734672912943, 28.07491330610003, 28.335929759455993, 28.581154711175, 28.80693329572158, 29.009586364959773, 29.185815703674564, 29.33347062995168, 29.45097200580437, 29.53719340656525, 29.591461120886304, 29.613554150738864, 29.60370421141364, 29.562595731520695, 29.491365852989464, 29.391604431068743, 29.265354034326684, 29.11510994465081, 28.943839659100696, 28.754527139725514, 28.549322507283595, 28.330332272009365, 28.099722973098473, 27.859721178707762, 27.612613485955286, 27.360746520920316, 27.106526938643313, 26.852421423125957, 26.600956687331134, 26.354719473182932, 26.116063160155694, 25.88506098444689, 25.662929637018614, 25.451243176913174, 25.251509246399937, 25.06516907097537, 24.893597459362987, 24.738102803513403, 24.599927078604292, 24.480245843040404, 24.380168238453575, 24.300736989702703, 24.242778974905214, 24.206380352441712, 24.19297602568387, 24.203972358624757, 24.24043197591605, 24.303073762868028, 24.39227286544956, 24.508060690288115, 24.65012490466977, 24.81780943653919, 25.01011447449964, 25.225696467812995, 25.462868126399712, 25.719598420838853, 25.993512582368087, 26.2826143036312, 26.5835531766993, 26.891738206174853, 27.202733293923867, 27.51225729043882, 27.816183994838678, 28.11054215486887, 28.391515466901318, 28.65544257593441, 28.898817075593016, 29.118287508128486, 29.310657364418645, 29.47289632791922, 29.602664086287245, 29.698663993805575, 29.760130939580947, 29.786791192805048, 29.77886240275454, 29.737053598791064, 29.662565190361203, 29.557088966996528, 29.422808098313563, 29.262397134013803, 29.07902200388371, 28.876339363087883, 28.657525441317016, 28.424671311484847, 28.180067679402732, 27.926010131825823, 27.66479913645308, 27.398740041927255, 27.130143077834905, 26.861323354706386, 26.594600864015852, 26.332300478181267, 26.076751950564386, 25.830289915470765, 25.5941637670051, 25.36872969694535, 25.1555465854691, 24.956122670479818, 24.771905356674527, 24.60428121554379, 24.454575985371704, 24.324054571235916, 24.21392104500761, 24.125318645351502, 24.059329777725864, 24.0169760143825, 23.99846514904419, 24.003737275719182, 24.03462321313836, 24.092570126924354, 24.178570436394015, 24.2931618145584, 24.436427188122796, 24.607994737486695, 24.807037896743815, 25.032275353682074, 25.28197104978363, 25.55393418022483, 25.845519193876253, 26.153625793302698, 26.474698934763165, 26.804753152945423, 27.14084441298729, 27.478088805009104, 27.81063191891968, 28.133110026501907, 28.440650081412755, 28.72886971918327, 28.99387725721857, 29.232271694797856, 29.4411427130744, 29.61807067507555, 29.761126625702737, 29.86887229173146, 29.940402746282626, 29.975413186962673, 29.97379114454032, 29.93590532296603, 29.86264907495816, 29.755440402003014, 29.616221954354796, 29.44746103103565, 29.252149579835635, 29.033804197312726, 28.796466128792833, 28.54470126836977, 28.283502767093108, 28.014256682750073, 27.73802543918289, 27.45712770878458, 27.17381834909216, 26.890288402786634, 26.60866509769301, 26.331011846780285, 26.05932824816145, 25.795550085093495, 25.5415493259774, 25.299134124358144, 25.07004881892469, 24.855800310972494, 24.656883605078715, 24.474700716129774, 24.31078582283852, 24.166591480316846, 24.043488620075724, 23.942766550025176, 23.865632954474282, 23.81321389413118, 23.786553806103075, 23.786615503896222, 23.814280177415945, 23.87034739296662, 23.95536020382343, 24.068472446424327, 24.21021882251659, 24.381057676848535, 24.580883653348412, 24.8090276951244, 25.064257044464604, 25.34477524283707, 25.64822213088976, 25.971673848450575, 26.31164283452734, 26.664077827307814, 27.02436386415968, 27.387322281630567, 27.74721071544801, 28.09847907246273, 28.4366746624753, 28.75605326370608, 29.05148393331419, 29.31855782425368, 29.55358818527352, 29.753610360917598, 29.91638179152473, 30.04038201322866, 30.12481265795804, 30.169597453436452, 30.175382223182414, 30.14353488650934, 30.076128075831708, 29.975086907146668, 29.84185287978836, 29.678214356073116, 29.486324916429663, 29.268703359399115, 29.02823370163497, 28.768165177903118, 28.492112241081834, 28.204054562161783, 27.90833703024602, 27.60966975254998, 27.311854257489767, 27.013784473613573, 26.71718262172595, 26.424125418146254, 26.1365947573654, 25.856477712045894, 25.585566533021808, 25.32555864929879, 25.078056668054067, 24.84456837463643, 24.626506732566252, 24.425189883535484, 24.24151878542113, 24.07675552495111, 23.93269731711047, 23.811004267169196, 23.71319860851648, 23.640664702660697, 23.59464903922943, 23.576260235969457, 23.58646903874675, 23.62610832154648, 23.695873086473018, 23.79632046374992, 23.92786971171996, 24.09080221684509, 24.285261094700495, 24.51043752470784, 24.76471366475499, 25.046443671074254, 25.35347599573384, 25.68315338663787, 26.032312887526352, 26.397285837975215, 26.77389787339628, 27.157468925037275, 27.542813219981838, 27.9242392811495, 28.29554992729571, 28.65030027462379, 28.982934650402594, 29.28825763613634, 29.561762830398344, 29.79967703965643, 29.99896027827295, 30.157305768504774, 30.27313994050329, 30.345622432314414, 30.374646089878567, 30.360836967030703, 30.30555432550029, 30.210985169157013, 30.080997613516338, 29.918151058657504, 29.72473975000572, 29.50338134906225, 29.25701693340439, 28.9889109966855, 28.702651448634985, 28.40214961505829, 28.091640237836913, 27.775681474928405, 27.459154648158272, 27.14366800663992, 26.829015735705184, 26.51736054987479, 26.210763678668652, 25.911184866605847, 25.620482373204638, 25.34041297298246, 25.072631955455925, 24.818693125140825, 24.580048801552117, 24.35804981920394, 24.153799207736032, 23.96843072887067, 23.80374788888367, 23.66147455252546, 23.543220245260443, 23.450480153267012, 23.384635123437533, 23.346951663378363, 23.33858194140983, 23.36056378656626, 23.41382068859595, 23.499161797961182, 23.61728192583822, 23.768761544117318, 23.9540667854027, 24.17310095605422, 24.424225558819497, 24.70617191059948, 25.017158173114165, 25.35480230397669, 25.71612205669337, 26.097534980663653, 26.49485842118017, 26.90330951942869, 27.317505212488143, 27.731462233330625, 28.13859711082138, 28.531838204065405, 28.90485790544642, 29.25154716749415, 29.566444400903166, 29.844922353721426, 30.083188111350275, 30.278283096544442, 30.428083069412036, 30.53129812741457, 30.58747270536692, 30.596985575437362, 30.561049847147554, 30.481733045497126, 30.362765868578162, 30.207019025282975, 30.016884035284882, 29.795131148119044, 29.54490934318249, 29.26974632973408, 28.973548546894538, 28.66060116364644, 28.335568078834203, 28.00349192116411, 27.66979070662866, 27.336080520452942, 27.002180933189393, 26.67039364251919, 26.342902179430492, 26.021771908218433, 25.708950026485137, 25.406265565139698, 25.115429388398198, 24.83803419378369, 24.575554512126224, 24.329346707562816, 24.10058204639227, 23.890698655707716, 23.701405132680364, 23.534349968337303, 23.391120301209234, 23.273241917330456, 23.182179250238864, 23.119335380975947, 23.086052038086798, 23.08360959762011, 23.11322708312817, 23.17606216566686, 23.27321116379567, 23.40570904357768, 23.574193430416805, 23.777403167053585, 24.0153774728469, 24.287803514845614, 24.59362644767597, 24.931049413541594, 25.297533542223498, 25.689797951080084, 26.103819745047133, 26.53483401663781, 26.977333845942667, 27.42507030062964, 27.87105243594405, 28.307547294708606, 28.726827061092205, 29.122399314757228, 29.487651960955578, 29.816877484865884, 30.105308964114723, 30.349120068776624, 30.54542506137407, 30.69227879687749, 30.788676722705272, 30.834554878723747, 30.830789897247207, 30.779199003037895, 30.682559041699996, 30.544550250933227, 30.367996771184455, 30.15571740630238, 29.91090449665278, 29.637123919118498, 29.338315087099453, 29.018790950512628, 28.68323799579208, 28.336716245888937, 27.984659260271393, 27.6322685706604, 27.279092354453773, 26.92654634515763, 26.576961637977476, 26.23253648214554, 25.895336280920745, 25.567293591588736, 25.250208125461857, 24.94574674787917, 24.655443478206443, 24.38069948983615, 24.122791381881623, 23.883134162215562, 23.663360374992685, 23.465091230868055, 23.289925826598438, 23.13944114504232, 23.015192055159886, 22.918711312013034, 22.851509556765375, 22.81507531668223, 22.810875005130622, 22.84035292157929, 22.90493125159868, 23.006010066860956, 23.1445802038922, 23.319525189342706, 23.531838122781988, 23.782217065457683, 24.070495414107434, 24.395641900958793, 24.755760593729377, 25.14809089562675, 25.569007545348477, 26.014020617082092, 26.477775520505123, 26.954053000785073, 27.435769138579445, 27.914975350035707, 28.38462520047641, 28.83721846062994, 29.263879557816747, 29.65694204431343, 30.00995231011526, 30.31766958293618, 30.576065928208784, 30.782326249084342, 30.934848286432796, 31.03324261884274, 31.078332662621442, 31.072154671794838, 31.017904804860898, 30.91718696904898, 30.771396049459895, 30.58321011355317, 30.3558393971852, 30.0930263046092, 29.799045408475244, 29.478703449830256, 29.137339338117997, 28.780824151179072, 28.415561135250947, 28.047710241290076, 27.676575568899732, 27.30371005237484, 26.931713063318405, 26.563017833443894, 26.199891454575173, 25.844434878646563, 25.4985829177028, 25.16410424389906, 24.842601389500942, 24.535510746884476, 24.2441721219059, 23.97011491853589, 23.714849814688353, 23.479902225564384, 23.266820986400752, 23.07717835246993, 22.912569999080066, 22.774615021575013, 22.664955935334298, 22.585258675773147, 22.53721259834247, 22.52253047852887, 22.54294851185464, 22.599676129721136, 22.692315306591546, 22.82332806720635, 22.994800527593217, 23.20798035701155, 23.46327677795251, 23.760260566139006, 24.09766405052568, 24.473381113298927, 24.88446718987689, 25.32713926890946, 25.796775892278262, 26.287917155096682, 26.794293709007253, 27.31077243900264, 27.828569830396265, 28.337394060583506, 28.827899205232274, 29.291685238283016, 29.721298031948713, 30.110229356714893, 30.452916881339604, 30.744744172853444, 30.98204069655954, 31.16208181603356, 31.282811478800227, 31.34338757437885, 31.344480781368514, 31.287675096767252, 31.175465388938015, 31.011257397608677, 30.79936773387203, 30.545023880185795, 30.254364190372605, 29.93443788962002, 29.593202303068885, 29.23526652052569, 28.86235425836991, 28.47809915276637, 28.085951739004212, 27.689179451496894, 27.290866623782193, 26.893914488522203, 26.50104117750332, 26.114781721636273, 25.7374880509561, 25.37132899462215, 25.017816385793523, 24.677693430641774, 24.352399768154594, 24.043417308314744, 23.75225125237574, 23.480430092861873, 23.229505613568193, 23.00105288956052, 22.796670287175434, 22.61797946402029, 22.4666253689732, 22.343817220395945, 22.25056776036687, 22.18969734970125, 22.163800593181797, 22.17513002706929, 22.225596119102615, 22.316767268498737, 22.44986980595271, 22.62578799363768, 22.845064025204877, 23.10789802578363, 23.414148051981343, 23.763330091883518, 24.154618065053736, 24.586680641032537, 25.055718546164737, 25.556007783815623, 26.081289294439184, 26.62479762514694, 27.179260929707937, 27.73690096854875, 28.28943310875348, 28.82806632406377, 29.343503194878767, 29.825939908255172, 30.264895381707532, 30.651822991644373, 30.98155727826351, 31.25015159731543, 31.454820516561664, 31.593939815774768, 31.667046486738336, 31.674838733246997, 31.619175971106408, 31.50307882813327, 31.330729144155313, 31.10877259335725, 30.844289251211606, 30.542001447782148, 30.206757607460094, 29.843553089407273, 29.457530187556127, 29.053978130609707, 28.638333082041687, 28.216178140096304, 27.79323387584796, 27.371589797903482, 26.951763466102868, 26.536161363382007, 26.127020113673055, 25.726406481904444, 25.33621737400086, 24.958179836883268, 24.593851058468896, 24.244618367671237, 23.911717696910962, 23.596785711772025, 23.301311650611915, 23.02666073121178, 22.774290254676714, 22.54574960543576, 22.34268025124192, 22.166815743172126, 22.019981715627274, 21.90409588633221, 21.821168056335722, 21.773300110010542, 21.762686015053365, 21.79161182248483, 21.861891770248757, 21.973254144808422, 22.128767366432534, 22.331158626424155, 22.582156190320582, 22.88248939789334, 23.23188866314818, 23.629085474325088, 24.071812393898277, 24.556803058576197, 25.079792179301517, 25.635515541251152, 26.21771000383623, 26.820426183808795, 27.434829760616918, 28.04816748523886, 28.648601948407507, 29.225269014054035, 29.76827781930791, 30.268710774496903, 30.71862356314705, 31.1110451419827, 31.43997774092649, 31.70031276481095, 31.887364961226723, 32.00011777910755, 32.039429722907435, 32.00733071264011, 31.907022083879006, 31.742876587757284, 31.520438390967815, 31.2464230757632, 30.928717639955742, 30.57638049691747, 30.196964659255137, 29.79430348478013, 29.372991456253143, 28.937419220277047, 28.491771052962314, 28.04002485992698, 27.585952176296686, 27.133118166704644, 26.68488162529166, 26.244394975706108, 25.814592003333956, 25.39624837651218, 24.989747719844928, 24.596533102306708, 24.218048553272112, 23.85573906251583, 23.51105058021266, 23.185430016937477, 22.88032524366526, 22.59718509177108, 22.337459353030113, 22.102584142070327, 21.89432323475395, 21.714712392580047, 21.56581501135082, 21.449720566543427, 21.36854461330996, 21.324428786477473, 21.31954080054796, 21.356074449698355, 21.436249607780553, 21.56231222832139, 21.736534344522642, 21.96120944439715, 22.23588896658226, 22.56090936071474, 22.937972895042304, 23.367269783597518, 23.84747818619779, 24.375764208445386, 24.9477819017274, 25.557673263215793, 26.19806823586736, 26.860084708423752, 27.533328515411455, 28.20589343714182, 28.86444271191068, 29.49704222322918, 30.09109391216475, 30.634652374359845, 31.117789758848904, 31.532595768058368, 31.873177657806675, 32.13566023730426, 32.31818586915357, 32.420914469349015, 32.44602350727704, 32.397708005716076, 32.281599511237935, 32.1011249530666, 31.86095608051867, 31.566663903004887, 31.224425865100713, 30.841025846546305, 30.42385416224651, 29.98090756227088, 29.52078923185366, 29.052707807956068, 28.58037532369468, 28.10373985352943, 27.626165932594176, 27.150693827738117, 26.680039537525786, 26.216594792237068, 25.762427053867178, 25.319279516126677, 24.888571104441475, 24.471504079953945, 24.069673600129512, 23.68426029625022, 23.31643625675018, 22.967471838073806, 22.63873566467583, 22.331694629021282, 22.047913891585498, 21.78905688085413, 21.556885293323127, 21.353259093498753, 21.180120312032372, 21.03888682592846, 20.932044603537314, 20.862563324953697, 20.833259311469234, 20.84679552557242, 20.905681570948616, 21.012273692480036, 21.16877477624577, 21.37723434952177, 21.639548580780854, 21.957460279692697, 22.332558897123853, 22.76515861231407, 23.253423642143453, 23.795561862588688, 24.388155680283127, 25.02612188359292, 25.702711642617025, 26.409510509187182, 27.13643841686794, 27.871749680956647, 28.602032998483445, 29.31253739614011, 29.989179132974947, 30.61736344516678, 31.184364294011235, 31.679728085075176, 32.09527366819675, 32.42509233748532, 32.66554783132155, 32.81527633235732, 32.87518646751581, 32.848476243685404, 32.741366759478105, 32.55980040986689, 32.309611195911515, 31.997520166403408, 31.631135417865597, 31.218952094552776, 30.770352388451272, 30.295605539279045, 29.80586783448571, 29.308600329731018, 28.802985199825876, 28.29297680841526, 27.782278580577426, 27.274160367641112, 26.771458447185548, 26.276575523040435, 25.79148072528597, 25.31770961025283, 24.85644516129849]], 'rnn_output': [[[-0.4297741949558258, -0.12740957736968994, 0.12612171471118927, 0.05125724896788597, 0.2436530739068985, 0.15753859281539917, -0.32091066241264343, -0.10670631378889084, 0.030990390107035637, -0.024261927232146263], [-0.48676520586013794, 0.04992418363690376, 0.18817457556724548, -0.1574266105890274, 0.45413243770599365, 0.26151594519615173, -0.41454067826271057, -0.0929594337940216, -0.1401839405298233, 0.15736648440361023], [-0.42163172364234924, 0.1652350276708603, 0.23812413215637207, -0.2208898663520813, 0.3564971089363098, 0.2678050398826599, -0.5246309638023376, -0.10952409356832504, -0.13328836858272552, 0.28795668482780457], [-0.41161268949508667, 0.18884198367595673, 0.29630333185195923, -0.23641133308410645, 0.3096621334552765, 0.3148840367794037, -0.5475935935974121, -0.0839928388595581, -0.13902965188026428, 0.32139670848846436], [-0.42068594694137573, 0.18885797262191772, 0.31852251291275024, -0.23287659883499146, 0.293989896774292, 0.3451681137084961, -0.5621008276939392, -0.07045075297355652, -0.1314343810081482, 0.3491538166999817], [-0.4312216639518738, 0.19088000059127808, 0.3332045376300812, -0.23747225105762482, 0.2941429913043976, 0.3643162250518799, -0.568071722984314, -0.06821583956480026, -0.13217680156230927, 0.36840981245040894], [-0.4343607425689697, 0.19833838939666748, 0.3420855700969696, -0.24287483096122742, 0.29417547583580017, 0.37599924206733704, -0.5728879570960999, -0.0681796744465828, -0.13380950689315796, 0.38293224573135376], [-0.43479272723197937, 0.20349407196044922, 0.34822753071784973, -0.24616600573062897, 0.29150161147117615, 0.38293197751045227, -0.5765410661697388, -0.06749928742647171, -0.13429176807403564, 0.392654687166214], [-0.43531376123428345, 0.20602762699127197, 0.3524104654788971, -0.24769362807273865, 0.2892996370792389, 0.3875896632671356, -0.5786861181259155, -0.06673459708690643, -0.1343337893486023, 0.3983350396156311], [-0.43598672747612, 0.20736640691757202, 0.35502251982688904, -0.24853762984275818, 0.28823360800743103, 0.39068567752838135, -0.5799235701560974, -0.06620727479457855, -0.13436855375766754, 0.4018557071685791], [-0.43647265434265137, 0.2082662582397461, 0.3566380441188812, -0.24914225935935974, 0.2877022922039032, 0.3926372826099396, -0.5807093977928162, -0.06596369296312332, -0.1344357281923294, 0.4041594862937927], [-0.4367365837097168, 0.20891109108924866, 0.35766905546188354, -0.24956917762756348, 0.28736329078674316, 0.3938598334789276, -0.581217885017395, -0.06583588570356369, -0.13450753688812256, 0.40565600991249084], [-0.436886727809906, 0.20934593677520752, 0.35833388566970825, -0.24985258281230927, 0.28711017966270447, 0.3946431279182434, -0.581550121307373, -0.06574753671884537, -0.13454706966876984, 0.4066087007522583], [-0.43698227405548096, 0.20961438119411469, 0.35876113176345825, -0.2500239610671997, 0.2869362235069275, 0.39514368772506714, -0.581762969493866, -0.06568116694688797, -0.1345660537481308, 0.4072135090827942], [-0.4370458722114563, 0.20977377891540527, 0.35903221368789673, -0.25012415647506714, 0.28682923316955566, 0.39545923471450806, -0.5818957686424255, -0.06563989073038101, -0.1345783770084381, 0.4075980484485626], [-0.43708810210227966, 0.20987364649772644, 0.3592037856578827, -0.25018781423568726, 0.2867668569087982, 0.39565935730934143, -0.5819776058197021, -0.0656169131398201, -0.13458900153636932, 0.4078419506549835], [-0.4371086657047272, 0.2099299132823944, 0.35930994153022766, -0.2502186894416809, 0.2867308557033539, 0.39577701687812805, -0.5820268988609314, -0.0656047984957695, -0.1345984786748886, 0.4079994261264801], [-0.43712154030799866, 0.2099630981683731, 0.3593760132789612, -0.2502371668815613, 0.286710649728775, 0.3958494961261749, -0.582054853439331, -0.0656009316444397, -0.13460664451122284, 0.4080964922904968], [-0.437132328748703, 0.20999039709568024, 0.35941848158836365, -0.2502553462982178, 0.286697655916214, 0.3959001302719116, -0.5820726156234741, -0.06559804081916809, -0.1346115916967392, 0.4081555902957916], [-0.43713614344596863, 0.21000568568706512, 0.3594444990158081, -0.2502630054950714, 0.2866879403591156, 0.3959288001060486, -0.5820848941802979, -0.0655946433544159, -0.13461384177207947, 0.4081953465938568], [-0.43714287877082825, 0.2100197821855545, 0.3594626188278198, -0.2502744793891907, 0.28668034076690674, 0.3959527313709259, -0.582093358039856, -0.06559281796216965, -0.13461440801620483, 0.4082179665565491], [-0.4371474087238312, 0.2100319266319275, 0.3594749867916107, -0.25028371810913086, 0.2866739332675934, 0.3959701657295227, -0.5821008086204529, -0.06558893620967865, -0.1346135288476944, 0.4082338809967041], [-0.4371466636657715, 0.21003305912017822, 0.3594817519187927, -0.2502821683883667, 0.2866700291633606, 0.3959752917289734, -0.5821052193641663, -0.06558684259653091, -0.1346132606267929, 0.4082464575767517], [-0.43714770674705505, 0.2100326418876648, 0.35948601365089417, -0.2502817213535309, 0.2866697907447815, 0.39597901701927185, -0.5821059942245483, -0.06558779627084732, -0.1346145123243332, 0.4082522690296173], [-0.43715232610702515, 0.2100408971309662, 0.3594902455806732, -0.2502903640270233, 0.28666841983795166, 0.3959885835647583, -0.5821080207824707, -0.06558717042207718, -0.13461431860923767, 0.40825432538986206], [-0.43715205788612366, 0.21004454791545868, 0.3594927191734314, -0.2502921223640442, 0.28666526079177856, 0.39599180221557617, -0.5821112394332886, -0.06558442860841751, -0.13461290299892426, 0.4082591235637665], [-0.43715396523475647, 0.21004700660705566, 0.3594951331615448, -0.2502950131893158, 0.286662757396698, 0.3959958851337433, -0.5821133255958557, -0.0655834898352623, -0.1346118003129959, 0.4082610011100769], [-0.43715232610702515, 0.2100445032119751, 0.35949575901031494, -0.25029152631759644, 0.28666290640830994, 0.39599424600601196, -0.5821136236190796, -0.06558282673358917, -0.13461217284202576, 0.40826377272605896], [-0.43714916706085205, 0.21003715693950653, 0.3594944179058075, -0.25028395652770996, 0.28666555881500244, 0.39598825573921204, -0.5821113586425781, -0.06558515876531601, -0.13461405038833618, 0.40826523303985596], [-0.43714815378189087, 0.2100333571434021, 0.35949307680130005, -0.2502807378768921, 0.2866692841053009, 0.39598506689071655, -0.5821081399917603, -0.06558822840452194, -0.13461647927761078, 0.40826380252838135], [-0.43714776635169983, 0.21003343164920807, 0.35949209332466125, -0.2502807378768921, 0.28667107224464417, 0.39598408341407776, -0.5821065902709961, -0.06558956950902939, -0.13461759686470032, 0.40826261043548584], [-0.43714651465415955, 0.21003253757953644, 0.35949113965034485, -0.25027936697006226, 0.28667140007019043, 0.39598217606544495, -0.5821058750152588, -0.06558998674154282, -0.134617879986763, 0.40826237201690674], [-0.43715357780456543, 0.21004422008991241, 0.3594939112663269, -0.250293105840683, 0.28666815161705017, 0.39599356055259705, -0.5821083188056946, -0.06558862328529358, -0.1346157193183899, 0.408258855342865], [-0.4371565580368042, 0.2100546658039093, 0.3594970703125, -0.2503020763397217, 0.28666195273399353, 0.3960021436214447, -0.5821142792701721, -0.06558261811733246, -0.13461165130138397, 0.4082612097263336], [-0.43714919686317444, 0.21004262566566467, 0.35949575901031494, -0.25028759241104126, 0.2866608798503876, 0.3959915339946747, -0.582115113735199, -0.06558137387037277, -0.1346113532781601, 0.408267617225647], [-0.43715211749076843, 0.2100391536951065, 0.35949596762657166, -0.25028765201568604, 0.28666481375694275, 0.39599210023880005, -0.5821114778518677, -0.06558580696582794, -0.13461387157440186, 0.4082639515399933], [-0.4371541440486908, 0.2100452482700348, 0.3594963848590851, -0.25029322504997253, 0.2866659462451935, 0.3959963321685791, -0.582111656665802, -0.0655851811170578, -0.13461419939994812, 0.4082629978656769], [-0.43715164065361023, 0.210044264793396, 0.35949593782424927, -0.25029078125953674, 0.28666412830352783, 0.39599382877349854, -0.5821129679679871, -0.06558414548635483, -0.1346132606267929, 0.4082653820514679], [-0.4371492564678192, 0.2100382298231125, 0.3594948947429657, -0.250284880399704, 0.28666552901268005, 0.3959890902042389, -0.5821112394332886, -0.06558559089899063, -0.13461443781852722, 0.4082655906677246], [-0.43715327978134155, 0.2100428342819214, 0.35949575901031494, -0.25029125809669495, 0.28666630387306213, 0.3959942162036896, -0.5821106433868408, -0.06558657437562943, -0.13461469113826752, 0.4082624316215515], [-0.4371533691883087, 0.2100469022989273, 0.3594962954521179, -0.2502939701080322, 0.2866644263267517, 0.3959963917732239, -0.5821126699447632, -0.0655842125415802, -0.13461335003376007, 0.4082637429237366], [-0.4371515214443207, 0.2100437879562378, 0.3594960868358612, -0.2502903938293457, 0.2866632640361786, 0.395993709564209, -0.5821132063865662, -0.06558384001255035, -0.1346128284931183, 0.4082654118537903], [-0.43715423345565796, 0.2100459635257721, 0.3594970703125, -0.2502939701080322, 0.2866634428501129, 0.3959971070289612, -0.5821130871772766, -0.06558430194854736, -0.13461293280124664, 0.4082637429237366], [-0.4371528625488281, 0.21004554629325867, 0.3594968616962433, -0.2502923905849457, 0.28666338324546814, 0.39599597454071045, -0.5821136236190796, -0.06558337062597275, -0.1346127986907959, 0.40826526284217834], [-0.4371490478515625, 0.21003802120685577, 0.3594951331615448, -0.2502843737602234, 0.2866652011871338, 0.3959890604019165, -0.5821118354797363, -0.06558503955602646, -0.13461413979530334, 0.408266544342041], [-0.43715134263038635, 0.21003901958465576, 0.35949504375457764, -0.25028711557388306, 0.2866673767566681, 0.39599087834358215, -0.5821097493171692, -0.06558729708194733, -0.1346154510974884, 0.4082634150981903], [-0.4371509253978729, 0.21004118025302887, 0.359494686126709, -0.2502882182598114, 0.28666722774505615, 0.3959912657737732, -0.5821101665496826, -0.06558641791343689, -0.1346151977777481, 0.40826359391212463], [-0.4371526539325714, 0.2100444883108139, 0.35949552059173584, -0.250292032957077, 0.286665141582489, 0.39599430561065674, -0.5821115374565125, -0.0655856728553772, -0.13461393117904663, 0.40826308727264404], [-0.4371577501296997, 0.2100541740655899, 0.3594984710216522, -0.2503024935722351, 0.28666141629219055, 0.39600372314453125, -0.5821149349212646, -0.0655827596783638, -0.13461147248744965, 0.40826213359832764], [-0.4371567368507385, 0.21005544066429138, 0.3594996929168701, -0.2503020465373993, 0.28665784001350403, 0.3960046172142029, -0.5821183919906616, -0.06557919085025787, -0.13460925221443176, 0.4082659184932709], [-0.43715447187423706, 0.21004877984523773, 0.35949942469596863, -0.2502955198287964, 0.2866584062576294, 0.3960001766681671, -0.5821177959442139, -0.06558000296354294, -0.1346098631620407, 0.40826788544654846], [-0.43715664744377136, 0.21004948019981384, 0.35949987173080444, -0.2502976655960083, 0.2866605520248413, 0.39600223302841187, -0.5821163654327393, -0.06558175384998322, -0.1346111297607422, 0.4082660377025604], [-0.4371597468852997, 0.21005721390247345, 0.35950136184692383, -0.2503053843975067, 0.28665891289711, 0.39600852131843567, -0.5821182727813721, -0.06558019667863846, -0.13460992276668549, 0.40826553106307983], [-0.43716123700141907, 0.21006278693675995, 0.35950323939323425, -0.2503102123737335, 0.2866547405719757, 0.39601317048072815, -0.5821219086647034, -0.06557708978652954, -0.1346074342727661, 0.40826722979545593], [-0.4371581971645355, 0.2100576013326645, 0.3595031797885895, -0.2503040134906769, 0.2866538166999817, 0.39600905776023865, -0.5821226239204407, -0.06557609140872955, -0.13460715115070343, 0.40827032923698425], [-0.4371550381183624, 0.21004825830459595, 0.3595013916492462, -0.2502950429916382, 0.2866576910018921, 0.3960018754005432, -0.5821192264556885, -0.0655791312456131, -0.13460968434810638, 0.4082706868648529], [-0.4371533691883087, 0.21004308760166168, 0.3594992160797119, -0.2502904534339905, 0.2866626977920532, 0.3959970474243164, -0.582115113735199, -0.06558291614055634, -0.13461273908615112, 0.40826886892318726], [-0.4371567964553833, 0.21004974842071533, 0.3594995141029358, -0.2502981722354889, 0.28666308522224426, 0.3960021436214447, -0.5821146368980408, -0.06558380275964737, -0.1346128284931183, 0.40826547145843506], [-0.4371553361415863, 0.21005181968212128, 0.35949939489364624, -0.2502984404563904, 0.2866607904434204, 0.39600199460983276, -0.5821164846420288, -0.06558138132095337, -0.13461138308048248, 0.4082671105861664], [-0.43715590238571167, 0.21005141735076904, 0.35949987173080444, -0.2502986490726471, 0.28665927052497864, 0.39600253105163574, -0.5821171998977661, -0.06558115035295486, -0.13461056351661682, 0.40826690196990967], [-0.4371556043624878, 0.21005022525787354, 0.35949987173080444, -0.2502973675727844, 0.2866598963737488, 0.3960018754005432, -0.582116961479187, -0.06558091938495636, -0.1346108615398407, 0.40826717019081116], [-0.4371534287929535, 0.2100459188222885, 0.35949864983558655, -0.25029271841049194, 0.28666144609451294, 0.3959978222846985, -0.582115650177002, -0.0655820295214653, -0.1346118301153183, 0.4082678556442261], [-0.43715283274650574, 0.21004344522953033, 0.35949769616127014, -0.25029078125953674, 0.2866635322570801, 0.3959956467151642, -0.5821136832237244, -0.06558391451835632, -0.13461317121982574, 0.40826669335365295], [-0.4371548295021057, 0.21004727482795715, 0.359497994184494, -0.25029510259628296, 0.28666359186172485, 0.3959987461566925, -0.5821136236190796, -0.06558413058519363, -0.13461308181285858, 0.4082649052143097], [-0.4371595084667206, 0.2100575864315033, 0.3595004081726074, -0.2503058612346649, 0.2866596579551697, 0.396007776260376, -0.5821170806884766, -0.0655813068151474, -0.13461044430732727, 0.4082639515399933], [-0.4371640384197235, 0.21006855368614197, 0.35950416326522827, -0.2503165900707245, 0.2866530418395996, 0.39601802825927734, -0.5821229815483093, -0.06557609885931015, -0.1346062421798706, 0.4082653820514679], [-0.43716689944267273, 0.2100747674703598, 0.3595077693462372, -0.2503224313259125, 0.28664714097976685, 0.3960250914096832, -0.5821284651756287, -0.06557139754295349, -0.13460257649421692, 0.4082685112953186], [-0.43717098236083984, 0.21008089184761047, 0.35951149463653564, -0.25032922625541687, 0.2866428792476654, 0.39603307843208313, -0.5821328163146973, -0.06556805968284607, -0.1345999389886856, 0.4082704782485962], [-0.43716877698898315, 0.21007782220840454, 0.35951241850852966, -0.25032472610473633, 0.28664180636405945, 0.3960311710834503, -0.5821346044540405, -0.06556617468595505, -0.1345994472503662, 0.4082750082015991], [-0.4371618628501892, 0.21006272733211517, 0.35950967669487, -0.2503088712692261, 0.2866465449333191, 0.39601847529411316, -0.5821306705474854, -0.06556983292102814, -0.1346028447151184, 0.40827804803848267], [-0.43715837597846985, 0.21005161106586456, 0.35950616002082825, -0.25029897689819336, 0.2866548001766205, 0.39600899815559387, -0.5821233987808228, -0.06557659804821014, -0.134608194231987, 0.40827545523643494], [-0.43715590238571167, 0.21004760265350342, 0.3595027029514313, -0.25029486417770386, 0.28666073083877563, 0.39600318670272827, -0.5821182131767273, -0.06558099389076233, -0.1346118003129959, 0.408272385597229], [-0.4371543228626251, 0.21004663407802582, 0.35950034856796265, -0.25029364228248596, 0.28666266798973083, 0.395999938249588, -0.582115650177002, -0.06558311730623245, -0.1346130222082138, 0.4082699716091156], [-0.43715035915374756, 0.210040882229805, 0.35949763655662537, -0.2502869665622711, 0.28666457533836365, 0.3959929943084717, -0.5821131467819214, -0.06558454036712646, -0.13461428880691528, 0.40826931595802307], [-0.43715181946754456, 0.21004101634025574, 0.35949668288230896, -0.25028860569000244, 0.28666603565216064, 0.3959932327270508, -0.5821112394332886, -0.06558650732040405, -0.13461501896381378, 0.40826570987701416], [-0.43715164065361023, 0.21004262566566467, 0.3594960570335388, -0.2502896189689636, 0.2866661250591278, 0.3959934115409851, -0.5821112394332886, -0.06558576226234436, -0.13461481034755707, 0.40826499462127686], [-0.43715277314186096, 0.21004486083984375, 0.3594963550567627, -0.25029218196868896, 0.28666460514068604, 0.395995169878006, -0.582112193107605, -0.06558515131473541, -0.1346137523651123, 0.4082643389701843], [-0.4371505677700043, 0.21004167199134827, 0.3594956398010254, -0.2502881586551666, 0.28666478395462036, 0.3959919512271881, -0.5821120738983154, -0.065584696829319, -0.13461384177207947, 0.40826550126075745], [-0.43715089559555054, 0.21003998816013336, 0.3594951927661896, -0.25028735399246216, 0.2866658866405487, 0.39599114656448364, -0.5821109414100647, -0.06558604538440704, -0.1346145123243332, 0.4082643687725067], [-0.437148779630661, 0.21003670990467072, 0.3594939410686493, -0.25028344988822937, 0.2866677939891815, 0.39598751068115234, -0.5821094512939453, -0.06558682024478912, -0.13461565971374512, 0.4082646071910858], [-0.43714722990989685, 0.21003301441669464, 0.3594924509525299, -0.25027996301651, 0.2866697609424591, 0.39598387479782104, -0.5821074843406677, -0.0655888170003891, -0.1346169114112854, 0.4082638919353485], [-0.4371473491191864, 0.2100328654050827, 0.3594917356967926, -0.2502801716327667, 0.2866712212562561, 0.3959833085536957, -0.5821059942245483, -0.0655900314450264, -0.13461779057979584, 0.4082622230052948], [-0.43714654445648193, 0.2100325971841812, 0.3594909608364105, -0.2502794563770294, 0.28667154908180237, 0.39598211646080017, -0.5821055769920349, -0.06559013575315475, -0.13461796939373016, 0.40826189517974854], [-0.4371483325958252, 0.21003544330596924, 0.3594914674758911, -0.25028297305107117, 0.28667059540748596, 0.3959847688674927, -0.5821060538291931, -0.06558994203805923, -0.13461732864379883, 0.40826061367988586], [-0.43714991211891174, 0.21003946661949158, 0.3594925105571747, -0.2502868175506592, 0.2866687476634979, 0.39598822593688965, -0.5821078419685364, -0.06558816879987717, -0.13461604714393616, 0.40826064348220825], [-0.4371492862701416, 0.2100391536951065, 0.3594928979873657, -0.2502859830856323, 0.2866672873497009, 0.39598798751831055, -0.5821091532707214, -0.06558691710233688, -0.13461513817310333, 0.40826216340065], [-0.43715330958366394, 0.2100445181131363, 0.3594948649406433, -0.25029271841049194, 0.28666552901268005, 0.3959942162036896, -0.5821107029914856, -0.06558611989021301, -0.1346139907836914, 0.4082609713077545], [-0.4371553063392639, 0.21005043387413025, 0.3594968616962433, -0.25029802322387695, 0.2866625487804413, 0.3959994912147522, -0.5821139216423035, -0.06558306515216827, -0.13461202383041382, 0.4082624018192291], [-0.4371553957462311, 0.2100512683391571, 0.35949814319610596, -0.250298410654068, 0.28665992617607117, 0.39600083231925964, -0.5821163058280945, -0.06558117270469666, -0.13461050391197205, 0.40826472640037537], [-0.43715524673461914, 0.21004962921142578, 0.3594988286495209, -0.2502969205379486, 0.286659836769104, 0.39600059390068054, -0.5821166038513184, -0.06558103859424591, -0.1346105933189392, 0.4082658290863037], [-0.43715545535087585, 0.21004906296730042, 0.3594990372657776, -0.25029659271240234, 0.28666064143180847, 0.3960006833076477, -0.5821162462234497, -0.06558150053024292, -0.1346110999584198, 0.4082661271095276], [-0.43715736269950867, 0.21005263924598694, 0.3594999611377716, -0.2503005266189575, 0.28666001558303833, 0.3960040509700775, -0.582116961479187, -0.06558123975992203, -0.13461068272590637, 0.408265620470047], [-0.43716007471084595, 0.21005898714065552, 0.35950183868408203, -0.2503069341182709, 0.2866572141647339, 0.39600980281829834, -0.5821195244789124, -0.06557908654212952, -0.1346089243888855, 0.4082658588886261], [-0.4371591806411743, 0.21005907654762268, 0.3595026731491089, -0.25030604004859924, 0.2866549491882324, 0.3960098922252655, -0.5821216106414795, -0.06557702273130417, -0.13460761308670044, 0.40826836228370667], [-0.43715474009513855, 0.2100495845079422, 0.3595011234283447, -0.25029587745666504, 0.28665709495544434, 0.39600205421447754, -0.5821197032928467, -0.06557847559452057, -0.134609192609787, 0.40827059745788574], [-0.43715521693229675, 0.21004636585712433, 0.35950008034706116, -0.25029420852661133, 0.2866610586643219, 0.3960002362728119, -0.5821162462234497, -0.06558206677436829, -0.13461165130138397, 0.4082680642604828], [-0.4371574819087982, 0.21005195379257202, 0.35950034856796265, -0.25029999017715454, 0.28666144609451294, 0.3960041403770447, -0.5821161866188049, -0.06558215618133545, -0.13461171090602875, 0.4082661271095276], [-0.4371604919433594, 0.21006037294864655, 0.3595021665096283, -0.25030821561813354, 0.2866573631763458, 0.3960108757019043, -0.5821195244789124, -0.06557931005954742, -0.1346091330051422, 0.4082660973072052], [-0.43715837597846985, 0.21005865931510925, 0.3595026731491089, -0.2503051161766052, 0.28665468096733093, 0.3960092067718506, -0.582121729850769, -0.06557685881853104, -0.13460764288902283, 0.4082691967487335], [-0.4371602535247803, 0.21005849540233612, 0.3595036268234253, -0.25030630826950073, 0.286654531955719, 0.3960111141204834, -0.582121729850769, -0.06557738780975342, -0.13460758328437805, 0.4082685112953186], [-0.43716442584991455, 0.21006612479686737, 0.3595057725906372, -0.2503145635128021, 0.2866530120372772, 0.3960185647010803, -0.5821238160133362, -0.0655757486820221, -0.13460637629032135, 0.4082677662372589], [-0.4371654987335205, 0.21007108688354492, 0.35950759053230286, -0.2503185570240021, 0.28664928674697876, 0.39602258801460266, -0.5821273922920227, -0.06557255983352661, -0.1346040666103363, 0.4082701504230499], [-0.43716639280319214, 0.2100723683834076, 0.35950925946235657, -0.2503199279308319, 0.28664669394493103, 0.3960249423980713, -0.5821295976638794, -0.06557092815637589, -0.1346026360988617, 0.408271849155426], [-0.4371686279773712, 0.21007531881332397, 0.35951104760169983, -0.2503233850002289, 0.28664538264274597, 0.396028995513916, -0.5821312069892883, -0.06556971371173859, -0.13460178673267365, 0.408272385597229], [-0.4371618330478668, 0.2100645750761032, 0.3595089018344879, -0.25031036138534546, 0.2866475582122803, 0.3960186541080475, -0.582129716873169, -0.06557032465934753, -0.13460342586040497, 0.4082767069339752], [-0.43716105818748474, 0.21005763113498688, 0.35950714349746704, -0.2503054440021515, 0.28665241599082947, 0.39601391553878784, -0.5821250677108765, -0.06557543575763702, -0.13460661470890045, 0.4082741141319275], [-0.43716198205947876, 0.21006006002426147, 0.3595063090324402, -0.25030800700187683, 0.2866551876068115, 0.39601489901542664, -0.5821229815483093, -0.06557690352201462, -0.1346081644296646, 0.40827158093452454], [-0.4371620714664459, 0.21006324887275696, 0.3595060408115387, -0.2503105103969574, 0.2866537272930145, 0.39601603150367737, -0.5821239352226257, -0.06557613611221313, -0.134607195854187, 0.4082713723182678], [-0.4371606707572937, 0.21006155014038086, 0.3595057427883148, -0.2503083348274231, 0.2866528034210205, 0.3960142135620117, -0.5821241736412048, -0.06557554006576538, -0.13460679352283478, 0.4082719683647156], [-0.4371613562107086, 0.21006089448928833, 0.35950571298599243, -0.2503083646297455, 0.28665319085121155, 0.39601439237594604, -0.5821236968040466, -0.06557604670524597, -0.1346069723367691, 0.40827104449272156], [-0.43716076016426086, 0.21006006002426147, 0.359505295753479, -0.2503073215484619, 0.28665390610694885, 0.3960133492946625, -0.582123339176178, -0.06557612121105194, -0.13460731506347656, 0.4082711935043335], [-0.43715810775756836, 0.21005533635616302, 0.3595038652420044, -0.2503020465373993, 0.286655455827713, 0.39600861072540283, -0.5821218490600586, -0.06557731330394745, -0.13460831344127655, 0.40827178955078125], [-0.43716052174568176, 0.21005770564079285, 0.3595041036605835, -0.25030580163002014, 0.2866562306880951, 0.39601126313209534, -0.582120954990387, -0.06557856500148773, -0.13460877537727356, 0.4082692265510559], [-0.4371616542339325, 0.2100621908903122, 0.359504759311676, -0.25030970573425293, 0.2866547703742981, 0.39601436257362366, -0.5821224451065063, -0.06557685136795044, -0.13460773229599, 0.4082692861557007], [-0.43716326355934143, 0.21006593108177185, 0.3595060706138611, -0.25031352043151855, 0.2866518199443817, 0.3960178792476654, -0.5821247696876526, -0.06557510048151016, -0.13460594415664673, 0.4082697927951813], [-0.4371642768383026, 0.21006794273853302, 0.35950738191604614, -0.25031545758247375, 0.2866498827934265, 0.3960203528404236, -0.5821266174316406, -0.0655733123421669, -0.13460472226142883, 0.40827080607414246], [-0.43715915083885193, 0.21005883812904358, 0.35950568318367004, -0.2503049373626709, 0.2866516411304474, 0.39601215720176697, -0.5821253061294556, -0.06557394564151764, -0.13460594415664673, 0.4082738757133484], [-0.4371568262577057, 0.2100502997636795, 0.35950344800949097, -0.25029754638671875, 0.28665661811828613, 0.39600542187690735, -0.5821207761764526, -0.06557846814393997, -0.1346091628074646, 0.4082723557949066], [-0.43716004490852356, 0.21005526185035706, 0.3595033288002014, -0.2503037452697754, 0.2866588532924652, 0.3960094153881073, -0.5821190476417542, -0.06558030843734741, -0.1346103399991989, 0.40826842188835144], [-0.4371584951877594, 0.2100573480129242, 0.35950276255607605, -0.25030407309532166, 0.28665733337402344, 0.3960089087486267, -0.5821202993392944, -0.06557853519916534, -0.13460934162139893, 0.4082697033882141], [-0.43715545535087585, 0.21005143225193024, 0.35950157046318054, -0.2502978444099426, 0.286657452583313, 0.3960035443305969, -0.5821194052696228, -0.06557927280664444, -0.134609654545784, 0.40827059745788574], [-0.4371529221534729, 0.2100439965724945, 0.3594995141029358, -0.25029078125953674, 0.2866613268852234, 0.39599737524986267, -0.582115888595581, -0.06558208912611008, -0.1346120536327362, 0.4082695543766022], [-0.4371512532234192, 0.21003973484039307, 0.35949721932411194, -0.2502868175506592, 0.2866653501987457, 0.39599284529685974, -0.5821124315261841, -0.06558505445718765, -0.13461443781852722, 0.40826770663261414], [-0.43715089559555054, 0.21003957092761993, 0.3594958484172821, -0.25028687715530396, 0.2866671085357666, 0.3959914445877075, -0.582110583782196, -0.06558671593666077, -0.1346154510974884, 0.40826570987701416], [-0.4371500313282013, 0.210039421916008, 0.3594948947429657, -0.2502862811088562, 0.2866674065589905, 0.3959900438785553, -0.5821099877357483, -0.06558693200349808, -0.13461560010910034, 0.4082648754119873], [-0.4371488392353058, 0.21003738045692444, 0.3594939112663269, -0.2502841055393219, 0.2866678535938263, 0.39598777890205383, -0.5821092128753662, -0.06558741629123688, -0.13461586833000183, 0.4082643985748291], [-0.4371516704559326, 0.2100413590669632, 0.3594946265220642, -0.2502892017364502, 0.28666725754737854, 0.3959917426109314, -0.5821095108985901, -0.06558733433485031, -0.13461533188819885, 0.4082622528076172], [-0.43714991211891174, 0.2100406140089035, 0.35949426889419556, -0.25028711557388306, 0.28666651248931885, 0.3959900140762329, -0.5821104049682617, -0.06558586657047272, -0.13461478054523468, 0.4082638919353485], [-0.4371439814567566, 0.2100287675857544, 0.35949140787124634, -0.2502744793891907, 0.28666946291923523, 0.39597928524017334, -0.5821074843406677, -0.06558829545974731, -0.134616881608963, 0.4082656800746918], [-0.4371444880962372, 0.2100248634815216, 0.3594897985458374, -0.25027257204055786, 0.28667429089546204, 0.395976722240448, -0.5821030139923096, -0.06559271365404129, -0.1346198469400406, 0.40826180577278137], [-0.4371480345726013, 0.21003296971321106, 0.35949018597602844, -0.25028112530708313, 0.2866743803024292, 0.39598265290260315, -0.5821031928062439, -0.0655924528837204, -0.1346195489168167, 0.4082588255405426], [-0.4371508061885834, 0.21004228293895721, 0.35949212312698364, -0.2502897083759308, 0.28666922450065613, 0.39598962664604187, -0.582107424736023, -0.06558873504400253, -0.13461627066135406, 0.40825924277305603], [-0.4371469020843506, 0.2100369930267334, 0.3594919741153717, -0.25028279423713684, 0.28666701912879944, 0.39598482847213745, -0.5821090340614319, -0.06558650732040405, -0.13461513817310333, 0.4082631766796112], [-0.43715038895606995, 0.21003779768943787, 0.35949310660362244, -0.2502859830856323, 0.2866676151752472, 0.39598825573921204, -0.5821084380149841, -0.06558803468942642, -0.13461542129516602, 0.40826088190078735], [-0.4371544420719147, 0.21004678308963776, 0.35949522256851196, -0.2502949833869934, 0.2866659164428711, 0.39599621295928955, -0.5821108818054199, -0.0655856654047966, -0.13461405038833618, 0.40826043486595154], [-0.4371506869792938, 0.21004371345043182, 0.35949501395225525, -0.25028979778289795, 0.2866637408733368, 0.39599236845970154, -0.5821129083633423, -0.06558357924222946, -0.13461284339427948, 0.40826478600502014], [-0.43715065717697144, 0.21003970503807068, 0.35949504375457764, -0.25028711557388306, 0.2866649329662323, 0.3959906995296478, -0.5821114182472229, -0.06558549404144287, -0.13461387157440186, 0.40826416015625], [-0.43715232610702515, 0.2100420445203781, 0.3594953715801239, -0.25028982758522034, 0.28666624426841736, 0.39599305391311646, -0.5821108222007751, -0.06558586657047272, -0.1346144825220108, 0.4082629978656769], [-0.4371512532234192, 0.21004220843315125, 0.3594951033592224, -0.2502892017364502, 0.2866656482219696, 0.3959921896457672, -0.5821114182472229, -0.06558533012866974, -0.13461416959762573, 0.4082641303539276], [-0.43715038895606995, 0.21004018187522888, 0.35949480533599854, -0.2502872049808502, 0.2866658568382263, 0.3959905207157135, -0.5821109414100647, -0.06558583676815033, -0.13461443781852722, 0.40826424956321716], [-0.4371524453163147, 0.21004287898540497, 0.3594954311847687, -0.2502906918525696, 0.28666576743125916, 0.39599350094795227, -0.5821110010147095, -0.06558597087860107, -0.13461431860923767, 0.4082629084587097], [-0.4371523857116699, 0.21004453301429749, 0.35949575901031494, -0.2502916157245636, 0.286664754152298, 0.3959943950176239, -0.5821121335029602, -0.06558464467525482, -0.13461360335350037, 0.40826380252838135], [-0.4371516704559326, 0.21004295349121094, 0.35949572920799255, -0.2502899765968323, 0.2866642475128174, 0.3959932029247284, -0.5821123719215393, -0.06558460742235184, -0.13461337983608246, 0.4082646071910858], [-0.4371499717235565, 0.21003903448581696, 0.3594948947429657, -0.25028589367866516, 0.2866658568382263, 0.39598992466926575, -0.5821110010147095, -0.06558562070131302, -0.1346144825220108, 0.4082649350166321], [-0.4371471107006073, 0.21003293991088867, 0.3594929575920105, -0.25027957558631897, 0.28666892647743225, 0.39598411321640015, -0.5821083188056946, -0.06558786332607269, -0.1346164494752884, 0.4082648754119873], [-0.43714678287506104, 0.21003104746341705, 0.3594916760921478, -0.25027841329574585, 0.28667157888412476, 0.39598214626312256, -0.582105815410614, -0.06559031456708908, -0.13461808860301971, 0.4082627594470978], [-0.4371478855609894, 0.21003414690494537, 0.3594914376735687, -0.25028160214424133, 0.2866717576980591, 0.3959839344024658, -0.5821055769920349, -0.06559044122695923, -0.13461805880069733, 0.40826115012168884], [-0.43714314699172974, 0.21002788841724396, 0.359489381313324, -0.2502736747264862, 0.28667253255844116, 0.39597684144973755, -0.5821046233177185, -0.06559053063392639, -0.1346186399459839, 0.40826305747032166], [-0.4371422231197357, 0.21002261340618134, 0.3594878315925598, -0.25026965141296387, 0.2866753935813904, 0.3959728479385376, -0.5821014642715454, -0.0655936673283577, -0.1346205174922943, 0.40826094150543213], [-0.4371444582939148, 0.21002621948719025, 0.3594876825809479, -0.25027400255203247, 0.2866767644882202, 0.39597567915916443, -0.5821004509925842, -0.06559444218873978, -0.13462106883525848, 0.40825819969177246], [-0.4371435046195984, 0.21002762019634247, 0.35948729515075684, -0.25027430057525635, 0.28667548298835754, 0.3959753215312958, -0.5821015238761902, -0.06559315323829651, -0.13462021946907043, 0.40825897455215454], [-0.43714553117752075, 0.2100304514169693, 0.35948827862739563, -0.25027796626091003, 0.2866736650466919, 0.39597848057746887, -0.5821026563644409, -0.06559253484010696, -0.1346190869808197, 0.4082580506801605], [-0.4371432662010193, 0.2100275307893753, 0.3594878017902374, -0.2502739131450653, 0.28667375445365906, 0.39597558975219727, -0.5821028351783752, -0.06559161841869354, -0.1346191167831421, 0.4082598388195038], [-0.4371476173400879, 0.21003253757953644, 0.3594893217086792, -0.25028085708618164, 0.28667277097702026, 0.39598149061203003, -0.5821035504341125, -0.06559201329946518, -0.1346183866262436, 0.40825754404067993], [-0.4371470808982849, 0.21003490686416626, 0.3594900071620941, -0.2502817213535309, 0.2866712510585785, 0.39598265290260315, -0.5821054577827454, -0.06558950245380402, -0.1346173882484436, 0.4082595705986023], [-0.43714526295661926, 0.21003100275993347, 0.35948964953422546, -0.2502776086330414, 0.28667086362838745, 0.3959795832633972, -0.5821055173873901, -0.06558983027935028, -0.13461732864379883, 0.40826109051704407], [-0.43714699149131775, 0.2100316882133484, 0.35949012637138367, -0.25027942657470703, 0.286671906709671, 0.3959813416004181, -0.5821046829223633, -0.06559077650308609, -0.13461796939373016, 0.40825963020324707], [-0.437147319316864, 0.21003380417823792, 0.35949036478996277, -0.25028106570243835, 0.28667157888412476, 0.39598265290260315, -0.5821053385734558, -0.06559006869792938, -0.1346176564693451, 0.4082600176334381], [-0.4371466338634491, 0.21003317832946777, 0.35949036478996277, -0.25028014183044434, 0.28667089343070984, 0.39598190784454346, -0.582105815410614, -0.06558971852064133, -0.13461732864379883, 0.4082608222961426], [-0.43714892864227295, 0.21003635227680206, 0.3594914376735687, -0.2502841055393219, 0.2866700291633606, 0.39598548412323, -0.5821064710617065, -0.06558942794799805, -0.13461680710315704, 0.4082598388195038], [-0.4371475279331207, 0.2100355178117752, 0.35949140787124634, -0.2502822279930115, 0.2866694927215576, 0.3959842622280121, -0.5821072459220886, -0.06558830291032791, -0.1346164494752884, 0.4082615375518799], [-0.43714767694473267, 0.21003428101539612, 0.3594914674758911, -0.25028157234191895, 0.28666967153549194, 0.39598384499549866, -0.5821069478988647, -0.06558900326490402, -0.13461662828922272, 0.40826138854026794], [-0.4371483623981476, 0.21003538370132446, 0.3594917058944702, -0.25028279423713684, 0.286670058965683, 0.3959849774837494, -0.5821068286895752, -0.06558898836374283, -0.13461680710315704, 0.4082610011100769], [-0.43714895844459534, 0.21003714203834534, 0.35949209332466125, -0.25028449296951294, 0.28666922450065613, 0.3959863483905792, -0.5821075439453125, -0.06558847427368164, -0.13461630046367645, 0.40826117992401123], [-0.4371480941772461, 0.21003608405590057, 0.3594920337200165, -0.25028297305107117, 0.28666889667510986, 0.39598533511161804, -0.5821077823638916, -0.0655880719423294, -0.13461615145206451, 0.4082620143890381], [-0.4371510446071625, 0.21004006266593933, 0.35949328541755676, -0.2502880394458771, 0.28666794300079346, 0.3959897756576538, -0.5821085572242737, -0.06558779627084732, -0.1346154808998108, 0.4082607626914978], [-0.4371476173400879, 0.21003636717796326, 0.3594924509525299, -0.25028255581855774, 0.286668062210083, 0.3959854543209076, -0.5821087956428528, -0.0655868723988533, -0.13461562991142273, 0.4082634449005127], [-0.43714451789855957, 0.21002809703350067, 0.3594905734062195, -0.250274658203125, 0.28667089343070984, 0.3959786593914032, -0.5821059346199036, -0.06558980792760849, -0.1346176266670227, 0.40826350450515747], [-0.4371446371078491, 0.21002617478370667, 0.359489381313324, -0.2502736747264862, 0.28667452931404114, 0.39597705006599426, -0.5821028351783752, -0.06559256464242935, -0.1346198171377182, 0.4082609713077545], [-0.4371456205844879, 0.21002957224845886, 0.35948899388313293, -0.25027698278427124, 0.2866747975349426, 0.39597877860069275, -0.5821025967597961, -0.06559272110462189, -0.1346198171377182, 0.4082595109939575], [-0.4371451437473297, 0.21003082394599915, 0.35948896408081055, -0.25027763843536377, 0.28667330741882324, 0.3959789276123047, -0.5821035504341125, -0.06559168547391891, -0.13461893796920776, 0.40825986862182617], [-0.4371471107006073, 0.2100335955619812, 0.35948991775512695, -0.25028106570243835, 0.2866717278957367, 0.3959820866584778, -0.5821046233177185, -0.06559086591005325, -0.1346179097890854, 0.4082591235637665], [-0.43714702129364014, 0.21003417670726776, 0.35949036478996277, -0.2502811551094055, 0.2866707444190979, 0.3959825932979584, -0.5821057558059692, -0.06558950245380402, -0.1346171796321869, 0.40826016664505005], [-0.4371468722820282, 0.21003323793411255, 0.3594905138015747, -0.25028032064437866, 0.2866705358028412, 0.39598217606544495, -0.5821059942245483, -0.06558957695960999, -0.13461709022521973, 0.40826064348220825], [-0.437146931886673, 0.21003277599811554, 0.3594905734062195, -0.2502800226211548, 0.28667110204696655, 0.3959820866584778, -0.5821056365966797, -0.0655897930264473, -0.13461744785308838, 0.40826064348220825], [-0.43714639544487, 0.21003201603889465, 0.3594902753829956, -0.25027909874916077, 0.2866714894771576, 0.3959812819957733, -0.5821053385734558, -0.06559012085199356, -0.13461770117282867, 0.40826088190078735], [-0.43715018033981323, 0.2100381851196289, 0.35949188470840454, -0.25028637051582336, 0.2866699993610382, 0.395987331867218, -0.5821065902709961, -0.06558945775032043, -0.13461671769618988, 0.4082592725753784], [-0.4371497929096222, 0.21004055440425873, 0.3594927191734314, -0.25028741359710693, 0.2866676151752472, 0.3959887623786926, -0.5821089744567871, -0.06558692455291748, -0.1346152275800705, 0.40826132893562317], [-0.4371474087238312, 0.21003536880016327, 0.3594922125339508, -0.2502819001674652, 0.28666767477989197, 0.3959847092628479, -0.582108736038208, -0.06558717787265778, -0.1346154510974884, 0.40826311707496643], [-0.4371475279331207, 0.21003271639347076, 0.359491765499115, -0.2502802312374115, 0.2866699993610382, 0.39598339796066284, -0.5821068286895752, -0.06558914482593536, -0.1346169114112854, 0.4082620143890381], [-0.4371457099914551, 0.2100302129983902, 0.3594904839992523, -0.2502771019935608, 0.28667211532592773, 0.39598023891448975, -0.5821052193641663, -0.06559022516012192, -0.13461817800998688, 0.40826207399368286], [-0.4371466636657715, 0.21003153920173645, 0.3594902753829956, -0.250279039144516, 0.2866724729537964, 0.39598122239112854, -0.5821045637130737, -0.06559121608734131, -0.13461841642856598, 0.4082604944705963], [-0.43714600801467896, 0.2100318819284439, 0.3594900071620941, -0.2502787411212921, 0.28667229413986206, 0.39598071575164795, -0.5821047425270081, -0.06559062749147415, -0.13461829721927643, 0.4082607328891754], [-0.43714430928230286, 0.21002858877182007, 0.3594891130924225, -0.25027525424957275, 0.28667277097702026, 0.39597761631011963, -0.5821040272712708, -0.06559121608734131, -0.13461866974830627, 0.40826115012168884], [-0.43714460730552673, 0.21002762019634247, 0.35948872566223145, -0.2502748966217041, 0.28667402267456055, 0.39597707986831665, -0.5821027755737305, -0.06559239327907562, -0.13461942970752716, 0.40825989842414856], [-0.43714991211891174, 0.21003733575344086, 0.3594907522201538, -0.250285804271698, 0.2866719365119934, 0.39598602056503296, -0.5821047425270081, -0.06559107452630997, -0.134617879986763, 0.40825751423835754], [-0.4371519386768341, 0.21004517376422882, 0.35949310660362244, -0.25029245018959045, 0.2866668403148651, 0.3959922790527344, -0.5821094512939453, -0.06558655202388763, -0.13461460173130035, 0.40825963020324707], [-0.43714913725852966, 0.21004058420658112, 0.3594934344291687, -0.2502867579460144, 0.286664754152298, 0.3959888517856598, -0.5821111798286438, -0.06558486819267273, -0.13461355865001678, 0.40826332569122314], [-0.4371519982814789, 0.2100410759449005, 0.3594946265220642, -0.2502892315387726, 0.28666552901268005, 0.39599183201789856, -0.5821106433868408, -0.06558608263731003, -0.13461405038833618, 0.40826183557510376], [-0.4371531903743744, 0.21004486083984375, 0.35949552059173584, -0.25029245018959045, 0.2866652011871338, 0.3959948420524597, -0.5821117162704468, -0.06558481603860855, -0.13461363315582275, 0.4082624912261963], [-0.4371490776538849, 0.21003910899162292, 0.35949432849884033, -0.2502853572368622, 0.2866654098033905, 0.39598897099494934, -0.5821115374565125, -0.0655849501490593, -0.13461405038833618, 0.4082653820514679], [-0.43714725971221924, 0.2100326120853424, 0.3594929277896881, -0.25027966499328613, 0.286668598651886, 0.39598405361175537, -0.5821083188056946, -0.06558803468942642, -0.13461627066135406, 0.4082643687725067], [-0.43714988231658936, 0.2100362330675125, 0.3594929575920105, -0.2502843141555786, 0.2866702973842621, 0.39598724246025085, -0.5821070671081543, -0.06558935344219208, -0.13461712002754211, 0.4082614481449127], [-0.43715158104896545, 0.21004264056682587, 0.35949385166168213, -0.2502901256084442, 0.2866678535938263, 0.39599162340164185, -0.582109272480011, -0.06558727473020554, -0.1346154510974884, 0.4082614481449127], [-0.43714937567710876, 0.21004043519496918, 0.35949379205703735, -0.2502868175506592, 0.2866659462451935, 0.39598923921585083, -0.5821105241775513, -0.06558576226234436, -0.13461445271968842, 0.4082637429237366], [-0.43715086579322815, 0.21004004776477814, 0.35949432849884033, -0.25028765201568604, 0.2866661548614502, 0.3959904611110687, -0.5821101665496826, -0.06558650732040405, -0.13461457192897797, 0.408262699842453], [-0.4371509253978729, 0.21004074811935425, 0.3594944477081299, -0.2502880394458771, 0.2866666316986084, 0.39599093794822693, -0.5821103453636169, -0.06558606028556824, -0.1346147209405899, 0.4082629978656769], [-0.4371505379676819, 0.21004030108451843, 0.3594943583011627, -0.2502874732017517, 0.2866663932800293, 0.39599040150642395, -0.5821104645729065, -0.0655861645936966, -0.13461463153362274, 0.4082634449005127], [-0.43714848160743713, 0.2100365161895752, 0.3594934940338135, -0.25028327107429504, 0.2866676151752472, 0.3959868252277374, -0.5821093916893005, -0.0655868798494339, -0.1346154808998108, 0.40826407074928284], [-0.4371478855609894, 0.2100340873003006, 0.35949254035949707, -0.25028130412101746, 0.28666943311691284, 0.39598479866981506, -0.582107663154602, -0.06558861583471298, -0.13461662828922272, 0.40826311707496643], [-0.43714821338653564, 0.21003477275371552, 0.35949212312698364, -0.2502821087837219, 0.28667038679122925, 0.395984947681427, -0.5821068286895752, -0.06558924168348312, -0.1346171498298645, 0.4082620441913605], [-0.43714872002601624, 0.21003669500350952, 0.3594922125339508, -0.2502838969230652, 0.28666970133781433, 0.39598608016967773, -0.5821073055267334, -0.06558883935213089, -0.13461671769618988, 0.40826165676116943], [-0.437150776386261, 0.21004070341587067, 0.35949331521987915, -0.25028830766677856, 0.2866677939891815, 0.39598986506462097, -0.5821087956428528, -0.06558762490749359, -0.13461551070213318, 0.4082612097263336], [-0.43714964389801025, 0.21004001796245575, 0.35949352383613586, -0.25028669834136963, 0.2866666913032532, 0.3959890305995941, -0.5821098685264587, -0.06558630615472794, -0.13461484014987946, 0.40826281905174255], [-0.4371446371078491, 0.21002976596355438, 0.35949134826660156, -0.25027579069137573, 0.28666940331459045, 0.3959800601005554, -0.582107424736023, -0.06558813899755478, -0.1346166878938675, 0.408264696598053], [-0.4371458888053894, 0.21002773940563202, 0.3594903349876404, -0.2502756416797638, 0.2866731584072113, 0.39597922563552856, -0.5821040272712708, -0.06559181958436966, -0.13461896777153015, 0.4082612991333008], [-0.4371498227119446, 0.2100369930267334, 0.35949140787124634, -0.25028517842292786, 0.28667229413986206, 0.3959863483905792, -0.5821051001548767, -0.06559084355831146, -0.1346181482076645, 0.40825894474983215], [-0.43714526295661926, 0.2100336104631424, 0.35949042439460754, -0.2502792775630951, 0.2866702377796173, 0.3959812521934509, -0.5821066498756409, -0.06558869034051895, -0.13461703062057495, 0.408262699842453], [-0.4371457099914551, 0.21003004908561707, 0.35949021577835083, -0.2502773106098175, 0.28667116165161133, 0.3959799110889435, -0.5821051001548767, -0.06559069454669952, -0.13461779057979584, 0.40826112031936646], [-0.4371502101421356, 0.21003742516040802, 0.3594917058944702, -0.250285804271698, 0.2866709530353546, 0.39598703384399414, -0.582105815410614, -0.06558997929096222, -0.13461732864379883, 0.40825873613357544], [-0.43714651465415955, 0.21003508567810059, 0.3594909906387329, -0.25028109550476074, 0.2866695523262024, 0.39598312973976135, -0.5821073651313782, -0.06558798253536224, -0.1346164494752884, 0.40826237201690674], [-0.43714600801467896, 0.21003085374832153, 0.35949060320854187, -0.2502780258655548, 0.2866705060005188, 0.39598074555397034, -0.5821058750152588, -0.06558991223573685, -0.13461732864379883, 0.4082616865634918], [-0.4371475279331207, 0.21003268659114838, 0.3594907820224762, -0.25028032064437866, 0.2866719365119934, 0.3959825932979584, -0.5821050405502319, -0.06559048593044281, -0.13461799919605255, 0.40826016664505005], [-0.4371459484100342, 0.21003194153308868, 0.3594900965690613, -0.25027865171432495, 0.28667184710502625, 0.3959808051586151, -0.5821052193641663, -0.06559015810489655, -0.1346179097890854, 0.408261239528656], [-0.437141090631485, 0.21002282202243805, 0.35948777198791504, -0.2502687871456146, 0.28667429089546204, 0.39597219228744507, -0.5821027159690857, -0.06559209525585175, -0.13461969792842865, 0.4082624018192291], [-0.4371408224105835, 0.21001872420310974, 0.35948610305786133, -0.25026601552963257, 0.2866782546043396, 0.395969033241272, -0.5820989012718201, -0.06559573858976364, -0.13462218642234802, 0.40825948119163513], [-0.43714097142219543, 0.21002009510993958, 0.35948503017425537, -0.2502673268318176, 0.2866800129413605, 0.39596888422966003, -0.5820974707603455, -0.06559672206640244, -0.13462306559085846, 0.4082576632499695], [-0.4371369779109955, 0.21001507341861725, 0.35948288440704346, -0.25026100873947144, 0.28668102622032166, 0.3959626853466034, -0.5820961594581604, -0.06559742242097855, -0.13462376594543457, 0.4082585275173187], [-0.437141090631485, 0.21001943945884705, 0.35948362946510315, -0.2502675950527191, 0.2866809368133545, 0.39596760272979736, -0.5820956230163574, -0.06559853255748749, -0.13462364673614502, 0.4082546532154083], [-0.43713948130607605, 0.21002036333084106, 0.3594833016395569, -0.2502666711807251, 0.28668004274368286, 0.3959667682647705, -0.5820968151092529, -0.06559640169143677, -0.13462288677692413, 0.4082562327384949], [-0.4371395409107208, 0.21001897752285004, 0.3594832718372345, -0.2502659559249878, 0.2866792678833008, 0.39596614241600037, -0.5820969343185425, -0.06559683382511139, -0.1346224844455719, 0.4082561433315277], [-0.4371417760848999, 0.2100222259759903, 0.3594842255115509, -0.2502698302268982, 0.2866789996623993, 0.3959696292877197, -0.5820974111557007, -0.06559640169143677, -0.1346222162246704, 0.4082549810409546], [-0.4371451139450073, 0.21002958714962006, 0.3594861626625061, -0.2502773404121399, 0.2866760790348053, 0.3959762454032898, -0.5821002721786499, -0.06559409946203232, -0.13462018966674805, 0.4082549214363098], [-0.43714234232902527, 0.21002697944641113, 0.35948628187179565, -0.25027310848236084, 0.2866743206977844, 0.3959735333919525, -0.5821019411087036, -0.06559205800294876, -0.13461926579475403, 0.4082583785057068], [-0.4371471405029297, 0.21003161370754242, 0.3594883978366852, -0.25028008222579956, 0.28667303919792175, 0.3959800899028778, -0.58210289478302, -0.06559237837791443, -0.13461846113204956, 0.4082563519477844], [-0.4371511936187744, 0.21004164218902588, 0.3594913184642792, -0.2502896785736084, 0.2866695821285248, 0.3959890604019165, -0.5821067690849304, -0.06558859348297119, -0.13461606204509735, 0.4082570970058441], [-0.4371524453163147, 0.21004627645015717, 0.3594937026500702, -0.2502935230731964, 0.28666460514068604, 0.39599353075027466, -0.5821112990379333, -0.0655849277973175, -0.13461308181285858, 0.408260315656662], [-0.4371539354324341, 0.21004781126976013, 0.35949593782424927, -0.25029534101486206, 0.2866620719432831, 0.39599674940109253, -0.5821136832237244, -0.06558308750391006, -0.13461171090602875, 0.40826210379600525], [-0.4371512830257416, 0.2100425511598587, 0.3594956696033478, -0.2502892017364502, 0.28666311502456665, 0.39599278569221497, -0.5821133852005005, -0.06558308005332947, -0.13461244106292725, 0.4082649350166321], [-0.4371463358402252, 0.21003133058547974, 0.35949307680130005, -0.25027772784233093, 0.2866677939891815, 0.3959830403327942, -0.5821093916893005, -0.06558679044246674, -0.13461565971374512, 0.4082660675048828], [-0.437144935131073, 0.21002604067325592, 0.3594907224178314, -0.2502734661102295, 0.28667330741882324, 0.3959782123565674, -0.582104504108429, -0.06559141725301743, -0.13461914658546448, 0.40826329588890076], [-0.4371446967124939, 0.2100270539522171, 0.3594892621040344, -0.2502743899822235, 0.28667548298835754, 0.39597734808921814, -0.582102358341217, -0.06559313088655472, -0.13462042808532715, 0.4082610011100769], [-0.43714067339897156, 0.21002225577831268, 0.3594869375228882, -0.25026822090148926, 0.28667667508125305, 0.39597105979919434, -0.5821008086204529, -0.0655939057469368, -0.1346212476491928, 0.4082615077495575], [-0.43714162707328796, 0.2100214660167694, 0.3594861328601837, -0.2502687871456146, 0.28667792677879333, 0.39597073197364807, -0.5820989608764648, -0.06559588760137558, -0.1346220076084137, 0.4082585871219635], [-0.43714210391044617, 0.21002353727817535, 0.3594858646392822, -0.2502706050872803, 0.28667816519737244, 0.3959716558456421, -0.5820988416671753, -0.065595343708992, -0.13462191820144653, 0.4082576036453247], [-0.437141478061676, 0.21002332866191864, 0.3594854474067688, -0.2502700388431549, 0.28667736053466797, 0.39597088098526, -0.5820993781089783, -0.06559494882822037, -0.13462133705615997, 0.4082578718662262], [-0.43714725971221924, 0.2100323885679245, 0.359487920999527, -0.25028088688850403, 0.2866746187210083, 0.3959801495075226, -0.582101583480835, -0.06559352576732635, -0.13461951911449432, 0.408255398273468], [-0.4371509253978729, 0.21004265546798706, 0.35949110984802246, -0.25029027462005615, 0.28666919469833374, 0.3959890604019165, -0.5821068286895752, -0.06558849662542343, -0.1346159279346466, 0.40825700759887695], [-0.43715232610702515, 0.21004627645015717, 0.3594937026500702, -0.25029343366622925, 0.28666412830352783, 0.3959934115409851, -0.5821114182472229, -0.06558476388454437, -0.13461284339427948, 0.4082602560520172], [-0.4371506869792938, 0.21004198491573334, 0.3594944477081299, -0.250288724899292, 0.286663681268692, 0.3959912061691284, -0.582112193107605, -0.06558394432067871, -0.1346127986907959, 0.4082632064819336], [-0.43715110421180725, 0.21003973484039307, 0.3594946265220642, -0.25028738379478455, 0.28666555881500244, 0.3959907293319702, -0.5821110010147095, -0.06558557599782944, -0.1346140205860138, 0.40826311707496643], [-0.4371519386768341, 0.2100415676832199, 0.3594948947429657, -0.25028926134109497, 0.2866663932800293, 0.3959921896457672, -0.5821107625961304, -0.06558593362569809, -0.1346144825220108, 0.4082629084587097], [-0.4371502995491028, 0.2100403904914856, 0.35949447751045227, -0.250287264585495, 0.28666624426841736, 0.3959903419017792, -0.5821107625961304, -0.06558577716350555, -0.13461454212665558, 0.40826407074928284], [-0.43715065717697144, 0.21004001796245575, 0.35949453711509705, -0.25028738379478455, 0.2866664528846741, 0.3959904611110687, -0.5821103453636169, -0.06558647751808167, -0.13461478054523468, 0.4082634150981903], [-0.43714940547943115, 0.2100382000207901, 0.3594939112663269, -0.2502850890159607, 0.2866673469543457, 0.39598849415779114, -0.5821096897125244, -0.06558665633201599, -0.13461530208587646, 0.40826383233070374], [-0.4371474087238312, 0.21003398299217224, 0.35949262976646423, -0.2502807676792145, 0.28666895627975464, 0.3959844708442688, -0.5821081399917603, -0.06558810919523239, -0.13461638987064362, 0.4082638919353485], [-0.43714654445648193, 0.21003133058547974, 0.3594914972782135, -0.2502784729003906, 0.2866711914539337, 0.3959819972515106, -0.5821059942245483, -0.06558988243341446, -0.13461779057979584, 0.408262699842453], [-0.43715065717697144, 0.21003858745098114, 0.35949259996414185, -0.25028687715530396, 0.2866702377796173, 0.39598843455314636, -0.5821067690849304, -0.06558965891599655, -0.13461700081825256, 0.4082600176334381], [-0.43714889883995056, 0.21003951132297516, 0.3594927191734314, -0.25028592348098755, 0.28666800260543823, 0.39598774909973145, -0.5821088552474976, -0.06558704376220703, -0.13461557030677795, 0.4082624018192291], [-0.43714892864227295, 0.21003751456737518, 0.3594929277896881, -0.2502846419811249, 0.2866673469543457, 0.3959871232509613, -0.5821089744567871, -0.06558738648891449, -0.13461530208587646, 0.4082625210285187], [-0.43714478611946106, 0.21002952754497528, 0.3594910502433777, -0.25027576088905334, 0.286670446395874, 0.3959798216819763, -0.5821065306663513, -0.0655888170003891, -0.13461729884147644, 0.40826380252838135], [-0.437145471572876, 0.21002764999866486, 0.35948991775512695, -0.25027528405189514, 0.2866734564304352, 0.3959785997867584, -0.5821037888526917, -0.06559199094772339, -0.1346190869808197, 0.4082612097263336], [-0.4371478855609894, 0.21003368496894836, 0.35949042439460754, -0.25028151273727417, 0.2866731584072113, 0.3959829807281494, -0.5821041464805603, -0.0655914843082428, -0.13461875915527344, 0.4082592725753784], [-0.43714815378189087, 0.21003717184066772, 0.35949110984802246, -0.2502841055393219, 0.2866702079772949, 0.39598506689071655, -0.5821064710617065, -0.06558923423290253, -0.1346169114112854, 0.40826037526130676], [-0.4371460974216461, 0.21003325283527374, 0.3594907820224762, -0.2502796947956085, 0.2866695821285248, 0.39598193764686584, -0.5821067690849304, -0.06558875739574432, -0.13461671769618988, 0.4082619845867157], [-0.43714261054992676, 0.21002456545829773, 0.3594888746738434, -0.2502709627151489, 0.28667303919792175, 0.39597469568252563, -0.5821036696434021, -0.0655912235379219, -0.13461893796920776, 0.40826237201690674], [-0.4371508061885834, 0.21003596484661102, 0.3594910204410553, -0.25028547644615173, 0.2866728603839874, 0.3959862291812897, -0.582103967666626, -0.06559228897094727, -0.13461846113204956, 0.4082568883895874], [-0.43715012073516846, 0.2100425660610199, 0.3594922423362732, -0.2502891421318054, 0.286668598651886, 0.39598941802978516, -0.5821083784103394, -0.0655871108174324, -0.1346156895160675, 0.40826037526130676], [-0.4371544122695923, 0.21004877984523773, 0.35949528217315674, -0.25029677152633667, 0.28666311502456665, 0.39599692821502686, -0.5821124315261841, -0.06558487564325333, -0.13461244106292725, 0.4082605540752411], [-0.4371594190597534, 0.2100582867860794, 0.3594993054866791, -0.25030654668807983, 0.28665870428085327, 0.39600712060928345, -0.5821170210838318, -0.06558036804199219, -0.13460958003997803, 0.40826159715652466], [-0.43715858459472656, 0.21005873382091522, 0.3595009446144104, -0.25030556321144104, 0.28665515780448914, 0.39600813388824463, -0.5821207761764526, -0.06557713449001312, -0.13460740447044373, 0.40826621651649475], [-0.437163770198822, 0.21006463468074799, 0.3595042824745178, -0.2503134608268738, 0.28665271401405334, 0.39601626992225647, -0.5821231007575989, -0.06557611376047134, -0.13460597395896912, 0.4082658588886261], [-0.4371645748615265, 0.2100687474012375, 0.3595063090324402, -0.2503162920475006, 0.2866503596305847, 0.3960200846195221, -0.582126259803772, -0.06557302922010422, -0.13460448384284973, 0.40826883912086487], [-0.4371638596057892, 0.2100672721862793, 0.3595072329044342, -0.2503146231174469, 0.28664880990982056, 0.39601969718933105, -0.5821276307106018, -0.0655723363161087, -0.1346038430929184, 0.4082714021205902], [-0.43716922402381897, 0.2100747972726822, 0.3595101535320282, -0.2503238022327423, 0.28664711117744446, 0.39602842926979065, -0.5821294188499451, -0.06557151675224304, -0.13460278511047363, 0.4082699418067932], [-0.4371711313724518, 0.2100817859172821, 0.3595125377178192, -0.25032955408096313, 0.2866433262825012, 0.3960343897342682, -0.5821334719657898, -0.06556760519742966, -0.13460035622119904, 0.40827253460884094], [-0.4371702969074249, 0.2100808024406433, 0.3595137894153595, -0.250328004360199, 0.28664064407348633, 0.3960343301296234, -0.582135796546936, -0.06556590646505356, -0.13459892570972443, 0.40827569365501404], [-0.43717247247695923, 0.21008215844631195, 0.35951539874076843, -0.2503304183483124, 0.2866402566432953, 0.3960375189781189, -0.5821363925933838, -0.06556583940982819, -0.13459883630275726, 0.40827566385269165], [-0.43717145919799805, 0.21008139848709106, 0.35951557755470276, -0.25032880902290344, 0.2866404950618744, 0.3960367739200592, -0.5821368098258972, -0.06556521356105804, -0.1345989853143692, 0.4082774817943573], [-0.4371688663959503, 0.2100761979818344, 0.3595145642757416, -0.25032323598861694, 0.2866419553756714, 0.3960321545600891, -0.5821354389190674, -0.06556661427021027, -0.13460011780261993, 0.4082786440849304], [-0.4371671974658966, 0.21007144451141357, 0.3595131039619446, -0.25031882524490356, 0.2866450846195221, 0.3960280418395996, -0.5821326375007629, -0.06556916981935501, -0.13460217416286469, 0.40827786922454834], [-0.4371658265590668, 0.21006886661052704, 0.3595115542411804, -0.2503162622451782, 0.2866477370262146, 0.3960249722003937, -0.5821302533149719, -0.06557115167379379, -0.134603813290596, 0.4082767069339752], [-0.43716341257095337, 0.21006515622138977, 0.35950967669487, -0.25031203031539917, 0.28664979338645935, 0.39602044224739075, -0.58212810754776, -0.06557280570268631, -0.13460512459278107, 0.40827611088752747], [-0.43716347217559814, 0.21006444096565247, 0.3595086932182312, -0.2503119111061096, 0.2866511344909668, 0.39601942896842957, -0.5821264982223511, -0.0655742809176445, -0.13460597395896912, 0.4082741439342499], [-0.4371628761291504, 0.21006426215171814, 0.35950788855552673, -0.2503114640712738, 0.2866516709327698, 0.396018385887146, -0.5821259021759033, -0.06557447463274002, -0.13460621237754822, 0.4082734286785126], [-0.437159925699234, 0.21005931496620178, 0.35950618982315063, -0.25030583143234253, 0.2866530120372772, 0.3960131108760834, -0.5821244120597839, -0.06557543575763702, -0.13460703194141388, 0.408273845911026], [-0.43716174364089966, 0.21006032824516296, 0.3595059812068939, -0.25030821561813354, 0.28665411472320557, 0.39601457118988037, -0.5821231007575989, -0.06557697057723999, -0.13460767269134521, 0.4082711338996887], [-0.43715760111808777, 0.21005532145500183, 0.35950401425361633, -0.2503015398979187, 0.2866557836532593, 0.3960084319114685, -0.5821218490600586, -0.06557708978652954, -0.13460864126682281, 0.40827256441116333], [-0.43715816736221313, 0.21005362272262573, 0.3595031499862671, -0.2503012418746948, 0.2866572439670563, 0.3960074186325073, -0.5821199417114258, -0.06557948887348175, -0.13460958003997803, 0.4082702696323395], [-0.43715929985046387, 0.2100566029548645, 0.3595031499862671, -0.2503041923046112, 0.2866576015949249, 0.3960094153881073, -0.5821198225021362, -0.06557916104793549, -0.13460959494113922, 0.40826886892318726], [-0.43715524673461914, 0.21005123853683472, 0.3595013916492462, -0.2502973675727844, 0.2866581082344055, 0.39600327610969543, -0.5821192264556885, -0.06557920575141907, -0.13460995256900787, 0.4082707464694977], [-0.43715324997901917, 0.21004456281661987, 0.35949957370758057, -0.2502915561199188, 0.28666114807128906, 0.39599788188934326, -0.5821160078048706, -0.06558220088481903, -0.13461197912693024, 0.40826940536499023], [-0.4371534585952759, 0.21004393696784973, 0.35949835181236267, -0.2502914071083069, 0.28666403889656067, 0.3959968090057373, -0.5821135640144348, -0.06558419018983841, -0.13461358845233917, 0.4082670211791992], [-0.4371514320373535, 0.21004214882850647, 0.35949674248695374, -0.25028884410858154, 0.2866651117801666, 0.39599356055259705, -0.5821124911308289, -0.06558486074209213, -0.13461419939994812, 0.4082668423652649], [-0.4371512830257416, 0.21004123985767365, 0.35949602723121643, -0.2502884268760681, 0.2866656482219696, 0.3959924876689911, -0.5821114778518677, -0.0655858963727951, -0.13461457192897797, 0.40826544165611267], [-0.43715256452560425, 0.21004372835159302, 0.35949617624282837, -0.25029119849205017, 0.2866654396057129, 0.3959944546222687, -0.5821115970611572, -0.06558561325073242, -0.13461428880691528, 0.4082641303539276], [-0.43715018033981323, 0.21004095673561096, 0.35949525237083435, -0.25028738379478455, 0.2866654396057129, 0.39599114656448364, -0.5821115374565125, -0.0655851662158966, -0.1346142590045929, 0.4082653522491455], [-0.43715181946754456, 0.2100415974855423, 0.35949546098709106, -0.25028926134109497, 0.2866657078266144, 0.39599254727363586, -0.5821110010147095, -0.06558610498905182, -0.13461437821388245, 0.4082637131214142], [-0.43715497851371765, 0.21004822850227356, 0.35949692130088806, -0.2502962052822113, 0.28666412830352783, 0.395998477935791, -0.5821127891540527, -0.06558454036712646, -0.13461320102214813, 0.4082627594470978], [-0.4371505677700043, 0.21004323661327362, 0.35949593782424927, -0.25028911232948303, 0.28666335344314575, 0.39599284529685974, -0.58211350440979, -0.06558315455913544, -0.13461284339427948, 0.4082663357257843], [-0.43714964389801025, 0.21003732085227966, 0.3594949245452881, -0.25028449296951294, 0.28666576743125916, 0.39598900079727173, -0.5821108818054199, -0.06558604538440704, -0.1346145123243332, 0.40826526284217834], [-0.4371483623981476, 0.21003443002700806, 0.3594934940338135, -0.25028154253959656, 0.28666919469833374, 0.3959859311580658, -0.5821082592010498, -0.06558799743652344, -0.13461656868457794, 0.4082641899585724], [-0.4371461868286133, 0.21003112196922302, 0.35949161648750305, -0.25027793645858765, 0.28667131066322327, 0.3959817588329315, -0.5821062326431274, -0.0655897930264473, -0.134617879986763, 0.4082636535167694], [-0.4371470510959625, 0.21003229916095734, 0.35949113965034485, -0.2502797245979309, 0.28667205572128296, 0.39598244428634644, -0.5821051597595215, -0.06559092551469803, -0.1346183568239212, 0.40826141834259033], [-0.43714627623558044, 0.21003247797489166, 0.3594905734062195, -0.2502793073654175, 0.28667187690734863, 0.3959815800189972, -0.5821052193641663, -0.06559031456708908, -0.13461817800998688, 0.4082614481449127], [-0.4371446967124939, 0.21002936363220215, 0.35948964953422546, -0.25027602910995483, 0.28667235374450684, 0.39597856998443604, -0.582104504108429, -0.06559096276760101, -0.13461846113204956, 0.4082615375518799], [-0.4371446669101715, 0.21002793312072754, 0.3594890534877777, -0.2502751350402832, 0.28667375445365906, 0.39597752690315247, -0.5821031332015991, -0.06559209525585175, -0.13461926579475403, 0.4082603454589844], [-0.4371466636657715, 0.21003174781799316, 0.3594895005226135, -0.25027936697006226, 0.2866733968257904, 0.39598071575164795, -0.5821034908294678, -0.06559184938669205, -0.1346188485622406, 0.40825897455215454], [-0.4371458888053894, 0.2100323885679245, 0.3594895303249359, -0.25027915835380554, 0.28667208552360535, 0.3959805369377136, -0.5821046829223633, -0.065590500831604, -0.13461805880069733, 0.40826013684272766], [-0.4371490478515625, 0.2100367695093155, 0.35949110984802246, -0.25028467178344727, 0.28667011857032776, 0.3959854543209076, -0.5821061134338379, -0.0655897781252861, -0.13461685180664062, 0.4082590937614441], [-0.437151700258255, 0.21004317700862885, 0.3594931662082672, -0.25029078125953674, 0.28666722774505615, 0.39599141478538513, -0.5821090340614319, -0.06558694690465927, -0.13461486995220184, 0.4082597494125366], [-0.4371523857116699, 0.21004536747932434, 0.359494686126709, -0.25029250979423523, 0.286664217710495, 0.3959938883781433, -0.5821118950843811, -0.06558454781770706, -0.1346130222082138, 0.4082619547843933], [-0.43715524673461914, 0.21004930138587952, 0.3594968914985657, -0.2502971887588501, 0.2866620421409607, 0.39599892497062683, -0.582114040851593, -0.06558314710855484, -0.13461174070835114, 0.40826237201690674], [-0.43716123700141907, 0.21006055176258087, 0.3595006763935089, -0.2503092586994171, 0.28665775060653687, 0.39601030945777893, -0.5821183323860168, -0.06557981669902802, -0.13460895419120789, 0.40826234221458435], [-0.43715623021125793, 0.21005555987358093, 0.3595007658004761, -0.250301331281662, 0.28665557503700256, 0.39600512385368347, -0.5821207761764526, -0.06557677686214447, -0.13460782170295715, 0.40826863050460815], [-0.4371558427810669, 0.21004915237426758, 0.35950055718421936, -0.25029677152633667, 0.28665778040885925, 0.3960021138191223, -0.582118570804596, -0.06557991355657578, -0.13460949063301086, 0.4082682132720947], [-0.4371570944786072, 0.2100505381822586, 0.35950055718421936, -0.25029855966567993, 0.28666049242019653, 0.39600348472595215, -0.582116961479187, -0.06558108329772949, -0.13461104035377502, 0.4082668125629425], [-0.4371575117111206, 0.2100536823272705, 0.3595007061958313, -0.25030121207237244, 0.28665947914123535, 0.39600515365600586, -0.5821178555488586, -0.0655805915594101, -0.13461041450500488, 0.4082670211791992], [-0.4371565878391266, 0.21005311608314514, 0.3595007658004761, -0.2503000795841217, 0.28665846586227417, 0.3960043489933014, -0.5821184515953064, -0.06557989865541458, -0.13460995256900787, 0.4082679748535156], [-0.4371577799320221, 0.21005399525165558, 0.35950133204460144, -0.2503015995025635, 0.2866581082344055, 0.39600592851638794, -0.5821186304092407, -0.06557992845773697, -0.13460974395275116, 0.40826737880706787], [-0.4371599555015564, 0.2100582718849182, 0.35950252413749695, -0.250306099653244, 0.28665682673454285, 0.39601001143455505, -0.5821200013160706, -0.06557874381542206, -0.13460880517959595, 0.4082671105861664], [-0.43715572357177734, 0.2100525051355362, 0.35950136184692383, -0.2502986490726471, 0.28665709495544434, 0.3960040807723999, -0.5821199417114258, -0.06557825207710266, -0.13460910320281982, 0.4082701504230499], [-0.43715566396713257, 0.21004855632781982, 0.35950061678886414, -0.25029611587524414, 0.28665944933891296, 0.39600178599357605, -0.5821175575256348, -0.06558103114366531, -0.13461071252822876, 0.40826860070228577], [-0.4371506869792938, 0.21004045009613037, 0.3594977855682373, -0.25028669834136963, 0.2866637706756592, 0.395993173122406, -0.582114040851593, -0.06558319926261902, -0.13461340963840485, 0.4082692563533783], [-0.43715253472328186, 0.21004115045070648, 0.3594968020915985, -0.2502892017364502, 0.28666597604751587, 0.3959938883781433, -0.5821115970611572, -0.06558632105588913, -0.1346147209405899, 0.40826553106307983], [-0.437154620885849, 0.21004782617092133, 0.35949745774269104, -0.2502954602241516, 0.286664754152298, 0.39599841833114624, -0.5821126699447632, -0.06558476388454437, -0.1346137821674347, 0.4082641303539276], [-0.43715232610702515, 0.21004635095596313, 0.3594970107078552, -0.25029268860816956, 0.28666263818740845, 0.39599609375, -0.5821141600608826, -0.06558313220739365, -0.1346125304698944, 0.40826621651649475], [-0.43715330958366394, 0.2100452184677124, 0.3594973683357239, -0.25029268860816956, 0.2866627275943756, 0.39599645137786865, -0.5821136832237244, -0.06558383256196976, -0.13461264967918396, 0.40826523303985596], [-0.4371570944786072, 0.2100517451763153, 0.3594989478588104, -0.2502999007701874, 0.28666165471076965, 0.39600273966789246, -0.582115113735199, -0.06558265537023544, -0.13461171090602875, 0.4082638621330261], [-0.43715429306030273, 0.21004989743232727, 0.35949867963790894, -0.2502962648868561, 0.2866602838039398, 0.3959999680519104, -0.5821166038513184, -0.06558085978031158, -0.13461089134216309, 0.4082670211791992], [-0.43715226650238037, 0.21004362404346466, 0.35949769616127014, -0.25029051303863525, 0.28666186332702637, 0.3959954082965851, -0.5821148157119751, -0.06558280438184738, -0.13461214303970337, 0.4082673192024231], [-0.4371517300605774, 0.21004080772399902, 0.3594966530799866, -0.2502882182598114, 0.28666505217552185, 0.39599311351776123, -0.5821122527122498, -0.0655849352478981, -0.1346140205860138, 0.4082658886909485], [-0.4371494948863983, 0.21003767848014832, 0.3594948947429657, -0.25028449296951294, 0.28666725754737854, 0.3959890902042389, -0.5821103453636169, -0.06558642536401749, -0.13461536169052124, 0.4082656502723694], [-0.4371487498283386, 0.21003593504428864, 0.3594937026500702, -0.25028303265571594, 0.28666871786117554, 0.395986944437027, -0.5821086764335632, -0.0655880942940712, -0.13461633026599884, 0.40826427936553955], [-0.43714845180511475, 0.21003583073616028, 0.3594929873943329, -0.2502829134464264, 0.28666952252388, 0.3959862291812897, -0.5821077227592468, -0.06558862328529358, -0.13461680710315704, 0.4082631766796112], [-0.43714651465415955, 0.21003282070159912, 0.3594917058944702, -0.25027942657470703, 0.28667035698890686, 0.3959827423095703, -0.5821067690849304, -0.06558918207883835, -0.13461729884147644, 0.40826326608657837], [-0.437147855758667, 0.2100338339805603, 0.35949161648750305, -0.25028133392333984, 0.28667086362838745, 0.39598387479782104, -0.5821059942245483, -0.06559006869792938, -0.13461759686470032, 0.40826138854026794], [-0.43714815378189087, 0.21003569662570953, 0.3594916760921478, -0.2502828538417816, 0.28667038679122925, 0.3959849178791046, -0.5821065306663513, -0.06558927148580551, -0.1346171498298645, 0.4082612693309784], [-0.437148779630661, 0.2100372314453125, 0.35949212312698364, -0.25028443336486816, 0.2866691052913666, 0.39598628878593445, -0.5821075439453125, -0.06558854877948761, -0.13461633026599884, 0.4082612991333008], [-0.4371485114097595, 0.21003681421279907, 0.35949230194091797, -0.2502838373184204, 0.2866686284542084, 0.39598608016967773, -0.5821079611778259, -0.06558793783187866, -0.13461604714393616, 0.40826186537742615], [-0.43715012073516846, 0.21003878116607666, 0.3594929873943329, -0.25028640031814575, 0.286668062210083, 0.39598846435546875, -0.5821084976196289, -0.06558775901794434, -0.13461562991142273, 0.40826135873794556], [-0.4371442198753357, 0.21002979576587677, 0.3594907820224762, -0.2502754330635071, 0.28667017817497253, 0.3959793448448181, -0.5821068286895752, -0.06558835506439209, -0.13461709022521973, 0.40826427936553955], [-0.4371480643749237, 0.2100316882133484, 0.3594910502433777, -0.2502802014350891, 0.2866719365119934, 0.3959827125072479, -0.5821048021316528, -0.06559145450592041, -0.13461817800998688, 0.40826013684272766], [-0.4371500313282013, 0.21003904938697815, 0.35949209332466125, -0.2502865791320801, 0.2866705656051636, 0.39598777890205383, -0.5821066498756409, -0.06558909267187119, -0.13461703062057495, 0.40825986862182617], [-0.4371505379676819, 0.21004216372966766, 0.3594931662082672, -0.2502892017364502, 0.28666675090789795, 0.3959902226924896, -0.5821096301078796, -0.06558676809072495, -0.1346147507429123, 0.4082614779472351], [-0.4371507465839386, 0.21004167199134827, 0.359494149684906, -0.25028878450393677, 0.2866654098033905, 0.39599087834358215, -0.5821107029914856, -0.06558561325073242, -0.1346140205860138, 0.4082624912261963], [-0.4371499717235565, 0.2100391685962677, 0.35949403047561646, -0.25028619170188904, 0.2866661846637726, 0.395989328622818, -0.5821103453636169, -0.0655859187245369, -0.13461445271968842, 0.40826335549354553], [-0.4371478855609894, 0.21003462374210358, 0.35949286818504333, -0.2502814829349518, 0.2866683900356293, 0.3959852457046509, -0.5821086764335632, -0.06558743864297867, -0.13461589813232422, 0.40826383233070374], [-0.43715018033981323, 0.2100374549627304, 0.3594931662082672, -0.25028541684150696, 0.28666916489601135, 0.3959880471229553, -0.5821079015731812, -0.06558865308761597, -0.13461638987064362, 0.40826162695884705], [-0.43714869022369385, 0.21003763377666473, 0.35949277877807617, -0.250284343957901, 0.2866687476634979, 0.395986944437027, -0.5821084380149841, -0.065587617456913, -0.13461609184741974, 0.40826281905174255], [-0.43714600801467896, 0.2100321650505066, 0.3594915270805359, -0.25027862191200256, 0.28666967153549194, 0.3959819972515106, -0.5821071863174438, -0.06558876484632492, -0.13461685180664062, 0.4082634747028351], [-0.437150776386261, 0.210037961602211, 0.35949280858039856, -0.2502865195274353, 0.2866697609424591, 0.3959883749485016, -0.5821069478988647, -0.06558948755264282, -0.13461677730083466, 0.4082599878311157], [-0.43714791536331177, 0.21003733575344086, 0.3594922423362732, -0.25028347969055176, 0.2866688370704651, 0.3959859013557434, -0.582108199596405, -0.0655873492360115, -0.13461609184741974, 0.4082627594470978], [-0.4371441602706909, 0.21002845466136932, 0.35949042439460754, -0.25027474761009216, 0.2866705656051636, 0.3959784507751465, -0.5821061134338379, -0.06558956950902939, -0.13461744785308838, 0.4082636833190918], [-0.43714645504951477, 0.21002914011478424, 0.35949012637138367, -0.25027716159820557, 0.2866734266281128, 0.39598003029823303, -0.5821036100387573, -0.06559202075004578, -0.1346191167831421, 0.40826016664505005], [-0.4371480345726013, 0.21003484725952148, 0.3594905734062195, -0.250282347202301, 0.2866724133491516, 0.39598366618156433, -0.5821048021316528, -0.06559078395366669, -0.13461823761463165, 0.4082595705986023], [-0.43714702129364014, 0.21003521978855133, 0.3594907522201538, -0.25028184056282043, 0.2866702079772949, 0.3959832787513733, -0.5821064710617065, -0.06558922678232193, -0.1346169412136078, 0.4082610607147217], [-0.43714281916618347, 0.21002650260925293, 0.3594890832901001, -0.2502725124359131, 0.28667205572128296, 0.3959757685661316, -0.5821045637130737, -0.06559047102928162, -0.13461832702159882, 0.40826258063316345], [-0.43714338541030884, 0.21002358198165894, 0.35948798060417175, -0.25027117133140564, 0.2866755723953247, 0.39597415924072266, -0.5821014642715454, -0.0655936449766159, -0.13462042808532715, 0.40825992822647095], [-0.43714332580566406, 0.21002504229545593, 0.3594872057437897, -0.2502721846103668, 0.28667697310447693, 0.3959740400314331, -0.5821004509925842, -0.0655941441655159, -0.13462112843990326, 0.408258855342865], [-0.4371441900730133, 0.21002784371376038, 0.35948729515075684, -0.2502750754356384, 0.2866756021976471, 0.39597585797309875, -0.5821012854576111, -0.06559374183416367, -0.1346202790737152, 0.40825822949409485], [-0.43714621663093567, 0.21003220975399017, 0.3594886362552643, -0.25027963519096375, 0.286673367023468, 0.3959798812866211, -0.5821030139923096, -0.06559202075004578, -0.1346188485622406, 0.4082578122615814], [-0.43714532256126404, 0.210031658411026, 0.35948890447616577, -0.2502783238887787, 0.2866719663143158, 0.3959794044494629, -0.5821043848991394, -0.06559053808450699, -0.13461793959140778, 0.4082595705986023], [-0.43714815378189087, 0.21003469824790955, 0.3594903349876404, -0.25028255581855774, 0.28667083382606506, 0.3959834575653076, -0.5821053385734558, -0.06559023261070251, -0.1346171796321869, 0.40825870633125305], [-0.43714720010757446, 0.21003465354442596, 0.35949060320854187, -0.25028151273727417, 0.2866702973842621, 0.39598309993743896, -0.582106351852417, -0.06558888405561447, -0.13461683690547943, 0.4082604944705963], [-0.43714913725852966, 0.21003681421279907, 0.35949164628982544, -0.2502845823764801, 0.2866692543029785, 0.3959859609603882, -0.5821071863174438, -0.06558885425329208, -0.1346162110567093, 0.4082601070404053], [-0.43715256452560425, 0.21004383265972137, 0.35949379205703735, -0.2502918243408203, 0.2866669297218323, 0.3959926664829254, -0.5821095705032349, -0.06558675318956375, -0.13461469113826752, 0.40825989842414856], [-0.43715354800224304, 0.21004772186279297, 0.35949552059173584, -0.2502949833869934, 0.2866634726524353, 0.39599618315696716, -0.5821128487586975, -0.06558389216661453, -0.13461259007453918, 0.40826213359832764], [-0.4371592104434967, 0.21005681157112122, 0.3594991862773895, -0.2503054141998291, 0.2866591215133667, 0.3960062563419342, -0.5821167230606079, -0.06558123975992203, -0.1346098929643631, 0.40826189517974854], [-0.4371604323387146, 0.21006172895431519, 0.35950177907943726, -0.2503090798854828, 0.286655068397522, 0.3960111141204834, -0.5821210145950317, -0.06557700783014297, -0.13460734486579895, 0.4082653820514679], [-0.43716076016426086, 0.21006137132644653, 0.35950344800949097, -0.2503087818622589, 0.2866528332233429, 0.39601239562034607, -0.5821231603622437, -0.06557571142911911, -0.13460618257522583, 0.40826794505119324], [-0.4371595084667206, 0.21005775034427643, 0.3595036566257477, -0.25030502676963806, 0.286653995513916, 0.3960103392601013, -0.5821226239204407, -0.06557609140872955, -0.13460706174373627, 0.40826964378356934], [-0.4371551275253296, 0.2100488245487213, 0.35950151085853577, -0.25029540061950684, 0.28665778040885925, 0.39600226283073425, -0.5821196436882019, -0.06557873636484146, -0.13460958003997803, 0.40827107429504395], [-0.4371521472930908, 0.2100411057472229, 0.3594987690448761, -0.250288188457489, 0.2866629958152771, 0.3959951400756836, -0.5821148753166199, -0.06558317691087723, -0.13461299240589142, 0.40826958417892456], [-0.4371469020843506, 0.21003195643424988, 0.3594948351383209, -0.25027820467948914, 0.28666871786117554, 0.39598503708839417, -0.5821096301078796, -0.06558725237846375, -0.1346166580915451, 0.4082685112953186], [-0.43714794516563416, 0.2100321650505066, 0.35949307680130005, -0.25027990341186523, 0.2866716682910919, 0.395984411239624, -0.5821062326431274, -0.06559070199728012, -0.13461841642856598, 0.4082639813423157], [-0.4371465742588043, 0.21003295481204987, 0.3594916760921478, -0.25027957558631897, 0.28667211532592773, 0.3959828019142151, -0.5821055769920349, -0.06559038907289505, -0.13461852073669434, 0.40826302766799927], [-0.4371456801891327, 0.2100314199924469, 0.35949066281318665, -0.250278115272522, 0.2866717576980591, 0.3959808349609375, -0.5821051597595215, -0.0655907616019249, -0.13461829721927643, 0.4082622528076172], [-0.4371502697467804, 0.2100384533405304, 0.3594922423362732, -0.2502865791320801, 0.28667017817497253, 0.39598777890205383, -0.5821062922477722, -0.06558986753225327, -0.13461709022521973, 0.40825945138931274], [-0.43714892864227295, 0.21003952622413635, 0.3594925105571747, -0.2502859830856323, 0.28666791319847107, 0.3959876596927643, -0.5821086764335632, -0.06558706611394882, -0.13461554050445557, 0.4082619249820709], [-0.43714818358421326, 0.21003614366054535, 0.3594924509525299, -0.2502830922603607, 0.2866676449775696, 0.3959857225418091, -0.5821086168289185, -0.06558754295110703, -0.13461551070213318, 0.40826255083084106], [-0.4371476173400879, 0.21003358066082, 0.3594919741153717, -0.2502807080745697, 0.28666970133781433, 0.39598390460014343, -0.5821071267127991, -0.06558859348297119, -0.13461674749851227, 0.4082622528076172], [-0.43714889883995056, 0.21003566682338715, 0.3594920337200165, -0.2502833306789398, 0.28667014837265015, 0.3959856927394867, -0.5821068286895752, -0.06558923423290253, -0.1346169114112854, 0.40826117992401123], [-0.43714913725852966, 0.21003782749176025, 0.35949239134788513, -0.25028499960899353, 0.28666913509368896, 0.395986944437027, -0.5821077823638916, -0.06558826565742493, -0.13461627066135406, 0.4082615077495575], [-0.43715140223503113, 0.21004199981689453, 0.3594937324523926, -0.2502896189689636, 0.28666698932647705, 0.39599108695983887, -0.5821095108985901, -0.06558704376220703, -0.134614959359169, 0.40826115012168884], [-0.4371509850025177, 0.21004238724708557, 0.3594943583011627, -0.25028932094573975, 0.28666555881500244, 0.3959914743900299, -0.5821109414100647, -0.06558539718389511, -0.13461405038833618, 0.40826281905174255], [-0.43715399503707886, 0.21004638075828552, 0.35949596762657166, -0.25029435753822327, 0.28666388988494873, 0.3959962725639343, -0.5821124315261841, -0.06558474153280258, -0.13461299240589142, 0.4082622528076172], [-0.43715521693229675, 0.2100500762462616, 0.3594975173473358, -0.25029754638671875, 0.28666189312934875, 0.3959997594356537, -0.5821146368980408, -0.06558247655630112, -0.13461174070835114, 0.40826353430747986], [-0.4371543228626251, 0.21004877984523773, 0.35949796438217163, -0.2502957880496979, 0.28666067123413086, 0.395999014377594, -0.5821157693862915, -0.06558163464069366, -0.1346110701560974, 0.40826553106307983], [-0.43715596199035645, 0.21004991233348846, 0.35949891805648804, -0.25029775500297546, 0.2866606116294861, 0.39600124955177307, -0.5821160078048706, -0.06558184325695038, -0.1346110701560974, 0.4082651436328888], [-0.4371558427810669, 0.21005068719387054, 0.3594992458820343, -0.25029802322387695, 0.28666040301322937, 0.39600175619125366, -0.5821165442466736, -0.06558112800121307, -0.13461092114448547, 0.4082661271095276], [-0.43715620040893555, 0.21005122363567352, 0.35949966311454773, -0.2502986490726471, 0.28665977716445923, 0.39600250124931335, -0.5821170210838318, -0.0655810758471489, -0.1346106231212616, 0.40826642513275146], [-0.43715617060661316, 0.2100512832403183, 0.3594999313354492, -0.2502985894680023, 0.28665971755981445, 0.3960026800632477, -0.5821171998977661, -0.06558080017566681, -0.1346106231212616, 0.4082668423652649], [-0.4371565282344818, 0.2100517451763153, 0.3595001697540283, -0.2502991855144501, 0.28665944933891296, 0.3960033357143402, -0.5821174383163452, -0.06558080017566681, -0.13461050391197205, 0.40826690196990967], [-0.43715640902519226, 0.2100517600774765, 0.35950028896331787, -0.25029903650283813, 0.2866593897342682, 0.3960033357143402, -0.5821175575256348, -0.06558054685592651, -0.13461050391197205, 0.40826719999313354], [-0.4371575117111206, 0.2100534588098526, 0.35950082540512085, -0.2503010630607605, 0.28665879368782043, 0.39600512385368347, -0.582118034362793, -0.06558036804199219, -0.1346101015806198, 0.40826690196990967], [-0.43716102838516235, 0.21006019413471222, 0.35950273275375366, -0.2503083348274231, 0.2866564989089966, 0.3960115611553192, -0.5821201801300049, -0.06557869166135788, -0.13460858166217804, 0.4082662761211395], [-0.43715980648994446, 0.2100604623556137, 0.3595033884048462, -0.2503072917461395, 0.2866542637348175, 0.39601147174835205, -0.5821223855018616, -0.06557633727788925, -0.1346072256565094, 0.40826907753944397], [-0.43715900182724, 0.21005700528621674, 0.35950344800949097, -0.2503041923046112, 0.2866544723510742, 0.39600953459739685, -0.5821220874786377, -0.0655769482254982, -0.13460755348205566, 0.40826988220214844], [-0.4371613562107086, 0.21005958318710327, 0.3595042824745178, -0.25030773878097534, 0.28665509819984436, 0.3960127532482147, -0.5821218490600586, -0.06557740271091461, -0.13460785150527954, 0.40826860070228577], [-0.4371623992919922, 0.21006353199481964, 0.35950517654418945, -0.25031110644340515, 0.2866535782814026, 0.3960156738758087, -0.5821234583854675, -0.06557589769363403, -0.13460682332515717, 0.4082692861557007], [-0.43715909123420715, 0.21005874872207642, 0.35950443148612976, -0.25030517578125, 0.28665339946746826, 0.39601102471351624, -0.5821235775947571, -0.06557561457157135, -0.13460691273212433, 0.40827178955078125], [-0.4371623396873474, 0.21006110310554504, 0.3595053553581238, -0.2503094971179962, 0.2866538465023041, 0.3960148096084595, -0.5821229815483093, -0.06557688117027283, -0.1346072256565094, 0.40826934576034546], [-0.43716490268707275, 0.21006813645362854, 0.3595069348812103, -0.2503160834312439, 0.2866518795490265, 0.3960205316543579, -0.582125186920166, -0.06557457149028778, -0.1346057653427124, 0.40826940536499023], [-0.43716660141944885, 0.2100730985403061, 0.35950878262519836, -0.2503207325935364, 0.28664788603782654, 0.3960250914096832, -0.5821287035942078, -0.06557183712720871, -0.13460330665111542, 0.4082709848880768], [-0.4371686279773712, 0.21007655560970306, 0.35951098799705505, -0.2503243684768677, 0.28664490580558777, 0.39602938294410706, -0.5821314454078674, -0.06556951254606247, -0.13460154831409454, 0.40827223658561707], [-0.4371679127216339, 0.2100752890110016, 0.35951170325279236, -0.25032252073287964, 0.2866440415382385, 0.3960290551185608, -0.5821326375007629, -0.06556835025548935, -0.13460105657577515, 0.40827450156211853], [-0.43716686964035034, 0.21007178723812103, 0.35951149463653564, -0.2503191828727722, 0.28664517402648926, 0.3960267901420593, -0.5821318030357361, -0.06556929647922516, -0.1346019059419632, 0.40827545523643494], [-0.4371695816516876, 0.21007543802261353, 0.35951244831085205, -0.2503238618373871, 0.2866455018520355, 0.3960307240486145, -0.5821317434310913, -0.0655699074268341, -0.13460208475589752, 0.40827393531799316], [-0.43716326355934143, 0.21006743609905243, 0.35951024293899536, -0.25031325221061707, 0.28664714097976685, 0.3960217535495758, -0.5821306109428406, -0.06556989997625351, -0.13460324704647064, 0.4082775115966797], [-0.4371652603149414, 0.21006610989570618, 0.35950982570648193, -0.2503143846988678, 0.2866491675376892, 0.39602211117744446, -0.5821280479431152, -0.06557338684797287, -0.13460466265678406, 0.4082741141319275], [-0.43716588616371155, 0.21006953716278076, 0.35950982570648193, -0.25031715631484985, 0.28664979338645935, 0.3960239589214325, -0.5821279287338257, -0.06557260453701019, -0.13460485637187958, 0.408273309469223], [-0.43716567754745483, 0.2100706845521927, 0.35950979590415955, -0.25031790137290955, 0.28664806485176086, 0.39602425694465637, -0.582129180431366, -0.0655718594789505, -0.13460375368595123, 0.4082739055156708], [-0.43716272711753845, 0.21006521582603455, 0.359508752822876, -0.25031185150146484, 0.28664901852607727, 0.3960193395614624, -0.58212810754776, -0.06557224690914154, -0.1346045434474945, 0.4082750380039215], [-0.43716466426849365, 0.21006585657596588, 0.359508752822876, -0.2503139078617096, 0.28665032982826233, 0.3960208594799042, -0.5821268558502197, -0.06557393074035645, -0.13460524380207062, 0.40827271342277527], [-0.4371630549430847, 0.21006503701210022, 0.3595079779624939, -0.25031206011772156, 0.2866511046886444, 0.3960188925266266, -0.5821265578269958, -0.06557351350784302, -0.13460561633110046, 0.40827345848083496], [-0.43716365098953247, 0.21006539463996887, 0.35950785875320435, -0.25031301379203796, 0.28665080666542053, 0.3960193395614624, -0.5821263790130615, -0.06557419896125793, -0.13460548222064972, 0.4082725942134857], [-0.4371614456176758, 0.21006223559379578, 0.3595069348812103, -0.2503090500831604, 0.2866518199443817, 0.3960159718990326, -0.5821255445480347, -0.06557433307170868, -0.13460615277290344, 0.40827327966690063], [-0.43716028332710266, 0.21005862951278687, 0.3595057725906372, -0.25030580163002014, 0.2866535484790802, 0.3960128128528595, -0.5821237564086914, -0.06557609140872955, -0.1346072554588318, 0.40827253460884094], [-0.4371582865715027, 0.21005471050739288, 0.3595041334629059, -0.25030168890953064, 0.2866561710834503, 0.39600870013237, -0.5821214914321899, -0.06557776033878326, -0.13460886478424072, 0.4082719385623932], [-0.43715593218803406, 0.2100500762462616, 0.35950207710266113, -0.2502969801425934, 0.28665876388549805, 0.39600372314453125, -0.5821189284324646, -0.06557999551296234, -0.13461050391197205, 0.40827104449272156], [-0.4371541142463684, 0.21004632115364075, 0.3595001697540283, -0.2502932846546173, 0.2866614758968353, 0.3959995210170746, -0.5821161866188049, -0.06558216363191605, -0.13461220264434814, 0.4082695543766022], [-0.4371541738510132, 0.21004627645015717, 0.3594990372657776, -0.2502936124801636, 0.28666290640830994, 0.3959987461566925, -0.5821146368980408, -0.06558353453874588, -0.13461296260356903, 0.4082675576210022], [-0.4371524155139923, 0.21004438400268555, 0.3594977557659149, -0.2502910792827606, 0.28666365146636963, 0.3959958553314209, -0.5821137428283691, -0.06558382511138916, -0.13461337983608246, 0.4082673192024231], [-0.4371560513973236, 0.21004964411258698, 0.3594987392425537, -0.25029775500297546, 0.2866624593734741, 0.39600101113319397, -0.5821143984794617, -0.06558377295732498, -0.13461250066757202, 0.408264696598053], [-0.43715015053749084, 0.21004250645637512, 0.35949674248695374, -0.2502879798412323, 0.2866632044315338, 0.39599287509918213, -0.5821139812469482, -0.0655827596783638, -0.13461299240589142, 0.40826815366744995], [-0.43714991211891174, 0.21003709733486176, 0.3594954013824463, -0.2502845227718353, 0.28666600584983826, 0.39598944783210754, -0.5821108818054199, -0.06558652222156525, -0.13461481034755707, 0.4082657992839813], [-0.43715229630470276, 0.21004147827625275, 0.35949552059173584, -0.2502893805503845, 0.28666749596595764, 0.3959929049015045, -0.5821099281311035, -0.06558696180582047, -0.13461551070213318, 0.4082631468772888], [-0.43715280294418335, 0.21004556119441986, 0.3594958782196045, -0.25029271841049194, 0.286665141582489, 0.395995169878006, -0.5821119546890259, -0.0655851885676384, -0.13461393117904663, 0.4082637131214142], [-0.4371508061885834, 0.21004249155521393, 0.3594955503940582, -0.25028905272483826, 0.286664217710495, 0.39599233865737915, -0.5821123719215393, -0.06558447331190109, -0.1346135288476944, 0.4082651734352112], [-0.437154084444046, 0.21004556119441986, 0.35949671268463135, -0.2502936124801636, 0.2866639792919159, 0.3959965407848358, -0.5821125507354736, -0.06558489054441452, -0.1346132606267929, 0.4082632064819336], [-0.4371558725833893, 0.21005092561244965, 0.3594980537891388, -0.25029852986335754, 0.28666210174560547, 0.3960009217262268, -0.5821147561073303, -0.06558264791965485, -0.13461191952228546, 0.40826383233070374], [-0.43715623021125793, 0.2100527435541153, 0.35949915647506714, -0.25029996037483215, 0.28665944933891296, 0.39600270986557007, -0.5821170210838318, -0.06558087468147278, -0.1346103698015213, 0.40826550126075745], [-0.4371570944786072, 0.2100534588098526, 0.3595002293586731, -0.25030091404914856, 0.286658376455307, 0.39600443840026855, -0.5821179747581482, -0.06558002531528473, -0.13460977375507355, 0.40826615691185], [-0.43715840578079224, 0.21005535125732422, 0.3595012128353119, -0.2503030300140381, 0.2866576313972473, 0.39600685238838196, -0.5821189880371094, -0.06557931005954742, -0.134609192609787, 0.4082666039466858], [-0.43715599179267883, 0.21005181968212128, 0.3595007359981537, -0.25029855966567993, 0.2866581082344055, 0.39600345492362976, -0.582118809223175, -0.06557922065258026, -0.13460959494113922, 0.40826863050460815], [-0.43715763092041016, 0.21005254983901978, 0.3595011234283447, -0.25030046701431274, 0.28665876388549805, 0.3960050642490387, -0.5821180939674377, -0.06558049470186234, -0.13461007177829742, 0.40826722979545593], [-0.4371587336063385, 0.21005600690841675, 0.35950177907943726, -0.25030362606048584, 0.2866581380367279, 0.3960077464580536, -0.5821190476417542, -0.06557944416999817, -0.13460959494113922, 0.40826722979545593], [-0.4371621012687683, 0.21006286144256592, 0.35950377583503723, -0.2503109276294708, 0.28665485978126526, 0.39601415395736694, -0.5821218490600586, -0.06557748466730118, -0.13460755348205566, 0.4082670211791992], [-0.4371601939201355, 0.21006152033805847, 0.3595042824745178, -0.25030815601348877, 0.2866530120372772, 0.3960127830505371, -0.5821236371994019, -0.0655752643942833, -0.1346065253019333, 0.40827006101608276], [-0.4371582567691803, 0.2100553959608078, 0.3595035672187805, -0.25030237436294556, 0.2866544723510742, 0.3960084617137909, -0.5821222066879272, -0.06557684391736984, -0.13460761308670044, 0.4082708954811096], [-0.43716204166412354, 0.21005979180335999, 0.3595045506954193, -0.25030839443206787, 0.2866555154323578, 0.396013468503952, -0.5821216106414795, -0.06557793915271759, -0.13460813462734222, 0.4082682132720947], [-0.437160462141037, 0.2100609540939331, 0.35950443148612976, -0.2503078281879425, 0.286654531955719, 0.3960128426551819, -0.5821228623390198, -0.06557617336511612, -0.1346074640750885, 0.40827029943466187], [-0.4371570944786072, 0.2100541889667511, 0.3595031201839447, -0.25030073523521423, 0.2866553068161011, 0.3960069417953491, -0.5821216702461243, -0.06557740271091461, -0.1346082240343094, 0.4082716405391693], [-0.4371578097343445, 0.21005234122276306, 0.35950255393981934, -0.2503000795841217, 0.2866579294204712, 0.39600619673728943, -0.5821192264556885, -0.06557967513799667, -0.1346098631620407, 0.40826934576034546], [-0.4371606409549713, 0.21005845069885254, 0.35950320959091187, -0.25030654668807983, 0.2866574823856354, 0.39601102471351624, -0.5821199417114258, -0.06557917594909668, -0.13460931181907654, 0.40826770663261414], [-0.43715736269950867, 0.2100559026002884, 0.3595024645328522, -0.2503022253513336, 0.28665634989738464, 0.3960072994232178, -0.5821208357810974, -0.06557779014110565, -0.13460873067378998, 0.40827032923698425], [-0.43715858459472656, 0.21005506813526154, 0.3595026731491089, -0.2503027617931366, 0.28665658831596375, 0.3960078954696655, -0.5821201205253601, -0.06557904928922653, -0.13460898399353027, 0.40826883912086487], [-0.43715888261795044, 0.21005623042583466, 0.35950276255607605, -0.25030359625816345, 0.2866571247577667, 0.3960086703300476, -0.5821200609207153, -0.06557860970497131, -0.1346091628074646, 0.4082687199115753], [-0.43715766072273254, 0.21005459129810333, 0.35950222611427307, -0.25030165910720825, 0.28665706515312195, 0.3960067927837372, -0.5821200609207153, -0.06557874381542206, -0.1346091628074646, 0.408269464969635], [-0.43715474009513855, 0.21004870533943176, 0.3595007658004761, -0.25029534101486206, 0.2866591215133667, 0.396001398563385, -0.5821180939674377, -0.06558021157979965, -0.13461056351661682, 0.4082699120044708], [-0.43715900182724, 0.21005387604236603, 0.35950157046318054, -0.2503024637699127, 0.2866595685482025, 0.39600685238838196, -0.5821175575256348, -0.06558135896921158, -0.13461065292358398, 0.40826642513275146], [-0.4371599555015564, 0.2100597321987152, 0.35950255393981934, -0.25030702352523804, 0.28665706515312195, 0.3960106372833252, -0.5821201205253601, -0.06557845324277878, -0.13460895419120789, 0.40826743841171265], [-0.4371618926525116, 0.2100636065006256, 0.3595043420791626, -0.2503111660480499, 0.2866533100605011, 0.3960146903991699, -0.5821230411529541, -0.06557641178369522, -0.13460670411586761, 0.4082682728767395], [-0.43716374039649963, 0.21006684005260468, 0.35950618982315063, -0.2503144443035126, 0.28665101528167725, 0.3960186541080475, -0.5821253061294556, -0.06557423621416092, -0.134605273604393, 0.4082692563533783], [-0.4371635317802429, 0.21006645262241364, 0.3595069944858551, -0.2503136992454529, 0.2866498827934265, 0.39601901173591614, -0.5821266770362854, -0.0655730739235878, -0.1346045732498169, 0.4082711935043335], [-0.43716299533843994, 0.2100643515586853, 0.35950714349746704, -0.2503117620944977, 0.28665047883987427, 0.3960179090499878, -0.5821263790130615, -0.065573550760746, -0.1346050351858139, 0.40827205777168274], [-0.4371612071990967, 0.21006061136722565, 0.3595062494277954, -0.25030776858329773, 0.2866523563861847, 0.39601457118988037, -0.5821249485015869, -0.06557479500770569, -0.13460633158683777, 0.4082725942134857], [-0.43715837597846985, 0.21005485951900482, 0.35950443148612976, -0.2503017485141754, 0.2866552472114563, 0.39600899815559387, -0.5821223258972168, -0.06557709723711014, -0.13460825383663177, 0.40827253460884094], [-0.43715816736221313, 0.21005336940288544, 0.35950323939323425, -0.25030091404914856, 0.2866577208042145, 0.39600735902786255, -0.5821199417114258, -0.06557933241128922, -0.13460980355739594, 0.4082705080509186], [-0.43715900182724, 0.21005606651306152, 0.35950297117233276, -0.25030356645584106, 0.2866578698158264, 0.39600878953933716, -0.5821197032928467, -0.06557943671941757, -0.13460977375507355, 0.40826910734176636], [-0.4371585547924042, 0.21005678176879883, 0.3595028221607208, -0.25030383467674255, 0.28665676712989807, 0.39600870013237, -0.582120418548584, -0.06557857990264893, -0.13460907340049744, 0.40826940536499023], [-0.43716108798980713, 0.21006059646606445, 0.35950401425361633, -0.25030845403671265, 0.28665509819984436, 0.3960127830505371, -0.5821216106414795, -0.06557776033878326, -0.1346079707145691, 0.4082683324813843], [-0.4371633231639862, 0.2100657969713211, 0.35950562357902527, -0.25031349062919617, 0.2866525650024414, 0.39601758122444153, -0.5821241140365601, -0.06557537615299225, -0.1346062421798706, 0.4082688093185425], [-0.43715935945510864, 0.21005988121032715, 0.35950490832328796, -0.2503061294555664, 0.28665223717689514, 0.3960120677947998, -0.5821245312690735, -0.06557460874319077, -0.1346062421798706, 0.4082722067832947], [-0.4371587932109833, 0.21005471050739288, 0.3595040738582611, -0.2503022253513336, 0.2866550385951996, 0.3960089385509491, -0.5821219086647034, -0.06557746231555939, -0.13460807502269745, 0.40827104449272156], [-0.4371594786643982, 0.21005578339099884, 0.3595035672187805, -0.2503035366535187, 0.2866572141647339, 0.3960094749927521, -0.582120418548584, -0.0655786544084549, -0.13460925221443176, 0.4082695543766022], [-0.4371596872806549, 0.2100580930709839, 0.35950344800949097, -0.2503054141998291, 0.2866564393043518, 0.3960104286670685, -0.582120954990387, -0.06557825952768326, -0.13460877537727356, 0.40826940536499023], [-0.4371607303619385, 0.2100604921579361, 0.35950416326522827, -0.25030800700187683, 0.2866548001766205, 0.3960126042366028, -0.5821220874786377, -0.06557729095220566, -0.13460785150527954, 0.4082692563533783], [-0.43716150522232056, 0.2100621908903122, 0.35950496792793274, -0.25030961632728577, 0.28665345907211304, 0.39601439237594604, -0.5821232795715332, -0.06557608395814896, -0.13460694253444672, 0.40826964378356934], [-0.4371599555015564, 0.21005944907665253, 0.3595046401023865, -0.2503063678741455, 0.2866535186767578, 0.3960120677947998, -0.582123339176178, -0.06557588279247284, -0.13460703194141388, 0.40827101469039917], [-0.43716228008270264, 0.21006165444850922, 0.35950538516044617, -0.25030970573425293, 0.28665363788604736, 0.3960149884223938, -0.5821232199668884, -0.0655764639377594, -0.13460706174373627, 0.40826958417892456], [-0.4371590316295624, 0.2100580632686615, 0.3595043420791626, -0.25030452013015747, 0.28665444254875183, 0.39601069688796997, -0.5821228623390198, -0.06557610630989075, -0.13460758328437805, 0.4082716703414917], [-0.43715494871139526, 0.21004869043827057, 0.3595019578933716, -0.2502951920032501, 0.2866576910018921, 0.3960024118423462, -0.5821196436882019, -0.06557918339967728, -0.13460980355739594, 0.4082719683647156], [-0.4371577501296997, 0.21005083620548248, 0.3595016300678253, -0.25029921531677246, 0.28666040301322937, 0.3960048258304596, -0.5821171998977661, -0.0655817836523056, -0.13461138308048248, 0.4082678556442261], [-0.43715745210647583, 0.21005423367023468, 0.35950133204460144, -0.250301331281662, 0.2866596579551697, 0.3960058093070984, -0.582118034362793, -0.06558039784431458, -0.13461071252822876, 0.4082680642604828], [-0.43715715408325195, 0.21005430817604065, 0.35950136184692383, -0.2503013610839844, 0.2866578996181488, 0.39600566029548645, -0.5821189284324646, -0.06557983160018921, -0.13460971415042877, 0.40826839208602905], [-0.43715736269950867, 0.21005374193191528, 0.35950157046318054, -0.2503010332584381, 0.2866578698158264, 0.3960057497024536, -0.5821189284324646, -0.06557954102754593, -0.13460971415042877, 0.40826818346977234], [-0.43715721368789673, 0.21005314588546753, 0.35950136184692383, -0.2503003776073456, 0.28665822744369507, 0.396005243062973, -0.5821187496185303, -0.06557969748973846, -0.13460980355739594, 0.4082682132720947], [-0.43715694546699524, 0.21005243062973022, 0.3595011234283447, -0.25029975175857544, 0.28665870428085327, 0.3960045874118805, -0.5821183323860168, -0.06558006256818771, -0.1346101015806198, 0.4082682132720947], [-0.4371587932109833, 0.2100556641817093, 0.35950183868408203, -0.2503034472465515, 0.28665804862976074, 0.3960076570510864, -0.5821189284324646, -0.06557980179786682, -0.134609654545784, 0.4082672595977783], [-0.43715837597846985, 0.21005643904209137, 0.3595021367073059, -0.2503035366535187, 0.28665691614151, 0.3960078954696655, -0.5821200013160706, -0.06557852029800415, -0.13460895419120789, 0.40826839208602905], [-0.4371564984321594, 0.21005253493785858, 0.35950151085853577, -0.2502993643283844, 0.2866573929786682, 0.39600464701652527, -0.5821194648742676, -0.06557905673980713, -0.1346093714237213, 0.40826934576034546], [-0.437156617641449, 0.21005094051361084, 0.3595011234283447, -0.2502983808517456, 0.2866591215133667, 0.39600375294685364, -0.5821179747581482, -0.06558047235012054, -0.13461044430732727, 0.4082683026790619], [-0.43715420365333557, 0.2100473791360855, 0.35949966311454773, -0.2502940893173218, 0.2866609990596771, 0.3959996700286865, -0.5821164846420288, -0.06558146327733994, -0.13461165130138397, 0.4082687199115753], [-0.43715474009513855, 0.2100471556186676, 0.35949909687042236, -0.2502947151660919, 0.2866620719432831, 0.3959994614124298, -0.5821151733398438, -0.0655830129981041, -0.1346123218536377, 0.4082670211791992], [-0.43715402483940125, 0.2100471407175064, 0.359498530626297, -0.25029417872428894, 0.2866624891757965, 0.3959985673427582, -0.5821147561073303, -0.06558288633823395, -0.1346125304698944, 0.4082667827606201], [-0.43715381622314453, 0.2100467085838318, 0.35949814319610596, -0.2502938508987427, 0.28666239976882935, 0.3959980010986328, -0.5821146368980408, -0.06558319926261902, -0.13461244106292725, 0.4082663953304291], [-0.43715670704841614, 0.21005146205425262, 0.3594993054866791, -0.2502994239330292, 0.2866612672805786, 0.3960026502609253, -0.5821155309677124, -0.06558248400688171, -0.13461162149906158, 0.4082649350166321], [-0.4371563792228699, 0.21005311608314514, 0.35949984192848206, -0.2503001093864441, 0.2866594195365906, 0.3960035443305969, -0.5821174383163452, -0.06558050215244293, -0.13461041450500488, 0.408266544342041], [-0.4371560215950012, 0.2100515365600586, 0.35950011014938354, -0.25029870867729187, 0.28665876388549805, 0.396002858877182, -0.5821177363395691, -0.06558037549257278, -0.1346101313829422, 0.4082672595977783], [-0.43715566396713257, 0.2100498229265213, 0.3594999313354492, -0.25029709935188293, 0.2866598069667816, 0.39600181579589844, -0.5821170806884766, -0.06558090448379517, -0.13461077213287354, 0.4082673192024231], [-0.4371543228626251, 0.21004718542099, 0.3594990372657776, -0.2502942383289337, 0.2866612672805786, 0.39599916338920593, -0.5821159482002258, -0.06558188796043396, -0.13461165130138397, 0.4082675576210022], [-0.43715715408325195, 0.2100515216588974, 0.35949987173080444, -0.2502996623516083, 0.28666093945503235, 0.3960033357143402, -0.5821161270141602, -0.06558224558830261, -0.13461141288280487, 0.4082655906677246], [-0.43716081976890564, 0.21006056666374207, 0.3595021069049835, -0.250308632850647, 0.2866573631763458, 0.3960111439228058, -0.5821194052696228, -0.06557922810316086, -0.13460907340049744, 0.4082654118537903], [-0.437164843082428, 0.21006980538368225, 0.35950541496276855, -0.2503178119659424, 0.28665146231651306, 0.3960200250148773, -0.582124650478363, -0.06557492166757584, -0.13460533320903778, 0.40826675295829773], [-0.4371713101863861, 0.21008190512657166, 0.3595103919506073, -0.2503306269645691, 0.2866446375846863, 0.39603281021118164, -0.5821309685707092, -0.06556972861289978, -0.13460102677345276, 0.4082680344581604], [-0.4371695816516876, 0.21008123457431793, 0.35951241850852966, -0.2503279447555542, 0.2866407334804535, 0.39603304862976074, -0.5821352005004883, -0.06556545943021774, -0.1345987170934677, 0.40827396512031555], [-0.4371635913848877, 0.2100668102502823, 0.3595106601715088, -0.25031304359436035, 0.2866440713405609, 0.3960219919681549, -0.5821325182914734, -0.06556815654039383, -0.13460120558738708, 0.4082777202129364], [-0.43715986609458923, 0.2100546956062317, 0.35950741171836853, -0.2503020167350769, 0.28665244579315186, 0.39601218700408936, -0.5821255445480347, -0.06557454913854599, -0.13460661470890045, 0.4082760214805603], [-0.43716076016426086, 0.21005578339099884, 0.3595055937767029, -0.25030404329299927, 0.2866571247577667, 0.3960118293762207, -0.5821214914321899, -0.06557858735322952, -0.1346094310283661, 0.4082719385623932], [-0.43715617060661316, 0.21005231142044067, 0.3595028817653656, -0.25029852986335754, 0.28665855526924133, 0.39600539207458496, -0.582119882106781, -0.06557921320199966, -0.13461041450500488, 0.40827256441116333], [-0.4371502697467804, 0.2100404053926468, 0.35949909687042236, -0.2502862513065338, 0.2866622507572174, 0.39599382877349854, -0.5821154117584229, -0.06558282673358917, -0.1346130222082138, 0.40827205777168274], [-0.43715012073516846, 0.21003633737564087, 0.3594965934753418, -0.250283807516098, 0.2866673469543457, 0.3959902226924896, -0.5821104645729065, -0.06558716297149658, -0.13461598753929138, 0.40826740860939026], [-0.43714967370033264, 0.21003751456737518, 0.3594948351383209, -0.2502845823764801, 0.28666919469833374, 0.3959891200065613, -0.5821087956428528, -0.06558812409639359, -0.13461683690547943, 0.4082651436328888], [-0.43715140223503113, 0.21004188060760498, 0.3594949245452881, -0.25028926134109497, 0.28666743636131287, 0.3959919810295105, -0.5821096897125244, -0.06558746844530106, -0.13461560010910034, 0.40826335549354553], [-0.4371546804904938, 0.21004906296730042, 0.35949671268463135, -0.2502967119216919, 0.2866639196872711, 0.39599835872650146, -0.5821125507354736, -0.06558472663164139, -0.1346132606267929, 0.40826258063316345], [-0.43715521693229675, 0.2100515514612198, 0.3594980537891388, -0.25029850006103516, 0.2866606116294861, 0.39600077271461487, -0.5821155309677124, -0.06558176875114441, -0.1346110999584198, 0.40826451778411865], [-0.43715783953666687, 0.21005463600158691, 0.3594999611377716, -0.2503024637699127, 0.286658376455307, 0.39600518345832825, -0.5821176767349243, -0.06558038294315338, -0.134609654545784, 0.4082648456096649], [-0.4371609091758728, 0.2100605070590973, 0.35950231552124023, -0.2503085434436798, 0.28665590286254883, 0.3960113525390625, -0.582120418548584, -0.06557800620794296, -0.13460801541805267, 0.408265620470047], [-0.43715792894363403, 0.21005679666996002, 0.35950231552124023, -0.2503032982349396, 0.2866549491882324, 0.3960079252719879, -0.5821216702461243, -0.0655767098069191, -0.13460758328437805, 0.40826937556266785], [-0.437153697013855, 0.21004623174667358, 0.35950034856796265, -0.2502927780151367, 0.2866585850715637, 0.39599937200546265, -0.5821183323860168, -0.06557978689670563, -0.1346101611852646, 0.4082704484462738], [-0.4371584951877594, 0.21005123853683472, 0.3595009744167328, -0.25030025839805603, 0.28666093945503235, 0.39600497484207153, -0.582116425037384, -0.06558234244585037, -0.13461147248744965, 0.4082659184932709], [-0.4371577799320221, 0.21005560457706451, 0.3595011234283447, -0.2503025531768799, 0.286659300327301, 0.39600643515586853, -0.5821183323860168, -0.06557987630367279, -0.13461031019687653, 0.40826746821403503], [-0.43715617060661316, 0.21005290746688843, 0.359500914812088, -0.2502996623516083, 0.2866577208042145, 0.3960041105747223, -0.5821189880371094, -0.06557959318161011, -0.13460959494113922, 0.4082687497138977], [-0.43715888261795044, 0.21005532145500183, 0.3595019578933716, -0.2503032982349396, 0.2866577208042145, 0.3960076570510864, -0.5821189284324646, -0.06557974219322205, -0.13460955023765564, 0.4082670211791992], [-0.43715786933898926, 0.21005533635616302, 0.3595018684864044, -0.2503023147583008, 0.2866573929786682, 0.3960070013999939, -0.5821197032928467, -0.06557862460613251, -0.134609192609787, 0.4082685112953186], [-0.43715590238571167, 0.21005107462406158, 0.3595010042190552, -0.25029799342155457, 0.2866581082344055, 0.3960033059120178, -0.582118809223175, -0.06557963043451309, -0.13460983335971832, 0.4082692861557007], [-0.43715471029281616, 0.2100474238395691, 0.3594999611377716, -0.25029459595680237, 0.2866605818271637, 0.3960002362728119, -0.5821166038513184, -0.06558153033256531, -0.13461141288280487, 0.4082684814929962], [-0.43715575337409973, 0.21004897356033325, 0.35949963331222534, -0.2502966523170471, 0.28666165471076965, 0.39600130915641785, -0.5821157097816467, -0.06558246910572052, -0.13461197912693024, 0.4082668721675873], [-0.4371598958969116, 0.2100578248500824, 0.3595014810562134, -0.2503061294555664, 0.2866588830947876, 0.3960089385509491, -0.5821180939674377, -0.06558067351579666, -0.1346101015806198, 0.4082653224468231], [-0.4371592402458191, 0.21006004512310028, 0.35950252413749695, -0.25030678510665894, 0.2866554260253906, 0.39601024985313416, -0.5821211934089661, -0.06557732820510864, -0.1346079409122467, 0.4082680344581604], [-0.4371609687805176, 0.2100609689950943, 0.35950395464897156, -0.250308632850647, 0.2866535484790802, 0.3960127830505371, -0.5821226239204407, -0.06557657569646835, -0.13460688292980194, 0.40826836228370667], [-0.43716034293174744, 0.21005970239639282, 0.35950425267219543, -0.2503069043159485, 0.2866538465023041, 0.3960121273994446, -0.5821229219436646, -0.06557597219944, -0.13460706174373627, 0.4082697629928589], [-0.43715816736221313, 0.21005502343177795, 0.35950329899787903, -0.2503020167350769, 0.286655455827713, 0.39600807428359985, -0.5821216702461243, -0.06557731330394745, -0.1346081644296646, 0.40827077627182007], [-0.4371618330478668, 0.21005979180335999, 0.3595043420791626, -0.2503083646297455, 0.2866557240486145, 0.39601317048072815, -0.5821214318275452, -0.06557819247245789, -0.13460828363895416, 0.40826815366744995], [-0.4371621608734131, 0.21006400883197784, 0.35950517654418945, -0.25031134486198425, 0.28665366768836975, 0.3960157632827759, -0.5821235775947571, -0.06557570397853851, -0.13460691273212433, 0.408269464969635], [-0.4371626079082489, 0.21006491780281067, 0.3595060408115387, -0.25031229853630066, 0.2866513431072235, 0.39601704478263855, -0.5821252465248108, -0.06557461619377136, -0.13460558652877808, 0.4082705080509186], [-0.4371613562107086, 0.21006199717521667, 0.3595059812068939, -0.250309020280838, 0.2866517901420593, 0.3960150480270386, -0.5821250081062317, -0.06557447463274002, -0.13460594415664673, 0.4082716405391693], [-0.4371626079082489, 0.2100624442100525, 0.3595062494277954, -0.2503103017807007, 0.28665247559547424, 0.3960161805152893, -0.5821245312690735, -0.06557539850473404, -0.13460636138916016, 0.40827080607414246], [-0.4371680021286011, 0.21007287502288818, 0.35950878262519836, -0.2503216862678528, 0.2866498529911041, 0.3960258364677429, -0.5821270942687988, -0.06557349860668182, -0.1346045434474945, 0.4082691967487335], [-0.43716832995414734, 0.21007773280143738, 0.3595106601715088, -0.25032487511634827, 0.2866452634334564, 0.39602944254875183, -0.5821313858032227, -0.06556931138038635, -0.13460169732570648, 0.408272385597229], [-0.43716830015182495, 0.21007634699344635, 0.3595119118690491, -0.25032371282577515, 0.2866431176662445, 0.3960298001766205, -0.5821331143379211, -0.06556814163923264, -0.13460059463977814, 0.40827444195747375], [-0.437172532081604, 0.21008169651031494, 0.3595142364501953, -0.2503303289413452, 0.28664201498031616, 0.3960365056991577, -0.582134485244751, -0.06556734442710876, -0.13459983468055725, 0.4082735478878021], [-0.4371718168258667, 0.2100830376148224, 0.35951513051986694, -0.2503303587436676, 0.2866404354572296, 0.3960372805595398, -0.5821366310119629, -0.06556514650583267, -0.13459880650043488, 0.4082764685153961], [-0.4371701180934906, 0.2100791037082672, 0.3595150113105774, -0.2503263056278229, 0.2866404950618744, 0.39603447914123535, -0.5821364521980286, -0.06556576490402222, -0.13459914922714233, 0.40827804803848267], [-0.4371729791164398, 0.2100820392370224, 0.35951608419418335, -0.25033053755760193, 0.28664103150367737, 0.39603832364082336, -0.5821361541748047, -0.06556643545627594, -0.1345994770526886, 0.40827637910842896], [-0.4371720254421234, 0.2100829780101776, 0.3595161736011505, -0.25033026933670044, 0.2866404056549072, 0.3960381746292114, -0.5821371078491211, -0.06556513905525208, -0.1345990151166916, 0.4082779586315155], [-0.43716543912887573, 0.21007117629051208, 0.35951343178749084, -0.2503170967102051, 0.2866429388523102, 0.3960270881652832, -0.5821346044540405, -0.06556710600852966, -0.1346009075641632, 0.408280611038208], [-0.4371669292449951, 0.2100684493780136, 0.3595123291015625, -0.2503167986869812, 0.2866472005844116, 0.396026074886322, -0.5821304321289062, -0.06557147204875946, -0.1346036046743393, 0.40827643871307373], [-0.43716609477996826, 0.21006979048252106, 0.3595110774040222, -0.2503170967102051, 0.2866489887237549, 0.396025151014328, -0.5821292996406555, -0.06557177752256393, -0.13460448384284973, 0.4082756042480469], [-0.43715566396713257, 0.21005307137966156, 0.3595059812068939, -0.2502978444099426, 0.28665295243263245, 0.396007776260376, -0.5821251273155212, -0.06557462364435196, -0.13460731506347656, 0.4082787334918976], [-0.43716198205947876, 0.21005642414093018, 0.35950586199760437, -0.2503059208393097, 0.2866566479206085, 0.3960130512714386, -0.5821207761764526, -0.06557995080947876, -0.13460952043533325, 0.40827029943466187], [-0.4371611475944519, 0.21006202697753906, 0.3595052659511566, -0.2503088712692261, 0.28665608167648315, 0.3960144519805908, -0.5821220874786377, -0.06557697802782059, -0.1346086710691452, 0.40827080607414246], [-0.4371606409549713, 0.21006180346012115, 0.35950517654418945, -0.25030872225761414, 0.286653071641922, 0.39601385593414307, -0.5821236968040466, -0.06557633727788925, -0.13460691273212433, 0.40827134251594543], [-0.4371597468852997, 0.21005879342556, 0.35950490832328796, -0.25030574202537537, 0.2866538166999817, 0.3960118591785431, -0.5821229219436646, -0.06557629257440567, -0.1346074342727661, 0.40827128291130066], [-0.43715816736221313, 0.21005462110042572, 0.3595035970211029, -0.25030162930488586, 0.2866559326648712, 0.3960081934928894, -0.5821212530136108, -0.06557776778936386, -0.13460861146450043, 0.4082711935043335], [-0.43715623021125793, 0.21005040407180786, 0.3595019578933716, -0.2502974271774292, 0.2866586744785309, 0.39600393176078796, -0.5821188688278198, -0.0655798688530922, -0.13461031019687653, 0.4082705080509186], [-0.4371545612812042, 0.2100471556186676, 0.3595002293586731, -0.2502942383289337, 0.2866611182689667, 0.39600029587745667, -0.5821164846420288, -0.06558185070753098, -0.13461188971996307, 0.40826934576034546], [-0.437156617641449, 0.21005062758922577, 0.3595002293586731, -0.25029847025871277, 0.2866613566875458, 0.39600297808647156, -0.5821160078048706, -0.0655825287103653, -0.13461191952228546, 0.4082668125629425], [-0.4371536374092102, 0.21004801988601685, 0.35949909687042236, -0.25029435753822327, 0.2866612672805786, 0.39599910378456116, -0.5821160078048706, -0.06558166444301605, -0.13461185991764069, 0.4082683324813843], [-0.437151700258255, 0.21004240214824677, 0.3594975769519806, -0.2502891719341278, 0.2866629958152771, 0.3959944546222687, -0.5821139216423035, -0.06558376550674438, -0.1346130222082138, 0.4082677364349365], [-0.43715184926986694, 0.21004118025302887, 0.3594966530799866, -0.25028860569000244, 0.2866654694080353, 0.39599335193634033, -0.5821118354797363, -0.06558547914028168, -0.13461443781852722, 0.40826573967933655], [-0.43715035915374756, 0.21003976464271545, 0.3594953417778015, -0.25028660893440247, 0.2866666316986084, 0.39599084854125977, -0.5821107625961304, -0.06558608263731003, -0.13461504876613617, 0.40826547145843506], [-0.43715110421180725, 0.21004071831703186, 0.3594951331615448, -0.25028809905052185, 0.2866666316986084, 0.3959914743900299, -0.5821104049682617, -0.06558671593666077, -0.13461504876613617, 0.40826404094696045], [-0.4371523857116699, 0.21004384756088257, 0.3594956696033478, -0.25029128789901733, 0.2866656482219696, 0.39599400758743286, -0.5821112394332886, -0.06558571755886078, -0.13461431860923767, 0.4082634150981903], [-0.4371524751186371, 0.2100449502468109, 0.35949602723121643, -0.25029200315475464, 0.2866641581058502, 0.3959948420524597, -0.5821124911308289, -0.06558447331190109, -0.13461337983608246, 0.4082641303539276], [-0.4371526539325714, 0.21004460752010345, 0.3594963848590851, -0.2502918243408203, 0.28666362166404724, 0.39599502086639404, -0.5821129083633423, -0.06558416038751602, -0.1346130222082138, 0.40826448798179626], [-0.4371539354324341, 0.2100464254617691, 0.3594970405101776, -0.2502939701080322, 0.2866632640361786, 0.3959970772266388, -0.5821134448051453, -0.06558385491371155, -0.13461273908615112, 0.4082641899585724], [-0.4371534585952759, 0.2100464552640915, 0.35949718952178955, -0.2502935826778412, 0.2866627871990204, 0.39599692821502686, -0.582114040851593, -0.06558318436145782, -0.13461247086524963, 0.4082651138305664], [-0.43715426325798035, 0.21004718542099, 0.35949763655662537, -0.25029465556144714, 0.28666236996650696, 0.3959980607032776, -0.5821143388748169, -0.06558319926261902, -0.13461223244667053, 0.40826499462127686], [-0.43715354800224304, 0.2100464254617691, 0.3594975769519806, -0.250293493270874, 0.2866624891757965, 0.3959972560405731, -0.5821143984794617, -0.06558292359113693, -0.13461235165596008, 0.4082656800746918], [-0.4371516704559326, 0.2100425511598587, 0.3594966530799866, -0.2502894401550293, 0.286663681268692, 0.39599379897117615, -0.5821133255958557, -0.06558388471603394, -0.13461314141750336, 0.40826621651649475], [-0.43715381622314453, 0.21004490554332733, 0.3594970405101776, -0.2502928376197815, 0.28666427731513977, 0.39599642157554626, -0.582112729549408, -0.06558483093976974, -0.13461346924304962, 0.4082642197608948], [-0.43715357780456543, 0.2100467085838318, 0.35949715971946716, -0.2502937912940979, 0.2866635322570801, 0.3959970772266388, -0.5821135640144348, -0.06558358669281006, -0.13461293280124664, 0.40826496481895447], [-0.4371505379676819, 0.21004149317741394, 0.35949599742889404, -0.25028786063194275, 0.2866639792919159, 0.39599210023880005, -0.5821129083633423, -0.06558419018983841, -0.13461337983608246, 0.4082663953304291], [-0.4371490776538849, 0.2100362479686737, 0.3594946265220642, -0.25028330087661743, 0.28666695952415466, 0.39598795771598816, -0.5821101069450378, -0.0655866265296936, -0.13461533188819885, 0.4082653224468231], [-0.437152236700058, 0.2100411057472229, 0.35949498414993286, -0.25028929114341736, 0.28666773438453674, 0.3959922790527344, -0.5821095705032349, -0.06558751314878464, -0.13461557030677795, 0.4082624316215515], [-0.43715131282806396, 0.2100432813167572, 0.35949498414993286, -0.25029000639915466, 0.28666603565216064, 0.39599257707595825, -0.582111120223999, -0.06558556854724884, -0.1346144825220108, 0.4082637429237366], [-0.43715253472328186, 0.21004456281661987, 0.3594958186149597, -0.25029197335243225, 0.286664217710495, 0.3959944546222687, -0.582112193107605, -0.06558498740196228, -0.13461343944072723, 0.40826356410980225], [-0.4371565282344818, 0.21005140244960785, 0.359497994184494, -0.25029951333999634, 0.2866619825363159, 0.3960014879703522, -0.5821143984794617, -0.06558308750391006, -0.13461185991764069, 0.4082627296447754], [-0.4371562898159027, 0.21005336940288544, 0.35949909687042236, -0.2503003776073456, 0.2866593301296234, 0.39600303769111633, -0.5821171998977661, -0.06558036804199219, -0.1346101313829422, 0.4082653522491455], [-0.43715590238571167, 0.21005134284496307, 0.35949966311454773, -0.25029855966567993, 0.2866586446762085, 0.3960023522377014, -0.5821177363395691, -0.06558019667863846, -0.1346098929643631, 0.40826666355133057], [-0.43715205788612366, 0.21004340052604675, 0.3594980239868164, -0.2502898871898651, 0.28666162490844727, 0.39599543809890747, -0.5821154117584229, -0.06558185070753098, -0.13461188971996307, 0.4082682132720947], [-0.4371521472930908, 0.21004071831703186, 0.3594968616962433, -0.2502883970737457, 0.2866649329662323, 0.39599350094795227, -0.5821124315261841, -0.06558508425951004, -0.1346139907836914, 0.4082660377025604], [-0.4371558129787445, 0.21004848182201385, 0.3594978451728821, -0.25029680132865906, 0.28666436672210693, 0.3959997296333313, -0.5821130275726318, -0.0655847042798996, -0.13461346924304962, 0.408263623714447], [-0.4371545910835266, 0.210050567984581, 0.35949820280075073, -0.2502971887588501, 0.28666144609451294, 0.39600008726119995, -0.5821154713630676, -0.06558205932378769, -0.13461168110370636, 0.4082658290863037], [-0.43715283274650574, 0.2100459486246109, 0.3594978451728821, -0.25029265880584717, 0.28666117787361145, 0.39599674940109253, -0.5821152329444885, -0.06558233499526978, -0.13461174070835114, 0.4082668721675873], [-0.4371548891067505, 0.21004699170589447, 0.3594982922077179, -0.25029492378234863, 0.28666239976882935, 0.39599889516830444, -0.5821143984794617, -0.06558329612016678, -0.13461235165596008, 0.408265084028244], [-0.4371558129787445, 0.21005034446716309, 0.3594987690448761, -0.25029781460762024, 0.28666168451309204, 0.39600124955177307, -0.5821154117584229, -0.06558224558830261, -0.13461171090602875, 0.4082653522491455], [-0.437153697013855, 0.21004776656627655, 0.35949835181236267, -0.2502944767475128, 0.2866611182689667, 0.3959985077381134, -0.5821157693862915, -0.06558183580636978, -0.13461150228977203, 0.4082670211791992], [-0.4371534585952759, 0.21004535257816315, 0.359497994184494, -0.2502926290035248, 0.2866622805595398, 0.3959970772266388, -0.582114577293396, -0.06558307260274887, -0.1346122920513153, 0.4082663655281067], [-0.4371550977230072, 0.2100478857755661, 0.3594983220100403, -0.2502956688404083, 0.2866626977920532, 0.3959994316101074, -0.5821143984794617, -0.0655832588672638, -0.13461241126060486, 0.4082651734352112], [-0.4371550381183624, 0.2100495994091034, 0.3594985604286194, -0.25029677152633667, 0.2866615653038025, 0.3960002660751343, -0.5821154713630676, -0.0655822604894638, -0.13461174070835114, 0.4082658588886261], [-0.43715527653694153, 0.21004988253116608, 0.3594989776611328, -0.2502971887588501, 0.2866606116294861, 0.39600083231925964, -0.5821160674095154, -0.06558182090520859, -0.13461123406887054, 0.40826615691185], [-0.4371545910835266, 0.21004843711853027, 0.35949885845184326, -0.250295490026474, 0.28666090965270996, 0.3959997594356537, -0.582115888595581, -0.06558174639940262, -0.13461141288280487, 0.40826666355133057], [-0.4371541142463684, 0.21004682779312134, 0.3594984710216522, -0.2502940893173218, 0.2866617739200592, 0.3959985077381134, -0.5821151733398438, -0.0655825138092041, -0.13461194932460785, 0.4082665741443634], [-0.4371572434902191, 0.21005195379257202, 0.35949960350990295, -0.2503001093864441, 0.2866609990596771, 0.39600345492362976, -0.582115888595581, -0.06558219343423843, -0.13461138308048248, 0.40826499462127686], [-0.4371595084667206, 0.2100585252046585, 0.35950136184692383, -0.2503061890602112, 0.28665775060653687, 0.3960089385509491, -0.5821189880371094, -0.06557939946651459, -0.13460925221443176, 0.4082656800746918], [-0.4371626675128937, 0.21006496250629425, 0.35950401425361633, -0.2503128945827484, 0.28665339946746826, 0.39601555466651917, -0.582122802734375, -0.06557635217905045, -0.1346065253019333, 0.40826672315597534], [-0.43716391921043396, 0.2100680023431778, 0.35950616002082825, -0.25031548738479614, 0.28665024042129517, 0.39601925015449524, -0.5821259617805481, -0.06557349860668182, -0.13460463285446167, 0.4082690477371216], [-0.4371640086174011, 0.2100672721862793, 0.3595072627067566, -0.2503146827220917, 0.28664907813072205, 0.396019846200943, -0.5821272730827332, -0.06557253748178482, -0.13460400700569153, 0.40827104449272156], [-0.437166303396225, 0.21006998419761658, 0.359508752822876, -0.25031816959381104, 0.28664854168891907, 0.39602354168891907, -0.58212810754776, -0.06557226926088333, -0.13460369408130646, 0.40827104449272156], [-0.43716752529144287, 0.21007362008094788, 0.3595100939273834, -0.2503213882446289, 0.2866469919681549, 0.3960268795490265, -0.582129955291748, -0.06557068973779678, -0.13460275530815125, 0.4082721769809723], [-0.4371684789657593, 0.21007584035396576, 0.3595114052295685, -0.2503235340118408, 0.28664493560791016, 0.39602935314178467, -0.5821318626403809, -0.06556934863328934, -0.13460157811641693, 0.4082734286785126], [-0.4371669292449951, 0.21007317304611206, 0.35951149463653564, -0.2503202259540558, 0.28664490580558777, 0.3960273265838623, -0.5821320414543152, -0.0655689463019371, -0.13460172712802887, 0.4082752466201782], [-0.4371623694896698, 0.21006348729133606, 0.35950931906700134, -0.2503100037574768, 0.28664830327033997, 0.3960188329219818, -0.5821290612220764, -0.06557143479585648, -0.1346040666103363, 0.4082767069339752], [-0.43716269731521606, 0.21006086468696594, 0.3595079779624939, -0.2503088116645813, 0.28665223717689514, 0.3960169553756714, -0.5821254849433899, -0.06557512283325195, -0.1346065253019333, 0.40827372670173645], [-0.4371636211872101, 0.21006447076797485, 0.35950759053230286, -0.2503121793270111, 0.2866530120372772, 0.3960186839103699, -0.5821249485015869, -0.06557535380125046, -0.13460682332515717, 0.4082721471786499], [-0.43716001510620117, 0.21006053686141968, 0.3595060110092163, -0.2503068745136261, 0.28665289282798767, 0.3960135877132416, -0.582124650478363, -0.06557519733905792, -0.13460688292980194, 0.40827369689941406], [-0.43715915083885193, 0.2100563645362854, 0.35950490832328796, -0.25030359625816345, 0.2866547107696533, 0.39601051807403564, -0.5821224451065063, -0.06557729095220566, -0.13460810482501984, 0.4082721471786499], [-0.43715718388557434, 0.2100525051355362, 0.3595031499862671, -0.25029945373535156, 0.2866576015949249, 0.39600637555122375, -0.5821200609207153, -0.0655789002776146, -0.13460974395275116, 0.40827134251594543], [-0.43715688586235046, 0.21005147695541382, 0.3595019578933716, -0.2502988278865814, 0.2866591811180115, 0.3960047960281372, -0.5821183919906616, -0.06558051705360413, -0.13461068272590637, 0.4082697033882141], [-0.4371519684791565, 0.21004393696784973, 0.3594991862773895, -0.25029000639915466, 0.28666186332702637, 0.39599648118019104, -0.5821158289909363, -0.06558206677436829, -0.13461244106292725, 0.4082704186439514], [-0.4371565282344818, 0.21004872024059296, 0.35949957370758057, -0.2502972483634949, 0.28666260838508606, 0.3960016071796417, -0.582114577293396, -0.06558411568403244, -0.13461273908615112, 0.408265620470047], [-0.43715810775756836, 0.21005597710609436, 0.3595006465911865, -0.25030332803726196, 0.2866600751876831, 0.39600637555122375, -0.5821171998977661, -0.06558085978031158, -0.1346108615398407, 0.4082658886909485], [-0.43715545535087585, 0.2100527286529541, 0.35950034856796265, -0.25029900670051575, 0.28665778040885925, 0.3960031569004059, -0.5821187496185303, -0.06557948142290115, -0.13460959494113922, 0.40826860070228577], [-0.4371584951877594, 0.21005429327487946, 0.35950154066085815, -0.25030243396759033, 0.28665781021118164, 0.39600667357444763, -0.582118570804596, -0.0655801072716713, -0.13460959494113922, 0.40826669335365295], [-0.4371575713157654, 0.21005451679229736, 0.3595014810562134, -0.2503015697002411, 0.2866579592227936, 0.39600616693496704, -0.5821191668510437, -0.06557900458574295, -0.13460949063301086, 0.4082680642604828], [-0.4371545910835266, 0.21004877984523773, 0.3595001697540283, -0.25029540061950684, 0.2866590917110443, 0.3960009217262268, -0.5821179747581482, -0.06558024883270264, -0.1346103847026825, 0.40826931595802307], [-0.4371519386768341, 0.2100418657064438, 0.3594982326030731, -0.2502887547016144, 0.28666287660598755, 0.3959948420524597, -0.5821145176887512, -0.06558317691087723, -0.13461290299892426, 0.408268541097641], [-0.4371527135372162, 0.21004217863082886, 0.35949718952178955, -0.2502898573875427, 0.2866654098033905, 0.39599472284317017, -0.582112193107605, -0.0655854344367981, -0.13461434841156006, 0.4082658886909485], [-0.43715158104896545, 0.21004246175289154, 0.35949623584747314, -0.25028935074806213, 0.28666573762893677, 0.39599335193634033, -0.5821118354797363, -0.06558538228273392, -0.1346144825220108, 0.4082656502723694], [-0.4371505081653595, 0.2100406438112259, 0.3594954311847687, -0.2502874732017517, 0.28666579723358154, 0.3959912955760956, -0.5821112394332886, -0.06558586657047272, -0.13461460173130035, 0.40826529264450073], [-0.43715205788612366, 0.21004241704940796, 0.3594956696033478, -0.25029000639915466, 0.28666582703590393, 0.3959932327270508, -0.5821110010147095, -0.06558604538440704, -0.1346145123243332, 0.4082637429237366], [-0.43714991211891174, 0.21004003286361694, 0.35949480533599854, -0.2502865493297577, 0.2866661250591278, 0.39599019289016724, -0.5821108818054199, -0.065585657954216, -0.13461463153362274, 0.4082648754119873], [-0.43714821338653564, 0.21003542840480804, 0.35949352383613586, -0.25028225779533386, 0.2866678237915039, 0.39598625898361206, -0.5821091532707214, -0.06558740139007568, -0.13461577892303467, 0.40826451778411865], [-0.43714815378189087, 0.21003423631191254, 0.3594927191734314, -0.25028154253959656, 0.28666988015174866, 0.39598509669303894, -0.5821073055267334, -0.06558892875909805, -0.13461700081825256, 0.4082629680633545], [-0.4371480941772461, 0.2100350260734558, 0.35949212312698364, -0.2502821981906891, 0.28667038679122925, 0.3959850072860718, -0.58210688829422, -0.06558925658464432, -0.1346171796321869, 0.4082622528076172], [-0.43714866042137146, 0.2100367248058319, 0.3594922721385956, -0.25028395652770996, 0.28666952252388, 0.3959861397743225, -0.5821073055267334, -0.06558883935213089, -0.1346166878938675, 0.4082617163658142], [-0.4371491074562073, 0.21003788709640503, 0.35949262976646423, -0.25028499960899353, 0.2866685390472412, 0.3959871530532837, -0.5821080207824707, -0.06558802723884583, -0.13461604714393616, 0.408261775970459], [-0.4371488392353058, 0.2100372612476349, 0.3594926595687866, -0.2502842843532562, 0.2866682708263397, 0.39598676562309265, -0.5821083188056946, -0.06558771431446075, -0.13461580872535706, 0.4082622528076172], [-0.43714597821235657, 0.21003179252147675, 0.35949134826660156, -0.2502783238887787, 0.28666993975639343, 0.39598169922828674, -0.5821069478988647, -0.06558870524168015, -0.1346169412136078, 0.40826329588890076], [-0.4371447265148163, 0.21002750098705292, 0.35948991775512695, -0.25027456879615784, 0.28667280077934265, 0.39597803354263306, -0.5821042656898499, -0.06559127569198608, -0.13461878895759583, 0.4082620441913605], [-0.43714746832847595, 0.2100321501493454, 0.3594902455806732, -0.25028011202812195, 0.286673367023468, 0.39598190784454346, -0.5821038484573364, -0.06559191644191742, -0.13461896777153015, 0.40825939178466797], [-0.43714842200279236, 0.21003706753253937, 0.3594909906387329, -0.25028425455093384, 0.28667083382606506, 0.39598512649536133, -0.5821060538291931, -0.06558961421251297, -0.13461726903915405, 0.40825989842414856], [-0.43714988231658936, 0.2100401520729065, 0.35949239134788513, -0.2502874433994293, 0.28666776418685913, 0.3959883749485016, -0.5821083784103394, -0.06558772921562195, -0.13461542129516602, 0.4082605242729187], [-0.4371543526649475, 0.21004760265350342, 0.35949522256851196, -0.2502957880496979, 0.2866644859313965, 0.39599645137786865, -0.5821114778518677, -0.06558524817228317, -0.1346132606267929, 0.40826016664505005], [-0.4371568560600281, 0.21005398035049438, 0.3594978451728821, -0.25030162930488586, 0.28666040301322937, 0.39600270986557007, -0.582115650177002, -0.06558146327733994, -0.13461056351661682, 0.4082624018192291], [-0.43715912103652954, 0.21005812287330627, 0.3595004677772522, -0.25030583143234253, 0.2866566777229309, 0.39600780606269836, -0.5821192264556885, -0.06557881087064743, -0.13460837304592133, 0.40826448798179626], [-0.43716177344322205, 0.21006254851818085, 0.3595031499862671, -0.2503105103969574, 0.28665396571159363, 0.3960132598876953, -0.5821221470832825, -0.06557651609182358, -0.13460670411586761, 0.4082660675048828], [-0.43715980648994446, 0.2100597769021988, 0.3595035672187805, -0.2503066956996918, 0.2866532802581787, 0.3960113227367401, -0.5821232795715332, -0.06557540595531464, -0.13460643589496613, 0.40826940536499023], [-0.4371573030948639, 0.2100529670715332, 0.3595026135444641, -0.25030001997947693, 0.2866557538509369, 0.39600619673728943, -0.5821211934089661, -0.06557753682136536, -0.13460825383663177, 0.4082704782485962], [-0.4371526837348938, 0.2100433111190796, 0.3594997525215149, -0.2502898871898651, 0.2866610288619995, 0.39599713683128357, -0.5821167230606079, -0.06558127701282501, -0.13461174070835114, 0.40827059745788574], [-0.43715155124664307, 0.21003937721252441, 0.35949742794036865, -0.2502868175506592, 0.28666549921035767, 0.39599302411079407, -0.5821124315261841, -0.06558536738157272, -0.13461457192897797, 0.4082677662372589], [-0.4371564984321594, 0.2100493609905243, 0.35949844121932983, -0.2502979338169098, 0.2866646647453308, 0.3960009813308716, -0.5821129679679871, -0.06558523327112198, -0.1346137523651123, 0.4082637429237366], [-0.4371550381183624, 0.21005231142044067, 0.3594987690448761, -0.25029873847961426, 0.28666093945503235, 0.39600157737731934, -0.5821161270141602, -0.06558152288198471, -0.13461144268512726, 0.4082662761211395], [-0.4371558427810669, 0.21005158126354218, 0.35949960350990295, -0.2502988576889038, 0.28665891289711, 0.3960023522377014, -0.5821171998977661, -0.06558099389076233, -0.1346103399991989, 0.40826645493507385], [-0.4371546804904938, 0.21004855632781982, 0.3594993054866791, -0.2502955198287964, 0.28666019439697266, 0.3960002064704895, -0.5821165442466736, -0.06558103114366531, -0.13461101055145264, 0.40826722979545593], [-0.437154084444046, 0.2100462168455124, 0.3594985604286194, -0.2502935528755188, 0.2866617739200592, 0.39599835872650146, -0.5821152925491333, -0.06558249890804291, -0.13461197912693024, 0.40826696157455444], [-0.43715766072273254, 0.21005231142044067, 0.35949981212615967, -0.25030067563056946, 0.2866610884666443, 0.3960040211677551, -0.582115888595581, -0.06558232009410858, -0.13461144268512726, 0.4082649052143097], [-0.43715736269950867, 0.21005523204803467, 0.359500527381897, -0.25030219554901123, 0.2866586744785309, 0.3960055708885193, -0.5821182727813721, -0.06557980179786682, -0.1346098929643631, 0.40826672315597534], [-0.437154084444046, 0.2100488692522049, 0.35949966311454773, -0.2502953112125397, 0.28665879368782043, 0.3960002064704895, -0.5821177959442139, -0.06558014452457428, -0.13461025059223175, 0.4082688093185425], [-0.43715623021125793, 0.21004903316497803, 0.3594999313354492, -0.2502971291542053, 0.2866606116294861, 0.3960018455982208, -0.5821162462234497, -0.0655820444226265, -0.13461129367351532, 0.40826642513275146], [-0.4371561110019684, 0.21005091071128845, 0.3594997525215149, -0.2502982020378113, 0.2866608500480652, 0.39600247144699097, -0.5821165442466736, -0.0655813068151474, -0.13461129367351532, 0.4082667827606201], [-0.4371587336063385, 0.21005591750144958, 0.35950109362602234, -0.25030386447906494, 0.28665846586227417, 0.39600709080696106, -0.5821182727813721, -0.06558042764663696, -0.1346098631620407, 0.4082660973072052], [-0.4371565282344818, 0.210053950548172, 0.35950106382369995, -0.25030046701431274, 0.2866576015949249, 0.39600488543510437, -0.5821192264556885, -0.06557881832122803, -0.1346094012260437, 0.40826839208602905], [-0.4371517598628998, 0.210043266415596, 0.3594987392425537, -0.2502894401550293, 0.2866606116294861, 0.39599570631980896, -0.5821163654327393, -0.06558136641979218, -0.13461147248744965, 0.40826982259750366], [-0.4371521472930908, 0.2100401222705841, 0.3594973087310791, -0.25028789043426514, 0.2866651117801666, 0.39599359035491943, -0.5821123719215393, -0.06558527052402496, -0.1346142292022705, 0.4082665741443634], [-0.43715134263038635, 0.21004074811935425, 0.35949596762657166, -0.2502879500389099, 0.2866668701171875, 0.3959923982620239, -0.5821110010147095, -0.06558609008789062, -0.13461516797542572, 0.40826553106307983], [-0.4371502995491028, 0.2100401222705841, 0.3594951033592224, -0.2502870261669159, 0.2866666615009308, 0.3959906995296478, -0.5821106433868408, -0.06558647006750107, -0.13461513817310333, 0.40826502442359924], [-0.437152624130249, 0.21004366874694824, 0.35949575901031494, -0.2502913773059845, 0.28666573762893677, 0.3959941267967224, -0.5821110606193542, -0.06558607518672943, -0.13461445271968842, 0.40826326608657837], [-0.437153697013855, 0.2100471556186676, 0.3594965934753418, -0.25029444694519043, 0.2866637706756592, 0.39599692821502686, -0.5821129679679871, -0.06558413058519363, -0.1346130520105362, 0.4082637131214142], [-0.43715497851371765, 0.2100495994091034, 0.3594977557659149, -0.25029700994491577, 0.2866615653038025, 0.39599961042404175, -0.5821148157119751, -0.06558268517255783, -0.13461168110370636, 0.4082643389701843], [-0.4371543228626251, 0.21004849672317505, 0.35949817299842834, -0.2502955198287964, 0.2866610288619995, 0.3959990441799164, -0.5821155309677124, -0.06558185815811157, -0.1346113532781601, 0.40826570987701416], [-0.4371565580368042, 0.2100510150194168, 0.3594991862773895, -0.25029894709587097, 0.28666046261787415, 0.39600229263305664, -0.5821161270141602, -0.0655818060040474, -0.13461098074913025, 0.408265084028244], [-0.43715837597846985, 0.21005557477474213, 0.35950058698654175, -0.2503032684326172, 0.28665870428085327, 0.39600637555122375, -0.582118034362793, -0.0655800923705101, -0.13460983335971832, 0.408265620470047], [-0.43715620040893555, 0.2100529670715332, 0.35950055718421936, -0.2502996623516083, 0.28665778040885925, 0.3960039019584656, -0.5821189284324646, -0.06557914614677429, -0.13460946083068848, 0.4082680642604828], [-0.4371584355831146, 0.21005429327487946, 0.3595014810562134, -0.2503023147583008, 0.28665781021118164, 0.3960065245628357, -0.582118809223175, -0.0655798688530922, -0.13460949063301086, 0.4082668721675873], [-0.43715715408325195, 0.21005365252494812, 0.35950127243995667, -0.25030067563056946, 0.2866581678390503, 0.3960053622722626, -0.5821189880371094, -0.06557914614677429, -0.1346096247434616, 0.4082682132720947], [-0.4371582567691803, 0.21005463600158691, 0.3595016896724701, -0.25030237436294556, 0.2866577208042145, 0.3960067629814148, -0.5821191668510437, -0.06557959318161011, -0.1346094310283661, 0.40826770663261414], [-0.4371594190597534, 0.2100575566291809, 0.35950252413749695, -0.25030517578125, 0.28665685653686523, 0.3960093557834625, -0.5821200609207153, -0.0655786395072937, -0.13460886478424072, 0.40826770663261414], [-0.4371586740016937, 0.2100571244955063, 0.3595026731491089, -0.25030413269996643, 0.2866559326648712, 0.39600881934165955, -0.5821208953857422, -0.06557779759168625, -0.13460831344127655, 0.4082689881324768], [-0.43715962767601013, 0.21005751192569733, 0.3595031797885895, -0.25030517578125, 0.2866556644439697, 0.39600998163223267, -0.5821211338043213, -0.065577931702137, -0.13460825383663177, 0.4082687199115753], [-0.43716031312942505, 0.21005915105342865, 0.35950377583503723, -0.2503066956996918, 0.28665533661842346, 0.39601147174835205, -0.5821216702461243, -0.06557735800743103, -0.13460798561573029, 0.40826889872550964], [-0.4371569752693176, 0.210053950548172, 0.35950252413749695, -0.25030043721199036, 0.2866562604904175, 0.39600634574890137, -0.5821208953857422, -0.06557773053646088, -0.1346086710691452, 0.40827080607414246], [-0.4371595084667206, 0.21005555987358093, 0.35950297117233276, -0.25030380487442017, 0.2866571247577667, 0.3960089087486267, -0.582119882106781, -0.0655793845653534, -0.13460922241210938, 0.4082683324813843], [-0.43716269731521606, 0.21006351709365845, 0.3595045804977417, -0.25031158328056335, 0.28665512800216675, 0.396015465259552, -0.5821220874786377, -0.06557720899581909, -0.13460776209831238, 0.40826764702796936], [-0.4371611475944519, 0.21006353199481964, 0.3595050275325775, -0.25031018257141113, 0.2866523265838623, 0.3960147500038147, -0.5821244716644287, -0.06557486951351166, -0.13460612297058105, 0.40827053785324097], [-0.4371616244316101, 0.21006187796592712, 0.35950562357902527, -0.2503093183040619, 0.2866520583629608, 0.3960148096084595, -0.5821244120597839, -0.0655752643942833, -0.13460612297058105, 0.40827062726020813], [-0.43715938925743103, 0.21005749702453613, 0.3595046401023865, -0.2503044009208679, 0.28665414452552795, 0.39601096510887146, -0.5821230411529541, -0.06557606160640717, -0.1346074342727661, 0.4082716405391693], [-0.4371595084667206, 0.21005620062351227, 0.35950401425361633, -0.25030386447906494, 0.28665584325790405, 0.39600998163223267, -0.5821214914321899, -0.06557795405387878, -0.13460849225521088, 0.4082704186439514], [-0.43716031312942505, 0.2100585550069809, 0.3595040738582611, -0.2503061890602112, 0.28665608167648315, 0.39601147174835205, -0.5821213722229004, -0.06557793915271759, -0.13460858166217804, 0.4082695543766022], [-0.4371579885482788, 0.21005593240261078, 0.3595031499862671, -0.25030261278152466, 0.28665605187416077, 0.3960082232952118, -0.5821211934089661, -0.06557775288820267, -0.13460861146450043, 0.4082707464694977], [-0.4371548295021057, 0.21004873514175415, 0.35950133204460144, -0.25029534101486206, 0.28665855526924133, 0.3960018754005432, -0.5821186900138855, -0.06557991355657578, -0.1346103399991989, 0.40827077627182007], [-0.43715494871139526, 0.21004676818847656, 0.35950008034706116, -0.2502943277359009, 0.2866615951061249, 0.3960002660751343, -0.582115888595581, -0.06558240950107574, -0.13461211323738098, 0.40826836228370667], [-0.43715256452560425, 0.21004408597946167, 0.35949820280075073, -0.25029081106185913, 0.2866635024547577, 0.3959962725639343, -0.5821142196655273, -0.06558346003293991, -0.1346132606267929, 0.4082680940628052], [-0.43715667724609375, 0.21005043387413025, 0.3594992160797119, -0.25029876828193665, 0.28666236996650696, 0.3960021138191223, -0.5821146368980408, -0.065583735704422, -0.13461244106292725, 0.4082648754119873], [-0.43715906143188477, 0.21005821228027344, 0.3595010042190552, -0.250305712223053, 0.2866586148738861, 0.3960082232952118, -0.5821181535720825, -0.06558005511760712, -0.1346098929643631, 0.40826547145843506], [-0.4371591806411743, 0.2100594937801361, 0.35950231552124023, -0.25030648708343506, 0.2866550385951996, 0.3960098326206207, -0.5821211338043213, -0.06557752192020416, -0.13460776209831238, 0.40826767683029175], [-0.43716076016426086, 0.21006029844284058, 0.35950374603271484, -0.25030797719955444, 0.28665393590927124, 0.39601224660873413, -0.5821223258972168, -0.06557666510343552, -0.13460709154605865, 0.40826818346977234], [-0.43716245889663696, 0.21006307005882263, 0.3595049977302551, -0.25031089782714844, 0.2866531312465668, 0.3960154354572296, -0.5821235775947571, -0.06557564437389374, -0.1346064656972885, 0.4082687795162201], [-0.43716198205947876, 0.2100631296634674, 0.3595055341720581, -0.2503104507923126, 0.28665226697921753, 0.3960155248641968, -0.582124650478363, -0.06557483226060867, -0.1346060335636139, 0.4082704186439514], [-0.43716150522232056, 0.21006163954734802, 0.35950565338134766, -0.2503089904785156, 0.28665244579315186, 0.3960146903991699, -0.5821244716644287, -0.06557515263557434, -0.134606271982193, 0.40827104449272156], [-0.4371613562107086, 0.21006077527999878, 0.3595055937767029, -0.2503082752227783, 0.2866532802581787, 0.3960142135620117, -0.582123875617981, -0.06557570397853851, -0.13460682332515717, 0.4082709848880768], [-0.43715986609458923, 0.21005840599536896, 0.3595047891139984, -0.25030553340911865, 0.28665438294410706, 0.39601171016693115, -0.5821229815483093, -0.06557641923427582, -0.13460755348205566, 0.4082714021205902], [-0.43715932965278625, 0.21005678176879883, 0.3595041334629059, -0.25030410289764404, 0.2866555154323578, 0.3960101902484894, -0.5821217894554138, -0.06557762622833252, -0.13460834324359894, 0.4082707464694977], [-0.4371604919433594, 0.2100587785243988, 0.35950422286987305, -0.25030648708343506, 0.2866556942462921, 0.3960118293762207, -0.5821216106414795, -0.06557779759168625, -0.1346084028482437, 0.40826961398124695], [-0.4371650516986847, 0.21006786823272705, 0.35950639843940735, -0.2503162920475006, 0.2866525650024414, 0.3960200846195221, -0.5821242928504944, -0.06557575613260269, -0.13460630178451538, 0.4082682728767395], [-0.4371645152568817, 0.21007025241851807, 0.35950767993927, -0.25031715631484985, 0.28664901852607727, 0.39602169394493103, -0.582127571105957, -0.06557225435972214, -0.1346040964126587, 0.40827128291130066], [-0.43715837597846985, 0.2100578397512436, 0.35950568318367004, -0.2503036856651306, 0.2866508662700653, 0.39601123332977295, -0.5821257829666138, -0.06557357311248779, -0.1346055269241333, 0.40827471017837524], [-0.4371604323387146, 0.210055410861969, 0.3595050275325775, -0.25030386447906494, 0.28665536642074585, 0.3960110545158386, -0.5821219086647034, -0.06557789444923401, -0.13460828363895416, 0.40827080607414246], [-0.43715932965278625, 0.21005657315254211, 0.35950392484664917, -0.25030383467674255, 0.2866572141647339, 0.39601004123687744, -0.5821208953857422, -0.06557812541723251, -0.13460925221443176, 0.40827053785324097], [-0.43715816736221313, 0.21005555987358093, 0.3595030903816223, -0.2503025531768799, 0.28665679693222046, 0.39600813388824463, -0.5821206569671631, -0.06557867676019669, -0.13460910320281982, 0.4082704484462738], [-0.43715935945510864, 0.21005700528621674, 0.3595033288002014, -0.25030460953712463, 0.28665661811828613, 0.3960096836090088, -0.5821204781532288, -0.06557869911193848, -0.13460901379585266, 0.40826910734176636], [-0.4371601343154907, 0.2100592404603958, 0.35950371623039246, -0.250306636095047, 0.28665560483932495, 0.3960114121437073, -0.5821214318275452, -0.0655776783823967, -0.13460828363895416, 0.40826910734176636], [-0.43715959787368774, 0.21005862951278687, 0.35950377583503723, -0.25030577182769775, 0.28665482997894287, 0.3960108757019043, -0.5821220278739929, -0.06557710468769073, -0.13460785150527954, 0.40826988220214844], [-0.43715882301330566, 0.21005640923976898, 0.35950347781181335, -0.25030356645584106, 0.2866555154323578, 0.3960091769695282, -0.5821213722229004, -0.06557761877775192, -0.13460831344127655, 0.40827006101608276], [-0.4371570646762848, 0.21005266904830933, 0.3595023453235626, -0.2502996623516083, 0.2866573929786682, 0.3960057199001312, -0.582119882106781, -0.0655788779258728, -0.13460949063301086, 0.4082701802253723], [-0.4371595084667206, 0.2100558876991272, 0.35950273275375366, -0.2503039836883545, 0.28665778040885925, 0.39600884914398193, -0.5821194648742676, -0.06557969003915787, -0.1346096247434616, 0.408268004655838], [-0.4371541738510132, 0.21004942059516907, 0.3595007061958313, -0.2502953112125397, 0.28665903210639954, 0.39600124955177307, -0.5821184515953064, -0.06557947397232056, -0.13461050391197205, 0.4082707464694977], [-0.43715739250183105, 0.2100510597229004, 0.3595009446144104, -0.2502993941307068, 0.28665977716445923, 0.39600417017936707, -0.5821170806884766, -0.06558195501565933, -0.13461098074913025, 0.40826714038848877], [-0.4371590316295624, 0.2100568413734436, 0.35950183868408203, -0.2503044009208679, 0.28665873408317566, 0.39600831270217896, -0.582118570804596, -0.06557978689670563, -0.13461007177829742, 0.4082668721675873], [-0.43715912103652954, 0.2100585550069809, 0.35950252413749695, -0.2503056526184082, 0.28665584325790405, 0.39600950479507446, -0.5821207761764526, -0.06557805836200714, -0.13460831344127655, 0.4082683026790619], [-0.4371601343154907, 0.21005932986736298, 0.35950350761413574, -0.2503068447113037, 0.2866547405719757, 0.39601126313209534, -0.582121729850769, -0.06557726114988327, -0.13460767269134521, 0.4082685708999634], [-0.437162309885025, 0.21006284654140472, 0.3595048785209656, -0.2503107190132141, 0.2866535186767578, 0.39601513743400574, -0.5821231603622437, -0.06557615101337433, -0.13460682332515717, 0.408268541097641], [-0.43716517090797424, 0.21006886661052704, 0.35950690507888794, -0.25031688809394836, 0.28665077686309814, 0.39602094888687134, -0.5821259021759033, -0.0655740350484848, -0.1346050351858139, 0.40826910734176636], [-0.43716588616371155, 0.21007157862186432, 0.35950854420661926, -0.25031906366348267, 0.2866479754447937, 0.3960237205028534, -0.5821285843849182, -0.065571628510952, -0.1346033662557602, 0.4082712233066559], [-0.43716347217559814, 0.21006685495376587, 0.3595083951950073, -0.2503136396408081, 0.28664806485176086, 0.39602014422416687, -0.582128643989563, -0.06557147204875946, -0.1346036046743393, 0.4082736074924469], [-0.4371648132801056, 0.2100662738084793, 0.35950857400894165, -0.2503143548965454, 0.28664955496788025, 0.3960210084915161, -0.5821274518966675, -0.06557309627532959, -0.1346045732498169, 0.4082724153995514], [-0.4371629059314728, 0.2100643813610077, 0.35950779914855957, -0.2503114640712738, 0.2866508960723877, 0.396018385887146, -0.5821266174316406, -0.06557335704565048, -0.13460542261600494, 0.4082733690738678], [-0.43716153502464294, 0.21006126701831818, 0.3595067858695984, -0.25030842423439026, 0.286652147769928, 0.3960154056549072, -0.5821252465248108, -0.06557495146989822, -0.13460636138916016, 0.4082731306552887], [-0.4371640980243683, 0.2100650817155838, 0.35950738191604614, -0.2503132224082947, 0.2866522967815399, 0.3960190713405609, -0.5821250081062317, -0.06557533144950867, -0.13460637629032135, 0.4082709848880768], [-0.4371589422225952, 0.21005889773368835, 0.35950544476509094, -0.25030484795570374, 0.28665316104888916, 0.3960118293762207, -0.5821243524551392, -0.06557491421699524, -0.13460694253444672, 0.4082738161087036], [-0.43715861439704895, 0.2100543975830078, 0.35950425267219543, -0.25030189752578735, 0.28665557503700256, 0.39600884914398193, -0.5821216106414795, -0.06557818502187729, -0.13460858166217804, 0.4082716405391693], [-0.4371612071990967, 0.21005907654762268, 0.3595045506954193, -0.25030717253685, 0.28665652871131897, 0.39601263403892517, -0.5821210145950317, -0.06557837873697281, -0.1346089243888855, 0.40826910734176636], [-0.43716269731521606, 0.2100648283958435, 0.35950541496276855, -0.25031235814094543, 0.286653608083725, 0.3960166275501251, -0.5821235179901123, -0.06557615101337433, -0.1346069723367691, 0.408269464969635], [-0.4371614456176758, 0.210063636302948, 0.359505832195282, -0.25031042098999023, 0.286651611328125, 0.39601561427116394, -0.5821250081062317, -0.06557457149028778, -0.13460588455200195, 0.40827128291130066], [-0.437161386013031, 0.21006126701831818, 0.35950586199760437, -0.2503086030483246, 0.28665223717689514, 0.39601466059684753, -0.5821244716644287, -0.06557517498731613, -0.134606271982193, 0.40827128291130066], [-0.4371631443500519, 0.21006350219249725, 0.35950636863708496, -0.2503114640712738, 0.28665265440940857, 0.3960171043872833, -0.5821244120597839, -0.06557535380125046, -0.13460640609264374, 0.4082704186439514], [-0.43716588616371155, 0.2100699245929718, 0.3595079779624939, -0.2503179609775543, 0.28665032982826233, 0.39602264761924744, -0.5821266174316406, -0.06557370722293854, -0.13460488617420197, 0.4082702696323395], [-0.437166303396225, 0.21007274091243744, 0.35950931906700134, -0.25032004714012146, 0.28664740920066833, 0.3960251212120056, -0.5821292996406555, -0.06557119637727737, -0.13460315763950348, 0.4082720875740051], [-0.4371645152568817, 0.21006879210472107, 0.35950931906700134, -0.25031569600105286, 0.28664711117744446, 0.39602237939834595, -0.5821295380592346, -0.0655708834528923, -0.1346031129360199, 0.4082741439342499], [-0.43716302514076233, 0.21006369590759277, 0.3595084249973297, -0.2503109872341156, 0.2866497039794922, 0.3960186243057251, -0.5821274518966675, -0.06557287275791168, -0.13460476696491241, 0.40827417373657227], [-0.4371581971645355, 0.2100546658039093, 0.35950547456741333, -0.25030115246772766, 0.2866543233394623, 0.3960097134113312, -0.5821235775947571, -0.06557588279247284, -0.13460773229599, 0.40827465057373047], [-0.4371574819087982, 0.21005110442638397, 0.3595033884048462, -0.2502986490726471, 0.28665822744369507, 0.39600610733032227, -0.5821197032928467, -0.0655798390507698, -0.13461025059223175, 0.4082716703414917], [-0.43715542554855347, 0.2100491225719452, 0.3595013916492462, -0.250296026468277, 0.28666073083877563, 0.39600247144699097, -0.5821173787117004, -0.06558123975992203, -0.13461174070835114, 0.40827032923698425], [-0.4371553063392639, 0.21004904806613922, 0.35950031876564026, -0.25029629468917847, 0.28666117787361145, 0.39600154757499695, -0.5821163654327393, -0.06558230519294739, -0.13461197912693024, 0.4082685112953186], [-0.4371574819087982, 0.210053488612175, 0.35950085520744324, -0.25030115246772766, 0.2866600751876831, 0.39600518345832825, -0.5821170210838318, -0.06558147072792053, -0.1346111297607422, 0.4082667827606201], [-0.43715816736221313, 0.21005640923976898, 0.35950154066085815, -0.25030356645584106, 0.28665778040885925, 0.39600732922554016, -0.5821190476417542, -0.06557944416999817, -0.13460955023765564, 0.40826740860939026], [-0.43716004490852356, 0.2100593000650406, 0.3595028817653656, -0.2503069341182709, 0.28665560483932495, 0.39601069688796997, -0.5821208953857422, -0.06557806581258774, -0.13460813462734222, 0.4082675576210022], [-0.4371587634086609, 0.21005751192569733, 0.35950297117233276, -0.2503044009208679, 0.28665515780448914, 0.39600929617881775, -0.5821215510368347, -0.06557705998420715, -0.13460788130760193, 0.40826937556266785], [-0.4371580183506012, 0.21005436778068542, 0.3595026135444641, -0.25030165910720825, 0.28665629029273987, 0.3960072100162506, -0.5821205377578735, -0.06557823717594147, -0.1346086710691452, 0.4082695543766022], [-0.4371582269668579, 0.21005405485630035, 0.359502375125885, -0.25030165910720825, 0.2866576910018921, 0.3960070013999939, -0.5821195244789124, -0.06557920575141907, -0.13460949063301086, 0.4082688093185425], [-0.437158465385437, 0.2100553810596466, 0.35950231552124023, -0.25030282139778137, 0.2866576611995697, 0.3960076868534088, -0.5821196436882019, -0.06557919085025787, -0.13460949063301086, 0.408268541097641], [-0.43715783953666687, 0.2100549340248108, 0.3595021665096283, -0.2503020763397217, 0.28665730357170105, 0.3960069417953491, -0.5821197628974915, -0.06557895988225937, -0.13460934162139893, 0.4082689583301544], [-0.4371561110019684, 0.21005141735076904, 0.35950133204460144, -0.25029832124710083, 0.28665828704833984, 0.3960038125514984, -0.582118809223175, -0.06557967513799667, -0.13460998237133026, 0.40826934576034546], [-0.4371589124202728, 0.21005484461784363, 0.3595019578933716, -0.2503029704093933, 0.28665846586227417, 0.3960075080394745, -0.582118570804596, -0.06558029353618622, -0.13460995256900787, 0.40826719999313354], [-0.43715956807136536, 0.21005858480930328, 0.3595026731491089, -0.2503059208393097, 0.28665676712989807, 0.39600998163223267, -0.5821202993392944, -0.06557837873697281, -0.13460883498191833, 0.40826791524887085], [-0.4371607303619385, 0.21006090939044952, 0.35950377583503723, -0.2503083646297455, 0.28665444254875183, 0.39601245522499084, -0.5821221470832825, -0.06557707488536835, -0.1346074640750885, 0.408268541097641], [-0.43716102838516235, 0.21006132662296295, 0.3595045506954193, -0.25030866265296936, 0.28665345907211304, 0.39601340889930725, -0.5821231603622437, -0.0655759945511818, -0.13460685312747955, 0.408269464969635], [-0.43716439604759216, 0.21006646752357483, 0.35950636863708496, -0.2503146827220917, 0.28665176033973694, 0.3960190713405609, -0.5821248292922974, -0.0655750185251236, -0.13460567593574524, 0.40826892852783203], [-0.4371662735939026, 0.21007180213928223, 0.3595082759857178, -0.25031954050064087, 0.28664883971214294, 0.3960239589214325, -0.5821278691291809, -0.06557229161262512, -0.1346038430929184, 0.40827032923698425], [-0.43716368079185486, 0.21006792783737183, 0.35950833559036255, -0.2503145933151245, 0.28664782643318176, 0.39602071046829224, -0.5821288228034973, -0.06557127088308334, -0.13460342586040497, 0.40827348828315735], [-0.43716323375701904, 0.2100639045238495, 0.35950803756713867, -0.2503114938735962, 0.28664979338645935, 0.3960185647010803, -0.5821270942687988, -0.06557321548461914, -0.1346047967672348, 0.4082731604576111], [-0.43716487288475037, 0.21006639301776886, 0.3595082759857178, -0.25031447410583496, 0.2866509258747101, 0.3960208296775818, -0.5821264982223511, -0.06557388603687286, -0.13460542261600494, 0.408271849155426], [-0.4371632933616638, 0.21006588637828827, 0.35950782895088196, -0.2503128945827484, 0.28665056824684143, 0.39601925015449524, -0.5821268558502197, -0.06557333469390869, -0.13460524380207062, 0.4082731008529663], [-0.43716031312942505, 0.21005988121032715, 0.35950639843940735, -0.2503065764904022, 0.2866520285606384, 0.3960137963294983, -0.582125186920166, -0.06557474285364151, -0.13460636138916016, 0.40827375650405884], [-0.43715378642082214, 0.2100464552640915, 0.35950252413749695, -0.2502923905849457, 0.28665778040885925, 0.3960012197494507, -0.5821200013160706, -0.06557872146368027, -0.1346101015806198, 0.40827420353889465], [-0.43714967370033264, 0.2100355476140976, 0.35949814319610596, -0.250282347202301, 0.28666532039642334, 0.39599084854125977, -0.5821129679679871, -0.06558503955602646, -0.13461478054523468, 0.40827104449272156], [-0.43714722990989685, 0.21003100275993347, 0.3594944179058075, -0.25027796626091003, 0.2866710126399994, 0.39598456025123596, -0.582107663154602, -0.06558936834335327, -0.13461817800998688, 0.4082672894001007], [-0.4371469020843506, 0.21003194153308868, 0.35949239134788513, -0.2502789795398712, 0.28667259216308594, 0.39598312973976135, -0.5821055173873901, -0.06559115648269653, -0.13461902737617493, 0.40826401114463806], [-0.4371471405029297, 0.21003411710262299, 0.3594916760921478, -0.2502810060977936, 0.2866717576980591, 0.39598363637924194, -0.5821055769920349, -0.06559060513973236, -0.1346183866262436, 0.40826231241226196], [-0.4371480941772461, 0.2100362628698349, 0.35949188470840454, -0.2502833306789398, 0.286670058965683, 0.39598530530929565, -0.5821065306663513, -0.0655895248055458, -0.1346171796321869, 0.4082615077495575], [-0.43714573979377747, 0.21003231406211853, 0.3594909608364105, -0.2502785623073578, 0.28667035698890686, 0.39598146080970764, -0.5821062922477722, -0.06558915972709656, -0.13461726903915405, 0.40826261043548584], [-0.4371516704559326, 0.2100399136543274, 0.3594929277896881, -0.25028863549232483, 0.2866691052913666, 0.3959898352622986, -0.5821073055267334, -0.06558932363986969, -0.13461630046367645, 0.40825921297073364], [-0.4371519088745117, 0.21004490554332733, 0.3594942092895508, -0.2502918243408203, 0.2866660952568054, 0.39599308371543884, -0.582110583782196, -0.06558544933795929, -0.1346142292022705, 0.40826159715652466], [-0.43715232610702515, 0.21004508435726166, 0.3594953417778015, -0.25029224157333374, 0.2866634428501129, 0.3959941864013672, -0.5821126103401184, -0.06558431684970856, -0.13461273908615112, 0.4082631468772888], [-0.43715551495552063, 0.21004930138587952, 0.3594973683357239, -0.25029733777046204, 0.28666213154792786, 0.3959995210170746, -0.5821141004562378, -0.06558317691087723, -0.13461191952228546, 0.408262699842453], [-0.43715599179267883, 0.21005171537399292, 0.359498530626297, -0.2502990663051605, 0.286660373210907, 0.3960017263889313, -0.5821162462234497, -0.06558116525411606, -0.13461071252822876, 0.4082646369934082], [-0.43715760111808777, 0.21005412936210632, 0.359499990940094, -0.25030186772346497, 0.28665852546691895, 0.3960048258304596, -0.5821178555488586, -0.06558022648096085, -0.13460968434810638, 0.4082653820514679], [-0.4371579587459564, 0.2100551873445511, 0.3595009744167328, -0.25030258297920227, 0.28665754199028015, 0.3960062861442566, -0.5821190476417542, -0.06557910144329071, -0.1346091330051422, 0.40826672315597534], [-0.4371595084667206, 0.21005748212337494, 0.3595021665096283, -0.2503052353858948, 0.2866564095020294, 0.39600905776023865, -0.5821201801300049, -0.06557849049568176, -0.13460849225521088, 0.408267080783844], [-0.4371587336063385, 0.21005694568157196, 0.35950252413749695, -0.25030410289764404, 0.2866559624671936, 0.3960086405277252, -0.5821208953857422, -0.06557772308588028, -0.13460825383663177, 0.40826860070228577], [-0.4371553659439087, 0.21005024015903473, 0.3595011532306671, -0.25029686093330383, 0.28665778040885925, 0.39600276947021484, -0.5821192860603333, -0.06557904928922653, -0.13460959494113922, 0.40827006101608276], [-0.4371580183506012, 0.21005205810070038, 0.3595013916492462, -0.2503003478050232, 0.2866594195365906, 0.3960053622722626, -0.5821177363395691, -0.06558100879192352, -0.13461056351661682, 0.4082672595977783], [-0.4371575117111206, 0.21005423367023468, 0.35950130224227905, -0.25030139088630676, 0.28665903210639954, 0.3960058093070984, -0.5821184515953064, -0.06557987630367279, -0.13461022078990936, 0.40826794505119324], [-0.4371577799320221, 0.2100549042224884, 0.35950157046318054, -0.2503022253513336, 0.2866576313972473, 0.3960064947605133, -0.5821192264556885, -0.06557955592870712, -0.13460946083068848, 0.4082680642604828], [-0.4371580183506012, 0.21005505323410034, 0.3595019578933716, -0.25030240416526794, 0.2866573631763458, 0.3960069715976715, -0.5821194648742676, -0.06557904183864594, -0.13460928201675415, 0.40826818346977234], [-0.4371592104434967, 0.2100568562746048, 0.35950252413749695, -0.25030452013015747, 0.2866567373275757, 0.3960089385509491, -0.5821201801300049, -0.06557869166135788, -0.13460880517959595, 0.408268004655838], [-0.43715593218803406, 0.2100520133972168, 0.3595014214515686, -0.25029850006103516, 0.2866576313972473, 0.3960040211677551, -0.5821195244789124, -0.06557877361774445, -0.13460949063301086, 0.4082699716091156], [-0.4371560215950012, 0.21004951000213623, 0.3595007658004761, -0.25029703974723816, 0.28665950894355774, 0.39600253105163574, -0.5821175575256348, -0.06558103114366531, -0.13461071252822876, 0.40826842188835144], [-0.4371572434902191, 0.21005214750766754, 0.35950079560279846, -0.2502998411655426, 0.28666019439697266, 0.39600443840026855, -0.5821171998977661, -0.06558112055063248, -0.13461101055145264, 0.40826717019081116], [-0.43715646862983704, 0.21005260944366455, 0.35950058698654175, -0.2502996325492859, 0.28665924072265625, 0.39600396156311035, -0.5821178555488586, -0.06558042019605637, -0.13461044430732727, 0.40826788544654846], [-0.43715640902519226, 0.21005193889141083, 0.3595006465911865, -0.2502991557121277, 0.2866589426994324, 0.3960036635398865, -0.5821178555488586, -0.06558053195476532, -0.1346103399991989, 0.4082677662372589], [-0.43715900182724, 0.2100558876991272, 0.3595016896724701, -0.25030386447906494, 0.2866581082344055, 0.3960077464580536, -0.5821186900138855, -0.06557990610599518, -0.13460968434810638, 0.40826666355133057], [-0.4371618926525116, 0.21006277203559875, 0.3595036268234253, -0.25031065940856934, 0.286655068397522, 0.39601388573646545, -0.5821216106414795, -0.065577432513237, -0.13460764288902283, 0.40826696157455444], [-0.437165766954422, 0.2100708931684494, 0.35950663685798645, -0.2503190040588379, 0.28665030002593994, 0.3960219621658325, -0.5821259021759033, -0.06557391583919525, -0.13460463285446167, 0.40826791524887085], [-0.43717244267463684, 0.21008366346359253, 0.35951149463653564, -0.2503325045108795, 0.2866438031196594, 0.3960351347923279, -0.5821319818496704, -0.06556905061006546, -0.13460050523281097, 0.4082687795162201], [-0.4371756613254547, 0.21009206771850586, 0.3595157563686371, -0.2503400146961212, 0.2866371273994446, 0.3960438668727875, -0.5821385979652405, -0.06556318700313568, -0.13459637761116028, 0.40827295184135437], [-0.43717160820961, 0.21008466184139252, 0.3595163822174072, -0.2503311038017273, 0.28663578629493713, 0.3960387706756592, -0.582140326499939, -0.06556160748004913, -0.1345958709716797, 0.40827876329421997], [-0.4371679425239563, 0.21007275581359863, 0.35951465368270874, -0.2503199577331543, 0.28664103150367737, 0.3960303068161011, -0.5821360349655151, -0.0655658170580864, -0.1345994770526886, 0.4082797169685364], [-0.43716222047805786, 0.21006038784980774, 0.3595105707645416, -0.25030717253685, 0.2866491675376892, 0.39601844549179077, -0.5821293592453003, -0.06557154655456543, -0.13460472226142883, 0.4082792103290558], [-0.4371635317802429, 0.21006111800670624, 0.3595086932182312, -0.2503095269203186, 0.2866535186767578, 0.3960181176662445, -0.5821250677108765, -0.06557610630989075, -0.1346074342727661, 0.4082743227481842], [-0.43716397881507874, 0.21006636321544647, 0.3595081865787506, -0.25031381845474243, 0.2866528034210205, 0.39602014422416687, -0.5821254253387451, -0.06557516008615494, -0.13460685312747955, 0.4082728624343872], [-0.43715572357177734, 0.21005423367023468, 0.3595046401023865, -0.2502991855144501, 0.2866540253162384, 0.396007239818573, -0.5821235179901123, -0.06557578593492508, -0.13460788130760193, 0.4082759618759155], [-0.4371556341648102, 0.2100471556186676, 0.3595024645328522, -0.2502947151660919, 0.2866589426994324, 0.3960026204586029, -0.5821183323860168, -0.06558104604482651, -0.13461101055145264, 0.4082714915275574], [-0.43715396523475647, 0.2100452333688736, 0.3595000207424164, -0.25029224157333374, 0.28666311502456665, 0.3959989845752716, -0.582115113735199, -0.06558292359113693, -0.13461323082447052, 0.408269464969635], [-0.4371524453163147, 0.21004360914230347, 0.35949811339378357, -0.25029051303863525, 0.2866641581058502, 0.3959958255290985, -0.5821135640144348, -0.0655844658613205, -0.13461381196975708, 0.4082680940628052], [-0.4371492266654968, 0.2100382149219513, 0.3594958782196045, -0.2502845823764801, 0.28666621446609497, 0.39598986506462097, -0.5821112394332886, -0.06558585911989212, -0.13461513817310333, 0.40826746821403503], [-0.43714839220046997, 0.21003493666648865, 0.359494149684906, -0.2502819895744324, 0.28666868805885315, 0.3959866762161255, -0.5821086168289185, -0.06558821350336075, -0.13461650907993317, 0.40826520323753357], [-0.43714988231658936, 0.2100376933813095, 0.3594937324523926, -0.25028520822525024, 0.28666937351226807, 0.39598846435546875, -0.5821079611778259, -0.06558862328529358, -0.13461674749851227, 0.40826287865638733], [-0.43714943528175354, 0.21003900468349457, 0.3594934940338135, -0.2502858638763428, 0.28666821122169495, 0.39598849415779114, -0.5821087956428528, -0.0655876100063324, -0.1346159279346466, 0.40826308727264404], [-0.43714815378189087, 0.21003639698028564, 0.3594929277896881, -0.2502831220626831, 0.2866681218147278, 0.3959861993789673, -0.5821085572242737, -0.06558766961097717, -0.1346159279346466, 0.4082634150981903], [-0.43715083599090576, 0.2100394368171692, 0.3594937026500702, -0.25028735399246216, 0.28666797280311584, 0.39598971605300903, -0.5821086764335632, -0.0655878558754921, -0.1346157193183899, 0.40826159715652466], [-0.43715545535087585, 0.21004946529865265, 0.359496146440506, -0.2502976357936859, 0.28666460514068604, 0.39599862694740295, -0.5821119546890259, -0.06558506190776825, -0.13461332023143768, 0.40826091170310974], [-0.4371514916419983, 0.2100459188222885, 0.3594960570335388, -0.2502917945384979, 0.286662220954895, 0.3959945738315582, -0.5821142792701721, -0.06558240205049515, -0.13461199402809143, 0.40826553106307983], [-0.4371536374092102, 0.21004486083984375, 0.35949695110321045, -0.2502928376197815, 0.28666257858276367, 0.39599618315696716, -0.5821135640144348, -0.06558392941951752, -0.13461238145828247, 0.4082641005516052], [-0.43715575337409973, 0.2100493460893631, 0.3594980537891388, -0.2502972483634949, 0.2866625189781189, 0.3960002660751343, -0.5821143984794617, -0.06558283418416977, -0.13461211323738098, 0.4082638621330261], [-0.437152624130249, 0.2100459784269333, 0.3594973087310791, -0.25029242038726807, 0.2866619825363159, 0.3959962725639343, -0.5821149945259094, -0.06558229774236679, -0.13461194932460785, 0.40826666355133057], [-0.43714940547943115, 0.21003781259059906, 0.359495609998703, -0.25028446316719055, 0.2866649031639099, 0.3959895670413971, -0.5821120738983154, -0.06558492034673691, -0.1346140205860138, 0.4082668125629425], [-0.43714639544487, 0.21003037691116333, 0.3594929277896881, -0.25027719140052795, 0.28666993975639343, 0.39598265290260315, -0.582107663154602, -0.0655885711312294, -0.13461720943450928, 0.40826553106307983], [-0.4371476471424103, 0.21003182232379913, 0.35949185490608215, -0.25027960538864136, 0.28667235374450684, 0.39598315954208374, -0.5821053385734558, -0.0655909925699234, -0.13461852073669434, 0.4082622230052948], [-0.43714839220046997, 0.21003618836402893, 0.35949182510375977, -0.2502833902835846, 0.2866712510585785, 0.3959853947162628, -0.5821061134338379, -0.06558992713689804, -0.13461773097515106, 0.40826135873794556], [-0.43714746832847595, 0.21003587543964386, 0.3594917058944702, -0.25028249621391296, 0.2866694927215576, 0.39598459005355835, -0.5821071863174438, -0.0655888020992279, -0.13461671769618988, 0.40826210379600525], [-0.4371478855609894, 0.21003508567810059, 0.35949185490608215, -0.25028228759765625, 0.28666943311691284, 0.39598461985588074, -0.5821070671081543, -0.06558886170387268, -0.1346166580915451, 0.40826165676116943], [-0.43715181946754456, 0.2100415676832199, 0.3594934940338135, -0.2502897083759308, 0.28666800260543823, 0.3959910571575165, -0.5821085572242737, -0.06558786332607269, -0.13461551070213318, 0.4082601070404053], [-0.4371499717235565, 0.210041344165802, 0.3594937026500702, -0.25028783082962036, 0.28666624426841736, 0.3959899842739105, -0.5821104645729065, -0.06558559834957123, -0.13461440801620483, 0.4082629680633545], [-0.4371494948863983, 0.2100382298231125, 0.3594937026500702, -0.25028538703918457, 0.2866663932800293, 0.3959883749485016, -0.5821099877357483, -0.06558649986982346, -0.13461469113826752, 0.40826326608657837], [-0.43715164065361023, 0.2100408524274826, 0.3594944179058075, -0.250288724899292, 0.28666698932647705, 0.39599138498306274, -0.5821098685264587, -0.06558670103549957, -0.13461492955684662, 0.4082620441913605], [-0.4371534585952759, 0.21004587411880493, 0.3594955503940582, -0.2502935826778412, 0.28666505217552185, 0.39599546790122986, -0.5821118354797363, -0.06558509916067123, -0.13461363315582275, 0.4082624018192291], [-0.43715301156044006, 0.21004652976989746, 0.3594963550567627, -0.2502935230731964, 0.2866630554199219, 0.39599597454071045, -0.58211350440979, -0.06558346748352051, -0.1346125304698944, 0.4082641005516052], [-0.43715426325798035, 0.2100474238395691, 0.3594972789287567, -0.2502949833869934, 0.28666213154792786, 0.39599794149398804, -0.5821142792701721, -0.06558314710855484, -0.13461202383041382, 0.4082642197608948], [-0.43715500831604004, 0.2100488841533661, 0.3594980835914612, -0.25029638409614563, 0.28666165471076965, 0.39599961042404175, -0.5821150541305542, -0.06558232009410858, -0.13461168110370636, 0.40826478600502014], [-0.4371548295021057, 0.2100488543510437, 0.35949838161468506, -0.25029611587524414, 0.28666114807128906, 0.3959996998310089, -0.582115650177002, -0.06558196991682053, -0.13461138308048248, 0.40826570987701416], [-0.4371548295021057, 0.21004849672317505, 0.35949862003326416, -0.25029587745666504, 0.28666117787361145, 0.3959996998310089, -0.582115650177002, -0.06558205187320709, -0.13461147248744965, 0.40826597809791565], [-0.43715596199035645, 0.21005037426948547, 0.35949915647506714, -0.25029799342155457, 0.2866608500480652, 0.3960016369819641, -0.5821160078048706, -0.06558185815811157, -0.13461123406887054, 0.40826570987701416], [-0.43715545535087585, 0.21005037426948547, 0.3594992756843567, -0.25029751658439636, 0.2866603434085846, 0.3960014283657074, -0.5821166038513184, -0.06558123975992203, -0.13461098074913025, 0.4082666039466858], [-0.43715545535087585, 0.2100497931241989, 0.35949939489364624, -0.2502971291542053, 0.28666025400161743, 0.39600124955177307, -0.5821165442466736, -0.06558145582675934, -0.13461104035377502, 0.40826672315597534], [-0.4371534585952759, 0.21004612743854523, 0.359498530626297, -0.25029298663139343, 0.2866615951061249, 0.3959977924823761, -0.5821154117584229, -0.06558211147785187, -0.13461191952228546, 0.40826743841171265], [-0.4371543824672699, 0.21004633605480194, 0.3594983220100403, -0.2502939701080322, 0.28666266798973083, 0.3959982991218567, -0.5821143984794617, -0.06558343768119812, -0.1346125304698944, 0.40826597809791565], [-0.4371529519557953, 0.2100452333688736, 0.3594975471496582, -0.2502921223640442, 0.28666332364082336, 0.39599642157554626, -0.5821139216423035, -0.06558340787887573, -0.13461296260356903, 0.40826642513275146], [-0.4371514618396759, 0.2100420594215393, 0.359496533870697, -0.2502889633178711, 0.28666427731513977, 0.3959933817386627, -0.5821127891540527, -0.06558455526828766, -0.13461363315582275, 0.4082662761211395], [-0.437153697013855, 0.21004490554332733, 0.35949695110321045, -0.2502928078174591, 0.28666454553604126, 0.3959962725639343, -0.5821124315261841, -0.06558505445718765, -0.13461369276046753, 0.4082641899585724], [-0.43715542554855347, 0.2100500762462616, 0.359497994184494, -0.2502976059913635, 0.2866625487804413, 0.3960002660751343, -0.5821143388748169, -0.06558315455913544, -0.1346123218536377, 0.4082641899585724], [-0.4371499717235565, 0.21004199981689453, 0.3594963252544403, -0.2502877116203308, 0.2866628170013428, 0.3959922194480896, -0.5821139812469482, -0.06558289378881454, -0.13461270928382874, 0.408267617225647], [-0.43714967370033264, 0.21003636717796326, 0.3594951033592224, -0.250283807516098, 0.2866663634777069, 0.3959887623786926, -0.5821105241775513, -0.06558657437562943, -0.1346149891614914, 0.4082653820514679], [-0.43714913725852966, 0.21003574132919312, 0.35949379205703735, -0.25028300285339355, 0.28666937351226807, 0.3959871828556061, -0.5821083188056946, -0.06558803468942642, -0.13461662828922272, 0.4082639217376709], [-0.4371454119682312, 0.2100307196378708, 0.3594915270805359, -0.250277042388916, 0.28667107224464417, 0.3959810435771942, -0.5821064710617065, -0.06558950990438461, -0.13461779057979584, 0.4082643687725067], [-0.43714261054992676, 0.2100241482257843, 0.3594891428947449, -0.25027069449424744, 0.2866743206977844, 0.3959747552871704, -0.5821030735969543, -0.06559239327907562, -0.13461993634700775, 0.4082629978656769], [-0.43714508414268494, 0.21002711355686188, 0.35948872566223145, -0.25027498602867126, 0.2866758406162262, 0.3959771990776062, -0.5821014046669006, -0.06559400260448456, -0.13462066650390625, 0.4082592725753784], [-0.4371425211429596, 0.2100260704755783, 0.3594874441623688, -0.250272274017334, 0.28667575120925903, 0.39597418904304504, -0.5821014642715454, -0.06559307873249054, -0.13462048768997192, 0.4082602560520172], [-0.4371470808982849, 0.2100321501493454, 0.35948890447616577, -0.25028032064437866, 0.2866736054420471, 0.39598071575164795, -0.5821027159690857, -0.06559295207262039, -0.1346190869808197, 0.40825748443603516], [-0.43714848160743713, 0.2100377380847931, 0.3594905436038971, -0.2502848207950592, 0.2866706848144531, 0.39598506689071655, -0.5821057558059692, -0.06558936834335327, -0.13461706042289734, 0.40825873613357544], [-0.43715187907218933, 0.21004365384578705, 0.3594930171966553, -0.2502914369106293, 0.2866664528846741, 0.3959915339946747, -0.5821093916893005, -0.06558693200349808, -0.13461440801620483, 0.40825942158699036], [-0.4371579885482788, 0.21005502343177795, 0.3594972789287567, -0.25030356645584106, 0.2866613268852234, 0.3960033357143402, -0.5821143984794617, -0.06558270752429962, -0.1346110999584198, 0.40825971961021423], [-0.4371558427810669, 0.21005424857139587, 0.3594987094402313, -0.25030067563056946, 0.28665778040885925, 0.39600279927253723, -0.5821182131767273, -0.0655788853764534, -0.13460895419120789, 0.40826523303985596], [-0.4371562898159027, 0.210051029920578, 0.35949966311454773, -0.2502986192703247, 0.2866579592227936, 0.39600250124931335, -0.5821180939674377, -0.06557989120483398, -0.13460934162139893, 0.4082661271095276], [-0.43716001510620117, 0.21005648374557495, 0.3595014810562134, -0.25030502676963806, 0.28665807843208313, 0.3960084915161133, -0.5821187496185303, -0.06557954847812653, -0.13460931181907654, 0.4082651734352112], [-0.43715646862983704, 0.2100536972284317, 0.3595009446144104, -0.2503001391887665, 0.28665751218795776, 0.39600464701652527, -0.5821197032928467, -0.06557834893465042, -0.13460910320281982, 0.4082688093185425], [-0.43715566396713257, 0.21004952490329742, 0.3595004379749298, -0.2502968907356262, 0.2866588234901428, 0.39600202441215515, -0.5821179747581482, -0.06558052450418472, -0.13461025059223175, 0.40826839208602905], [-0.4371591806411743, 0.2100549042224884, 0.35950154066085815, -0.2503032684326172, 0.2866591811180115, 0.39600732922554016, -0.5821179747581482, -0.06558062881231308, -0.1346103399991989, 0.4082660973072052], [-0.43715783953666687, 0.2100561261177063, 0.35950157046318054, -0.25030291080474854, 0.2866574823856354, 0.3960070312023163, -0.5821196436882019, -0.06557875126600266, -0.13460925221443176, 0.4082682430744171], [-0.4371599555015564, 0.21005845069885254, 0.3595028519630432, -0.25030627846717834, 0.2866557538509369, 0.39601022005081177, -0.5821207761764526, -0.0655783861875534, -0.13460828363895416, 0.40826767683029175], [-0.43716081976890564, 0.2100607454776764, 0.3595038950443268, -0.25030821561813354, 0.28665462136268616, 0.3960125744342804, -0.5821220874786377, -0.06557679921388626, -0.1346074938774109, 0.4082685112953186], [-0.4371638000011444, 0.21006588637828827, 0.35950571298599243, -0.2503139078617096, 0.28665217757225037, 0.3960179388523102, -0.5821243524551392, -0.06557536870241165, -0.13460594415664673, 0.408268541097641], [-0.4371640384197235, 0.21006785333156586, 0.3595069646835327, -0.2503151595592499, 0.2866501212120056, 0.396019846200943, -0.5821265578269958, -0.06557318568229675, -0.13460469245910645, 0.40827056765556335], [-0.43715938925743103, 0.21005913615226746, 0.35950562357902527, -0.2503054141998291, 0.28665146231651306, 0.3960123062133789, -0.5821253657341003, -0.0655740275979042, -0.1346057951450348, 0.40827345848083496], [-0.4371599853038788, 0.21005584299564362, 0.3595048487186432, -0.25030383467674255, 0.2866550087928772, 0.39601075649261475, -0.582122266292572, -0.065577432513237, -0.13460804522037506, 0.40827110409736633], [-0.4371595084667206, 0.2100566029548645, 0.35950398445129395, -0.25030404329299927, 0.28665682673454285, 0.3960101008415222, -0.5821210145950317, -0.06557811796665192, -0.13460904359817505, 0.40827038884162903], [-0.4371598958969116, 0.21005845069885254, 0.3595038652420044, -0.2503058910369873, 0.286655992269516, 0.39601102471351624, -0.5821213722229004, -0.06557810306549072, -0.13460858166217804, 0.40826982259750366], [-0.4371568560600281, 0.21005398035049438, 0.3595027029514313, -0.25030043721199036, 0.28665658831596375, 0.39600640535354614, -0.5821205973625183, -0.0655781626701355, -0.13460907340049744, 0.4082709848880768], [-0.4371548295021057, 0.21004793047904968, 0.3595010042190552, -0.25029489398002625, 0.2866593599319458, 0.3960013687610626, -0.5821178555488586, -0.06558062881231308, -0.1346108317375183, 0.40827012062072754], [-0.4371567666530609, 0.21005010604858398, 0.3595006465911865, -0.25029808282852173, 0.2866610884666443, 0.39600321650505066, -0.5821163654327393, -0.06558211147785187, -0.13461168110370636, 0.4082673490047455], [-0.43715858459472656, 0.21005594730377197, 0.35950136184692383, -0.25030356645584106, 0.28665921092033386, 0.396007239818573, -0.5821180939674377, -0.06558053940534592, -0.1346103698015213, 0.4082667827606201], [-0.4371574819087982, 0.2100558578968048, 0.3595016300678253, -0.25030261278152466, 0.28665706515312195, 0.39600670337677, -0.5821197032928467, -0.06557884812355042, -0.1346091330051422, 0.40826845169067383], [-0.43715667724609375, 0.21005262434482574, 0.3595014214515686, -0.2502996623516083, 0.286657452583313, 0.3960047662258148, -0.5821191668510437, -0.06557925045490265, -0.13460946083068848, 0.4082687795162201], [-0.43715596199035645, 0.21004994213581085, 0.3595007061958313, -0.2502971887588501, 0.2866593897342682, 0.3960026204586029, -0.5821177363395691, -0.06558050215244293, -0.13461053371429443, 0.40826845169067383], [-0.43716028332710266, 0.21005718410015106, 0.3595021069049835, -0.25030574202537537, 0.28665846586227417, 0.3960094153881073, -0.5821186900138855, -0.0655803233385086, -0.13460980355739594, 0.4082660973072052], [-0.4371618926525116, 0.21006396412849426, 0.35950392484664917, -0.2503114342689514, 0.28665465116500854, 0.396014541387558, -0.5821222066879272, -0.06557677686214447, -0.13460740447044373, 0.4082675874233246], [-0.4371569752693176, 0.21005608141422272, 0.35950297117233276, -0.25030192732810974, 0.28665393590927124, 0.3960075080394745, -0.5821226239204407, -0.06557602435350418, -0.1346072554588318, 0.4082714915275574], [-0.43716153502464294, 0.210058331489563, 0.35950422286987305, -0.25030717253685, 0.2866551876068115, 0.3960123062133789, -0.5821213722229004, -0.06557823717594147, -0.13460801541805267, 0.4082680344581604], [-0.4371592402458191, 0.21005816757678986, 0.3595036566257477, -0.2503049075603485, 0.2866557836532593, 0.3960103988647461, -0.582121729850769, -0.06557682156562805, -0.134608194231987, 0.4082701802253723], [-0.4371547996997833, 0.2100493609905243, 0.3595014810562134, -0.2502957284450531, 0.28665757179260254, 0.39600226283073425, -0.5821196436882019, -0.0655791163444519, -0.13460959494113922, 0.40827152132987976], [-0.4371565580368042, 0.21004903316497803, 0.3595009744167328, -0.25029709935188293, 0.2866605818271637, 0.3960028290748596, -0.5821167826652527, -0.06558191776275635, -0.13461150228977203, 0.4082680344581604], [-0.43715420365333557, 0.21004770696163177, 0.359499454498291, -0.2502943277359009, 0.28666195273399353, 0.3959996700286865, -0.5821158289909363, -0.0655820220708847, -0.13461223244667053, 0.4082684814929962], [-0.43715354800224304, 0.21004581451416016, 0.359498530626297, -0.25029295682907104, 0.28666239976882935, 0.39599770307540894, -0.5821147561073303, -0.06558334082365036, -0.13461261987686157, 0.40826746821403503], [-0.43715474009513855, 0.21004773676395416, 0.35949862003326416, -0.2502952814102173, 0.28666266798973083, 0.39599934220314026, -0.5821144580841064, -0.06558337062597275, -0.13461264967918396, 0.4082658886909485], [-0.4371514320373535, 0.21004334092140198, 0.3594971299171448, -0.2502896189689636, 0.2866634130477905, 0.3959943652153015, -0.5821138024330139, -0.06558337062597275, -0.1346130520105362, 0.40826737880706787], [-0.4371514320373535, 0.21004080772399902, 0.3594962954521179, -0.250288188457489, 0.28666505217552185, 0.3959926962852478, -0.5821119546890259, -0.06558545678853989, -0.13461416959762573, 0.4082656800746918], [-0.43715253472328186, 0.21004310250282288, 0.35949623584747314, -0.2502906620502472, 0.28666576743125916, 0.3959942162036896, -0.5821114778518677, -0.06558560580015182, -0.13461440801620483, 0.40826424956321716], [-0.43715283274650574, 0.2100452035665512, 0.3594963550567627, -0.2502923905849457, 0.2866644561290741, 0.3959954082965851, -0.5821125507354736, -0.0655846893787384, -0.1346135288476944, 0.4082644283771515], [-0.43715181946754456, 0.21004366874694824, 0.35949623584747314, -0.25029054284095764, 0.2866639494895935, 0.39599400758743286, -0.5821127891540527, -0.06558431684970856, -0.13461335003376007, 0.4082651138305664], [-0.4371511936187744, 0.2100413292646408, 0.35949575901031494, -0.2502883970737457, 0.2866649329662323, 0.39599230885505676, -0.5821118950843811, -0.06558503210544586, -0.13461393117904663, 0.40826496481895447], [-0.43715333938598633, 0.21004436910152435, 0.3594962954521179, -0.25029224157333374, 0.2866649627685547, 0.3959953188896179, -0.5821119546890259, -0.06558527052402496, -0.13461381196975708, 0.40826356410980225], [-0.43715453147888184, 0.21004848182201385, 0.35949721932411194, -0.25029587745666504, 0.28666311502456665, 0.395998477935791, -0.5821137428283691, -0.06558356434106827, -0.13461261987686157, 0.4082639813423157], [-0.43715283274650574, 0.21004626154899597, 0.35949715971946716, -0.25029292702674866, 0.28666210174560547, 0.39599642157554626, -0.5821145176887512, -0.06558273732662201, -0.13461211323738098, 0.4082657992839813], [-0.43715155124664307, 0.2100418657064438, 0.35949650406837463, -0.2502889037132263, 0.2866637408733368, 0.39599326252937317, -0.5821129679679871, -0.06558411568403244, -0.13461323082447052, 0.4082659184932709], [-0.4371500611305237, 0.21003831923007965, 0.3594951927661896, -0.2502853572368622, 0.2866664528846741, 0.39598989486694336, -0.5821108222007751, -0.06558600068092346, -0.13461486995220184, 0.4082653820514679], [-0.43715089559555054, 0.21003949642181396, 0.35949477553367615, -0.2502870559692383, 0.28666749596595764, 0.3959905803203583, -0.582109808921814, -0.0655871331691742, -0.1346154808998108, 0.4082637131214142], [-0.4371529221534729, 0.21004465222358704, 0.3594955801963806, -0.2502923011779785, 0.2866659164428711, 0.3959946036338806, -0.582111120223999, -0.06558597087860107, -0.13461440801620483, 0.40826284885406494], [-0.4371541142463684, 0.21004848182201385, 0.3594968318939209, -0.2502957284450531, 0.2866630256175995, 0.3959978520870209, -0.58211350440979, -0.0655837133526802, -0.13461259007453918, 0.408263623714447], [-0.4371553063392639, 0.21005044877529144, 0.35949811339378357, -0.25029778480529785, 0.2866608500480652, 0.3960004448890686, -0.5821154117584229, -0.06558210402727127, -0.13461126387119293, 0.40826448798179626], [-0.43715840578079224, 0.21005535125732422, 0.35950013995170593, -0.25030335783958435, 0.2866586744785309, 0.3960059583187103, -0.5821176171302795, -0.06558044254779816, -0.13460983335971832, 0.4082645773887634], [-0.4371587038040161, 0.2100573182106018, 0.3595013916492462, -0.25030454993247986, 0.2866566479206085, 0.3960078954696655, -0.582119882106781, -0.06557833403348923, -0.13460855185985565, 0.40826669335365295], [-0.4371589422225952, 0.21005688607692719, 0.35950225591659546, -0.25030434131622314, 0.2866557836532593, 0.3960084915161133, -0.5821207165718079, -0.0655779242515564, -0.13460813462734222, 0.40826788544654846], [-0.4371611177921295, 0.21006010472774506, 0.3595035970211029, -0.250308096408844, 0.28665512800216675, 0.3960122764110565, -0.5821216106414795, -0.06557738780975342, -0.1346077024936676, 0.40826767683029175], [-0.4371577799320221, 0.21005593240261078, 0.3595028221607208, -0.25030240416526794, 0.286655455827713, 0.39600786566734314, -0.5821216702461243, -0.065576933324337, -0.13460801541805267, 0.4082704186439514], [-0.43715816736221313, 0.2100536823272705, 0.35950255393981934, -0.25030139088630676, 0.2866568863391876, 0.3960069715976715, -0.5821200609207153, -0.06557899713516235, -0.13460907340049744, 0.4082692265510559], [-0.4371611475944519, 0.21005938947200775, 0.3595035970211029, -0.2503075897693634, 0.2866566479206085, 0.3960120379924774, -0.5821205377578735, -0.06557852029800415, -0.13460876047611237, 0.40826764702796936], [-0.43716081976890564, 0.21006187796592712, 0.35950416326522827, -0.25030893087387085, 0.2866542935371399, 0.3960132598876953, -0.5821227431297302, -0.06557641923427582, -0.13460728526115417, 0.40826940536499023], [-0.4371607303619385, 0.21006092429161072, 0.35950472950935364, -0.25030821561813354, 0.2866531312465668, 0.39601320028305054, -0.5821234583854675, -0.0655759871006012, -0.1346067637205124, 0.4082701504230499], [-0.4371592104434967, 0.2100573182106018, 0.35950419306755066, -0.25030437111854553, 0.28665444254875183, 0.3960103988647461, -0.5821225047111511, -0.06557653099298477, -0.13460761308670044, 0.40827083587646484], [-0.43716225028038025, 0.21006104350090027, 0.35950496792793274, -0.2503093481063843, 0.2866545617580414, 0.3960144519805908, -0.5821225047111511, -0.06557720899581909, -0.13460758328437805, 0.4082689583301544], [-0.43716683983802795, 0.21007172763347626, 0.35950765013694763, -0.250320166349411, 0.2866508960723877, 0.3960237205028534, -0.5821260213851929, -0.06557418406009674, -0.13460512459278107, 0.4082685112953186], [-0.4371669590473175, 0.2100752592086792, 0.35950949788093567, -0.2503223121166229, 0.2866462171077728, 0.3960266709327698, -0.5821301937103271, -0.06557022035121918, -0.13460230827331543, 0.408271849155426], [-0.4371664524078369, 0.2100725769996643, 0.3595104515552521, -0.25031983852386475, 0.28664496541023254, 0.39602598547935486, -0.5821312665939331, -0.06556953489780426, -0.13460172712802887, 0.4082738161087036], [-0.4371698498725891, 0.210076242685318, 0.35951218008995056, -0.2503247559070587, 0.286644846200943, 0.396030992269516, -0.5821318626403809, -0.06556947529315948, -0.13460154831409454, 0.4082728624343872], [-0.43717339634895325, 0.2100846916437149, 0.35951459407806396, -0.2503330707550049, 0.28664183616638184, 0.39603856205940247, -0.5821351408958435, -0.06556673347949982, -0.13459953665733337, 0.4082735776901245], [-0.43717125058174133, 0.21008341014385223, 0.35951530933380127, -0.25033020973205566, 0.2866392135620117, 0.39603716135025024, -0.5821375250816345, -0.06556440889835358, -0.13459813594818115, 0.40827739238739014], [-0.4371658265590668, 0.21007102727890015, 0.3595132529735565, -0.2503173351287842, 0.2866424322128296, 0.3960271179676056, -0.5821346044540405, -0.06556689739227295, -0.13460050523281097, 0.408279687166214], [-0.4371640384197235, 0.21006323397159576, 0.35951077938079834, -0.25031083822250366, 0.28664878010749817, 0.39602094888687134, -0.582129180431366, -0.06557206064462662, -0.13460448384284973, 0.4082772135734558], [-0.4371604919433594, 0.2100578248500824, 0.35950756072998047, -0.2503047585487366, 0.2866538465023041, 0.3960139751434326, -0.5821248292922974, -0.06557547301054001, -0.13460761308670044, 0.4082758128643036], [-0.4371611475944519, 0.21005910634994507, 0.359506219625473, -0.2503068149089813, 0.2866553068161011, 0.39601388573646545, -0.5821227431297302, -0.06557770073413849, -0.13460852205753326, 0.40827253460884094], [-0.43716055154800415, 0.2100604623556137, 0.3595055043697357, -0.25030744075775146, 0.28665488958358765, 0.3960135281085968, -0.5821227431297302, -0.06557701528072357, -0.134608194231987, 0.40827178955078125], [-0.43715712428092957, 0.21005463600158691, 0.35950371623039246, -0.25030094385147095, 0.2866556644439697, 0.39600762724876404, -0.5821215510368347, -0.06557761132717133, -0.1346087008714676, 0.40827247500419617], [-0.437157541513443, 0.21005238592624664, 0.35950276255607605, -0.250299870967865, 0.2866578698158264, 0.3960062265396118, -0.582119345664978, -0.06557980179786682, -0.13460998237133026, 0.40827006101608276], [-0.4371597170829773, 0.21005691587924957, 0.35950300097465515, -0.2503047585487366, 0.2866578996181488, 0.3960096538066864, -0.5821195244789124, -0.06557950377464294, -0.13460977375507355, 0.4082682728767395], [-0.437153160572052, 0.2100481390953064, 0.3595004379749298, -0.2502936124801636, 0.2866589426994324, 0.3959999084472656, -0.5821184515953064, -0.06557957082986832, -0.13461056351661682, 0.4082714915275574], [-0.4371509253978729, 0.21003907918930054, 0.35949796438217163, -0.2502860724925995, 0.2866635322570801, 0.39599281549453735, -0.5821136832237244, -0.06558427214622498, -0.1346135288476944, 0.40826910734176636], [-0.4371602535247803, 0.21005423367023468, 0.35950034856796265, -0.25030404329299927, 0.28666311502456665, 0.39600685238838196, -0.5821142792701721, -0.06558441370725632, -0.1346127688884735, 0.40826255083084106], [-0.4371596574783325, 0.2100624144077301, 0.35950180888175964, -0.2503088712692261, 0.2866568863391876, 0.39601096510887146, -0.5821201801300049, -0.06557802110910416, -0.13460873067378998, 0.40826666355133057], [-0.4371592700481415, 0.21006006002426147, 0.3595030903816223, -0.25030696392059326, 0.2866530120372772, 0.39601069688796997, -0.5821226835250854, -0.06557647138834, -0.13460664451122284, 0.40826892852783203], [-0.4371574819087982, 0.21005386114120483, 0.35950276255607605, -0.250300794839859, 0.286655455827713, 0.3960067629814148, -0.5821210145950317, -0.06557727605104446, -0.1346081644296646, 0.40826988220214844], [-0.4371577799320221, 0.21005214750766754, 0.35950198769569397, -0.250299870967865, 0.2866581082344055, 0.3960057497024536, -0.5821191668510437, -0.06557958573102951, -0.13460968434810638, 0.40826886892318726], [-0.43716150522232056, 0.2100597620010376, 0.3595033884048462, -0.25030824542045593, 0.2866571247577667, 0.39601218700408936, -0.5821201801300049, -0.06557902693748474, -0.13460898399353027, 0.4082670211791992], [-0.4371642470359802, 0.21006837487220764, 0.35950565338134766, -0.25031614303588867, 0.28665241599082947, 0.39601922035217285, -0.5821242928504944, -0.06557532399892807, -0.1346060335636139, 0.4082680642604828], [-0.43716374039649963, 0.2100687474012375, 0.35950708389282227, -0.25031569600105286, 0.2866488993167877, 0.3960201144218445, -0.5821272730827332, -0.06557250767946243, -0.13460403680801392, 0.4082709550857544], [-0.4371625483036041, 0.21006421744823456, 0.3595072031021118, -0.25031131505966187, 0.2866494953632355, 0.39601758122444153, -0.5821269154548645, -0.06557288765907288, -0.13460451364517212, 0.408272385597229], [-0.4371645748615265, 0.21006561815738678, 0.3595077693462372, -0.25031378865242004, 0.28665077686309814, 0.39601996541023254, -0.582126259803772, -0.06557396054267883, -0.13460521399974823, 0.40827125310897827], [-0.4371657371520996, 0.2100696563720703, 0.35950860381126404, -0.25031742453575134, 0.2866497337818146, 0.3960229456424713, -0.5821275115013123, -0.0655728131532669, -0.13460451364517212, 0.4082716405391693], [-0.4371662139892578, 0.21007174253463745, 0.35950952768325806, -0.2503192126750946, 0.28664761781692505, 0.39602479338645935, -0.5821292996406555, -0.06557149440050125, -0.1346033364534378, 0.4082726836204529], [-0.4371654987335205, 0.21007028222084045, 0.3595098555088043, -0.2503175139427185, 0.28664714097976685, 0.3960239887237549, -0.582129716873169, -0.06557094305753708, -0.13460315763950348, 0.4082737863063812], [-0.43716317415237427, 0.21006500720977783, 0.35950878262519836, -0.250311940908432, 0.2866489887237549, 0.3960195481777191, -0.5821282267570496, -0.06557217240333557, -0.1346043348312378, 0.40827468037605286], [-0.4371626675128937, 0.21006232500076294, 0.3595077693462372, -0.25030985474586487, 0.28665152192115784, 0.3960173726081848, -0.5821259617805481, -0.06557437777519226, -0.13460597395896912, 0.4082734286785126], [-0.437165230512619, 0.2100672572851181, 0.35950830578804016, -0.25031542778015137, 0.2866514325141907, 0.39602136611938477, -0.5821260809898376, -0.06557449698448181, -0.1346057951450348, 0.4082714915275574], [-0.43716102838516235, 0.21006308495998383, 0.3595069348812103, -0.2503092288970947, 0.28665128350257874, 0.396016001701355, -0.5821261405944824, -0.06557364761829376, -0.1346057951450348, 0.4082740843296051], [-0.43715789914131165, 0.21005432307720184, 0.3595048487186432, -0.2503010332584381, 0.2866542339324951, 0.39600881934165955, -0.5821229219436646, -0.06557675451040268, -0.13460785150527954, 0.4082735776901245], [-0.4371536672115326, 0.21004480123519897, 0.3595014214515686, -0.2502913773059845, 0.28666022419929504, 0.3959996700286865, -0.5821177363395691, -0.06558071076869965, -0.1346115618944168, 0.4082723557949066], [-0.43715062737464905, 0.21003815531730652, 0.35949790477752686, -0.2502850294113159, 0.28666549921035767, 0.3959922790527344, -0.5821127891540527, -0.06558520346879959, -0.13461478054523468, 0.4082697033882141], [-0.4371506869792938, 0.21003857254981995, 0.3594960868358612, -0.25028595328330994, 0.286668062210083, 0.3959910571575165, -0.5821100473403931, -0.06558750569820404, -0.13461624085903168, 0.40826618671417236], [-0.4371492862701416, 0.21003840863704681, 0.3594946265220642, -0.2502850890159607, 0.28666818141937256, 0.3959890604019165, -0.5821093916893005, -0.06558751314878464, -0.13461624085903168, 0.40826523303985596], [-0.4371494650840759, 0.21003834903240204, 0.3594941198825836, -0.25028538703918457, 0.2866678535938263, 0.39598870277404785, -0.5821090340614319, -0.06558771431446075, -0.134615957736969, 0.4082638919353485], [-0.4371485412120819, 0.21003670990467072, 0.35949331521987915, -0.25028347969055176, 0.2866683602333069, 0.3959868848323822, -0.5821085572242737, -0.06558771431446075, -0.13461612164974213, 0.4082636535167694], [-0.4371481239795685, 0.21003511548042297, 0.35949262976646423, -0.2502821683883667, 0.28666922450065613, 0.39598536491394043, -0.582107663154602, -0.0655885562300682, -0.13461656868457794, 0.4082629978656769], [-0.43715283274650574, 0.2100430279970169, 0.35949432849884033, -0.2502914071083069, 0.2866676449775696, 0.3959929049015045, -0.5821090340614319, -0.06558774411678314, -0.13461539149284363, 0.4082605242729187], [-0.437154084444046, 0.210049107670784, 0.35949602723121643, -0.25029629468917847, 0.2866637110710144, 0.395997554063797, -0.5821128487586975, -0.0655839666724205, -0.1346128284931183, 0.40826237201690674], [-0.43715161085128784, 0.2100447565317154, 0.359496146440506, -0.2502911686897278, 0.28666216135025024, 0.3959942162036896, -0.582114040851593, -0.06558286398649216, -0.1346120536327362, 0.40826529264450073], [-0.4371485114097595, 0.21003583073616028, 0.35949453711509705, -0.2502824664115906, 0.28666576743125916, 0.3959873914718628, -0.5821110010147095, -0.0655854344367981, -0.13461445271968842, 0.4082658290863037], [-0.43714672327041626, 0.21003033220767975, 0.35949239134788513, -0.2502775490283966, 0.2866705656051636, 0.39598241448402405, -0.5821070075035095, -0.06558915227651596, -0.1346173882484436, 0.4082641899585724], [-0.43715131282806396, 0.2100387066602707, 0.3594931662082672, -0.2502872943878174, 0.28667059540748596, 0.39598938822746277, -0.5821069478988647, -0.06558985263109207, -0.13461720943450928, 0.4082604646682739], [-0.4371510446071625, 0.21004359424114227, 0.3594939708709717, -0.2502903640270233, 0.28666701912879944, 0.3959917426109314, -0.5821099877357483, -0.06558632850646973, -0.13461501896381378, 0.4082622528076172], [-0.4371514320373535, 0.2100435346364975, 0.3594948947429657, -0.25029051303863525, 0.28666436672210693, 0.39599257707595825, -0.5821117162704468, -0.06558520346879959, -0.134613499045372, 0.4082631468772888], [-0.43715551495552063, 0.2100490927696228, 0.3594970703125, -0.25029727816581726, 0.2866627871990204, 0.3959992229938507, -0.5821133852005005, -0.06558381766080856, -0.13461235165596008, 0.40826213359832764], [-0.4371598958969116, 0.2100587785243988, 0.35950008034706116, -0.25030699372291565, 0.28665855526924133, 0.39600831270217896, -0.5821177363395691, -0.06558017432689667, -0.13460949063301086, 0.4082629978656769], [-0.4371631443500519, 0.21006663143634796, 0.3595035672187805, -0.25031450390815735, 0.28665289282798767, 0.3960161507129669, -0.5821229815483093, -0.06557586044073105, -0.1346060335636139, 0.40826550126075745], [-0.4371647238731384, 0.21006973087787628, 0.3595063388347626, -0.2503173053264618, 0.28664901852607727, 0.3960205316543579, -0.582126796245575, -0.06557265669107437, -0.13460375368595123, 0.4082685112953186], [-0.4371568560600281, 0.21005523204803467, 0.35950422286987305, -0.25030073523521423, 0.2866518199443817, 0.39600804448127747, -0.5821248292922974, -0.06557366997003555, -0.13460588455200195, 0.4082738757133484], [-0.43715253472328186, 0.2100406289100647, 0.35950055718421936, -0.2502876818180084, 0.2866601347923279, 0.3959965407848358, -0.5821174383163452, -0.06558103114366531, -0.13461129367351532, 0.4082721173763275], [-0.43715018033981323, 0.2100352644920349, 0.35949695110321045, -0.2502826750278473, 0.28666776418685913, 0.39599013328552246, -0.5821110010147095, -0.06558647751808167, -0.134615957736969, 0.408268541097641], [-0.43714639544487, 0.21003106236457825, 0.3594933748245239, -0.250277578830719, 0.28667140007019043, 0.39598318934440613, -0.5821072459220886, -0.06558957695960999, -0.13461826741695404, 0.40826675295829773], [-0.4371456801891327, 0.21002992987632751, 0.3594914674758911, -0.25027695298194885, 0.2866729199886322, 0.3959808349609375, -0.5821048021316528, -0.06559162586927414, -0.13461926579475403, 0.40826359391212463], [-0.43714800477027893, 0.2100348174571991, 0.3594915270805359, -0.25028225779533386, 0.28667208552360535, 0.39598438143730164, -0.5821051001548767, -0.06559103727340698, -0.13461844623088837, 0.40826088190078735], [-0.43714866042137146, 0.21003809571266174, 0.3594919741153717, -0.25028499960899353, 0.28666952252388, 0.39598649740219116, -0.5821071267127991, -0.0655888244509697, -0.1346166878938675, 0.4082612097263336], [-0.4371468722820282, 0.21003471314907074, 0.35949164628982544, -0.2502811551094055, 0.28666889667510986, 0.39598366618156433, -0.5821074843406677, -0.06558822840452194, -0.13461630046367645, 0.4082625210285187], [-0.43714410066604614, 0.21002748608589172, 0.35948994755744934, -0.25027400255203247, 0.28667178750038147, 0.3959776759147644, -0.5821049809455872, -0.0655902847647667, -0.1346181482076645, 0.408262699842453], [-0.43714776635169983, 0.21003158390522003, 0.35949036478996277, -0.25027990341186523, 0.2866731882095337, 0.39598196744918823, -0.5821038484573364, -0.06559200584888458, -0.1346188187599182, 0.40825924277305603], [-0.4371469020843506, 0.21003425121307373, 0.3594903349876404, -0.25028106570243835, 0.2866719365119934, 0.3959825038909912, -0.5821052193641663, -0.06559006124734879, -0.13461796939373016, 0.4082604646682739], [-0.43714597821235657, 0.2100323587656021, 0.35949015617370605, -0.25027915835380554, 0.28667083382606506, 0.3959810137748718, -0.5821056365966797, -0.06559000164270401, -0.134617418050766, 0.40826115012168884], [-0.4371436536312103, 0.21002697944641113, 0.3594890236854553, -0.25027358531951904, 0.2866729199886322, 0.3959764838218689, -0.5821037888526917, -0.06559115648269653, -0.13461878895759583, 0.4082614481449127], [-0.4371448755264282, 0.210027277469635, 0.3594886064529419, -0.2502748966217041, 0.2866746187210083, 0.39597710967063904, -0.582102358341217, -0.06559287011623383, -0.13461966812610626, 0.40825942158699036], [-0.4371458888053894, 0.21003076434135437, 0.3594888746738434, -0.25027814507484436, 0.2866740822792053, 0.3959793746471405, -0.5821030139923096, -0.06559211015701294, -0.13461923599243164, 0.40825891494750977], [-0.43714410066604614, 0.21002906560897827, 0.35948845744132996, -0.2502756118774414, 0.28667324781417847, 0.3959771692752838, -0.5821035504341125, -0.06559146195650101, -0.1346188187599182, 0.40826019644737244], [-0.43714475631713867, 0.21002836525440216, 0.35948848724365234, -0.2502756416797638, 0.2866736054420471, 0.39597731828689575, -0.5821029543876648, -0.06559218466281891, -0.1346191167831421, 0.4082593321800232], [-0.43714067339897156, 0.21002162992954254, 0.35948657989501953, -0.25026774406433105, 0.2866760492324829, 0.39597052335739136, -0.5821009874343872, -0.0655931755900383, -0.13462066650390625, 0.4082607328891754], [-0.43713945150375366, 0.21001681685447693, 0.35948479175567627, -0.25026383996009827, 0.2866792678833008, 0.39596641063690186, -0.5820977687835693, -0.06559652090072632, -0.1346227079629898, 0.4082588851451874], [-0.437142550945282, 0.21002230048179626, 0.35948508977890015, -0.250270277261734, 0.2866799235343933, 0.3959708511829376, -0.5820972323417664, -0.06559702754020691, -0.13462288677692413, 0.40825584530830383], [-0.437141090631485, 0.21002361178398132, 0.35948482155799866, -0.2502700388431549, 0.28667810559272766, 0.39597025513648987, -0.5820987820625305, -0.06559514254331589, -0.13462170958518982, 0.4082573354244232], [-0.4371426999568939, 0.21002505719661713, 0.3594856560230255, -0.25027239322662354, 0.2866765260696411, 0.39597246050834656, -0.5820996761322021, -0.06559480726718903, -0.1346208155155182, 0.4082565903663635], [-0.43714284896850586, 0.21002565324306488, 0.35948610305786133, -0.25027263164520264, 0.2866760790348053, 0.39597317576408386, -0.5821003317832947, -0.06559375673532486, -0.13462045788764954, 0.4082571864128113], [-0.43714436888694763, 0.21002788841724396, 0.3594869077205658, -0.2502753734588623, 0.28667503595352173, 0.39597564935684204, -0.5821013450622559, -0.06559328734874725, -0.13461972773075104, 0.4082570970058441], [-0.4371432662010193, 0.2100268304347992, 0.3594869375228882, -0.25027361512184143, 0.28667476773262024, 0.3959745764732361, -0.5821018218994141, -0.06559255719184875, -0.1346196085214615, 0.40825843811035156], [-0.43714624643325806, 0.2100307047367096, 0.35948824882507324, -0.25027862191200256, 0.28667372465133667, 0.39597901701927185, -0.5821026563644409, -0.06559247523546219, -0.13461890816688538, 0.40825724601745605], [-0.4371511936187744, 0.21004123985767365, 0.3594912588596344, -0.2502894699573517, 0.28666990995407104, 0.3959887623786926, -0.582106351852417, -0.06558924913406372, -0.13461638987064362, 0.40825700759887695], [-0.43715232610702515, 0.21004639565944672, 0.3594936430454254, -0.2502935230731964, 0.28666484355926514, 0.3959934711456299, -0.5821110606193542, -0.06558504700660706, -0.1346132904291153, 0.40826019644737244], [-0.4371533989906311, 0.21004702150821686, 0.3594956696033478, -0.25029438734054565, 0.286662220954895, 0.3959958851337433, -0.5821134448051453, -0.06558326631784439, -0.1346118301153183, 0.4082622528076172], [-0.4371568560600281, 0.2100517451763153, 0.3594980835914612, -0.25029999017715454, 0.28666070103645325, 0.3960019052028656, -0.5821154117584229, -0.06558194756507874, -0.13461080193519592, 0.40826255083084106], [-0.43715620040893555, 0.21005243062973022, 0.3594990074634552, -0.2502995431423187, 0.28665927052497864, 0.39600253105163574, -0.5821173191070557, -0.0655800998210907, -0.13460998237133026, 0.4082654118537903], [-0.43715718388557434, 0.21005280315876007, 0.3595000207424164, -0.2503005266189575, 0.28665849566459656, 0.3960040211677551, -0.5821179747581482, -0.06558015942573547, -0.134609654545784, 0.4082660377025604], [-0.4371589422225952, 0.21005606651306152, 0.35950136184692383, -0.2503039538860321, 0.2866577208042145, 0.3960075080394745, -0.5821190476417542, -0.06557932496070862, -0.13460922241210938, 0.40826624631881714], [-0.43715861439704895, 0.21005681157112122, 0.3595019578933716, -0.25030407309532166, 0.2866564989089966, 0.39600810408592224, -0.5821202993392944, -0.06557821482419968, -0.13460858166217804, 0.4082678258419037], [-0.4371616840362549, 0.21006134152412415, 0.35950377583503723, -0.25030946731567383, 0.2866547405719757, 0.39601320028305054, -0.5821218490600586, -0.06557740271091461, -0.1346074938774109, 0.4082673192024231], [-0.43716785311698914, 0.21007364988327026, 0.3595075309276581, -0.25032249093055725, 0.28665006160736084, 0.3960251212120056, -0.5821263790130615, -0.06557374447584152, -0.13460442423820496, 0.4082670211791992], [-0.4371700584888458, 0.21008118987083435, 0.3595108687877655, -0.25032883882522583, 0.2866438627243042, 0.3960321545600891, -0.5821322202682495, -0.06556840986013412, -0.13460059463977814, 0.4082707166671753], [-0.43716850876808167, 0.21007788181304932, 0.35951220989227295, -0.2503248155117035, 0.2866414785385132, 0.39603081345558167, -0.582134485244751, -0.06556655466556549, -0.13459941744804382, 0.40827476978302], [-0.4371661841869354, 0.21007020771503448, 0.3595116138458252, -0.25031742453575134, 0.28664442896842957, 0.39602574706077576, -0.5821323394775391, -0.06556858122348785, -0.1346014142036438, 0.40827620029449463], [-0.4371664226055145, 0.2100684493780136, 0.3595108687877655, -0.2503165006637573, 0.28664785623550415, 0.3960246443748474, -0.5821298360824585, -0.06557129323482513, -0.13460354506969452, 0.4082748591899872], [-0.4371664226055145, 0.21007025241851807, 0.35951051115989685, -0.25031793117523193, 0.28664857149124146, 0.39602506160736084, -0.5821292996406555, -0.06557179242372513, -0.13460403680801392, 0.4082743227481842], [-0.43716344237327576, 0.21006657183170319, 0.35950925946235657, -0.2503132224082947, 0.2866489887237549, 0.39602071046829224, -0.5821285843849182, -0.06557214260101318, -0.13460448384284973, 0.40827539563179016], [-0.43716374039649963, 0.21006491780281067, 0.3595086932182312, -0.2503125071525574, 0.28665030002593994, 0.3960198163986206, -0.582127034664154, -0.06557376682758331, -0.13460533320903778, 0.40827375650405884], [-0.43716347217559814, 0.21006503701210022, 0.35950812697410583, -0.2503124177455902, 0.28665122389793396, 0.39601930975914, -0.5821263194084167, -0.06557397544384003, -0.1346057951450348, 0.4082731604576111], [-0.43716558814048767, 0.21006906032562256, 0.35950878262519836, -0.25031694769859314, 0.2866499423980713, 0.396022766828537, -0.5821272134780884, -0.06557352095842361, -0.13460488617420197, 0.40827199816703796], [-0.4371628761291504, 0.21006615459918976, 0.3595081865787506, -0.2503127157688141, 0.28664958477020264, 0.3960193395614624, -0.582127571105957, -0.06557250767946243, -0.13460475206375122, 0.40827396512031555], [-0.4371563196182251, 0.21005234122276306, 0.3595047891139984, -0.2502982020378113, 0.2866538166999817, 0.3960069715976715, -0.5821235179901123, -0.06557586789131165, -0.13460761308670044, 0.40827542543411255], [-0.43715527653694153, 0.2100456953048706, 0.35950204730033875, -0.2502932846546173, 0.2866602838039398, 0.3960014879703522, -0.5821176767349243, -0.06558136641979218, -0.1346115916967392, 0.408271461725235], [-0.43715569376945496, 0.21004796028137207, 0.3595004379749298, -0.25029557943344116, 0.28666290640830994, 0.39600151777267456, -0.5821154117584229, -0.06558309495449066, -0.13461293280124664, 0.4082685112953186], [-0.4371579587459564, 0.21005472540855408, 0.3595009446144104, -0.25030240416526794, 0.286660373210907, 0.3960060477256775, -0.5821170210838318, -0.06558181345462799, -0.13461129367351532, 0.4082668423652649], [-0.4371604025363922, 0.21006116271018982, 0.35950279235839844, -0.2503086030483246, 0.28665614128112793, 0.3960115909576416, -0.582120418548584, -0.06557852774858475, -0.13460861146450043, 0.40826699137687683], [-0.43716105818748474, 0.21006275713443756, 0.35950416326522827, -0.25030988454818726, 0.286653071641922, 0.3960137367248535, -0.5821231007575989, -0.06557594239711761, -0.13460667431354523, 0.4082687497138977], [-0.43716225028038025, 0.21006327867507935, 0.3595053553581238, -0.25031089782714844, 0.2866520583629608, 0.39601564407348633, -0.5821242928504944, -0.06557516008615494, -0.13460591435432434, 0.4082695245742798], [-0.4371620714664459, 0.21006278693675995, 0.3595057725906372, -0.25031015276908875, 0.286652147769928, 0.3960156738758087, -0.582124650478363, -0.0655747503042221, -0.1346060037612915, 0.40827059745788574], [-0.43716517090797424, 0.2100675106048584, 0.359507292509079, -0.2503158152103424, 0.2866509258747101, 0.39602068066596985, -0.5821259021759033, -0.06557431071996689, -0.13460524380207062, 0.40826988220214844], [-0.4371618926525116, 0.21006426215171814, 0.3595068156719208, -0.2503107786178589, 0.286650687456131, 0.396016925573349, -0.5821264982223511, -0.06557311117649078, -0.13460521399974823, 0.408272922039032], [-0.4371606409549713, 0.2100592851638794, 0.3595059812068939, -0.2503065764904022, 0.28665241599082947, 0.39601343870162964, -0.5821245908737183, -0.06557539850473404, -0.1346064656972885, 0.40827256441116333], [-0.4371594190597534, 0.210056334733963, 0.359504759311676, -0.25030362606048584, 0.2866554260253906, 0.3960105776786804, -0.5821222066879272, -0.06557712703943253, -0.13460828363895416, 0.4082717001438141], [-0.43715935945510864, 0.21005640923976898, 0.35950392484664917, -0.25030386447906494, 0.2866564989089966, 0.3960099220275879, -0.5821211338043213, -0.06557835638523102, -0.1346089243888855, 0.40827053785324097], [-0.43715888261795044, 0.2100566029548645, 0.35950347781181335, -0.25030383467674255, 0.28665661811828613, 0.39600932598114014, -0.5821207761764526, -0.0655783861875534, -0.13460904359817505, 0.40827009081840515], [-0.4371567368507385, 0.21005307137966156, 0.35950231552124023, -0.25029975175857544, 0.2866573929786682, 0.39600563049316406, -0.582119882106781, -0.06557896733283997, -0.13460955023765564, 0.4082704484462738], [-0.43715861439704895, 0.21005463600158691, 0.3595024645328522, -0.2503025233745575, 0.2866579294204712, 0.39600759744644165, -0.5821191668510437, -0.0655798465013504, -0.13460983335971832, 0.40826836228370667], [-0.43716222047805786, 0.21006254851818085, 0.3595041334629059, -0.25031065940856934, 0.28665560483932495, 0.39601439237594604, -0.5821213722229004, -0.06557787954807281, -0.13460810482501984, 0.4082673490047455]]], 'fractal_dimension': 4.25} 2025-07-28 23:18:20,891 - DEBUG - Sending response: { "message": "File uploaded successfully", "filename": "S001R01.edf", "shape": [ 64, 9760 ], "sampling_rate": 160.0, "channel_names": [ "Fc5.", "Fc3.", "Fc1.", "Fcz.", "Fc2.", "Fc4.", "Fc6.", "C5..", "C3..", "C1..", "Cz..", "C2..", "C4..", "C6..", "Cp5.", "Cp3.", "Cp1.", "Cpz.", "Cp2.", "Cp4.", "Cp6.", "Fp1.", "Fpz.", "Fp2.", "Af7.", "Af3.", "Afz.", "Af4.", "Af8.", "F7..", "F5..", "F3..", "F1..", "Fz..", "F2..", "F4..", "F6..", "F8..", "Ft7.", "Ft8.", "T7..", "T8..", "T9..", "T10.", "Tp7.", "Tp8.", "P7..", "P5..", "P3..", "P1..", "Pz..", "P2..", "P4..", "P6..", "P8..", "Po7.", "Po3.", "Poz.", "Po4.", "Po8.", "O1..", "Oz..", "O2..", "Iz.." ], "metrics": [ { "mean_amplitude": -0.7604508196721314, "mu_psd": 32.96217130036497, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.0400614754098365, "mu_psd": 42.208361534205906, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.0797131147540973, "mu_psd": 39.75499892768321, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.8452868852459003, "mu_psd": 38.731687895830035, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.4572745901639337, "mu_psd": 36.45671846636971, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 3.0593237704918033, "mu_psd": 33.12253401258297, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.7516393442622946, "mu_psd": 20.383899986541035, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.8946721311475412, "mu_psd": 36.13147005560294, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.358299180327869, "mu_psd": 42.707443489824996, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.18688524590164052, "mu_psd": 35.83879768589472, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.3882172131147534, "mu_psd": 32.816917407410266, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.692213114754098, "mu_psd": 31.95003385558746, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.224282786885246, "mu_psd": 28.29165483101699, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.628790983606558, "mu_psd": 17.01563826863389, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.463422131147541, "mu_psd": 36.32390309607568, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.16557377049180302, "mu_psd": 38.3608098936832, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.777049180327868, "mu_psd": 35.58889841907527, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6493852459016396, "mu_psd": 32.76094623423135, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.11547131147541033, "mu_psd": 30.293224827502296, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.5043032786885251, "mu_psd": 29.00179204029715, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.3472336065573767, "mu_psd": 21.313346303950205, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -8.763217213114755, "mu_psd": 30.889085201415394, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -7.782786885245901, "mu_psd": 27.436530092968738, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -8.68954918032787, "mu_psd": 26.901803396603853, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -10.696823770491802, "mu_psd": 31.79732985272577, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -9.142418032786885, "mu_psd": 30.979407517628683, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.964241803278689, "mu_psd": 33.534322865086395, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -4.732991803278689, "mu_psd": 28.50425245527458, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -6.505122950819672, "mu_psd": 23.90336767313496, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.3546106557377042, "mu_psd": 27.836928662869006, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -5.617827868852459, "mu_psd": 35.33012840136983, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.6713114754098355, "mu_psd": 32.67831622400885, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.14334016393442614, "mu_psd": 38.17433457556781, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8379098360655738, "mu_psd": 38.28653350595802, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.4547131147540994, "mu_psd": 35.04637279580251, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8713114754098362, "mu_psd": 31.850613664878395, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.163422131147541, "mu_psd": 25.829493870582244, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.7753073770491805, "mu_psd": 17.6736917924352, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.3829918032786885, "mu_psd": 28.17966031322613, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8619877049180324, "mu_psd": 11.291750159105318, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.9428278688524583, "mu_psd": 27.626524911435336, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.750409836065573, "mu_psd": 9.30286324704405, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.7112704918032788, "mu_psd": 26.482776617605577, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.09641393442622959, "mu_psd": 2.533695442731044, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.14477459016393418, "mu_psd": 30.068746868094838, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6962090163934423, "mu_psd": 11.550468816632018, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8612704918032791, "mu_psd": 37.79443489890606, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.0809426229508203, "mu_psd": 40.656749513463446, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.3059426229508198, "mu_psd": 41.330996096642515, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.5913934426229513, "mu_psd": 41.42380498373986, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.18893442622950787, "mu_psd": 38.186882884316766, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.7969262295081971, "mu_psd": 37.650624175942006, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.1698770491803276, "mu_psd": 33.958598201727426, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.8021516393442623, "mu_psd": 27.053105215942246, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.02530737704918, "mu_psd": 19.503264664200966, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.7867827868852455, "mu_psd": 47.11752538431089, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.0236680327868863, "mu_psd": 48.43728070052847, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.284118852459016, "mu_psd": 46.34457088667734, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.0335040983606556, "mu_psd": 41.35467641899583, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.2284836065573768, "mu_psd": 39.659832169131796, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6304303278688523, "mu_psd": 55.50730913514963, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.154713114754098, "mu_psd": 49.149252934165, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.3248975409836069, "mu_psd": 50.32309919576436, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.56875, "mu_psd": 44.79530326491978, "erd_amplitude": 0.0, "event_latency": 0.0 } ] } 2025-07-28 23:18:20,892 - INFO - 127.0.0.1 - - [28/Jul/2025 23:18:20] "POST /upload HTTP/1.1" 200 - 2025-07-29 01:16:26,707 - INFO - 192.168.3.155 - - [29/Jul/2025 01:16:26] "[33mGET / HTTP/1.1[0m" 404 - 2025-07-29 01:16:38,606 - INFO - 192.168.3.155 - - [29/Jul/2025 01:16:38] "[33mGET / HTTP/1.1[0m" 404 - 2025-07-29 01:16:38,611 - INFO - 192.168.3.155 - - [29/Jul/2025 01:16:38] "[33mGET /loginMsg.js HTTP/1.1[0m" 404 - 2025-07-29 01:16:38,616 - INFO - 192.168.3.155 - - [29/Jul/2025 01:16:38] "[33mGET /cgi/get.cgi?cmd=home_login HTTP/1.1[0m" 404 - 2025-07-29 01:16:41,265 - INFO - 192.168.3.155 - - [29/Jul/2025 01:16:41] "[33mGET /rootDesc.xml HTTP/1.1[0m" 404 - 2025-07-29 01:19:04,179 - DEBUG - Received upload request 2025-07-29 01:19:04,208 - DEBUG - Saving file to C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001\S001R01.edf 2025-07-29 01:19:04,212 - DEBUG - Loading EDF: C:\Users\Wolverine\Desktop\HNFC_FinalGeniusEdition\eeg_data\MNE-eegbci-data\files\eegmmidb\1.0.0\S001\S001R01.edf 2025-07-29 01:19:04,333 - DEBUG - EDF loaded: shape=(64, 9760), sfreq=160.0, channels=64 2025-07-29 01:19:06,389 - DEBUG - Chaos metrics: {'lorentz_trajectory': [[1.0, 1.012526435333749, 1.0488427648448813, 1.1074268310054123, 1.1872456699842253, 1.2879299443535448, 1.4100743204422619, 1.5546044176661293, 1.7226797617541962, 1.9156937847488102, 2.135501404667851, 2.3848509372121334, 2.6668380107922536, 2.984813421248435, 3.342383141022818, 3.7434083191594643, 4.191980636293861, 4.690242034217356, 5.244446379255251, 5.862109805589737, 6.548741906638002, 7.30784573505223, 8.140917802719603, 9.047448080762301, 10.024919999537499, 11.068810448637375, 12.172454030074087, 13.319363905546792, 14.484208344247893, 15.63513294827697, 16.731680385697324, 17.72479039053596, 18.558078017232326, 19.181057568135333, 19.537958095934012, 19.590016084394605, 19.32129990077376, 18.738709795818533, 17.868310041649757, 16.737663372007585, 15.398614892117966, 13.908598791349505, 12.327156229548489, 10.712315173349486, 9.10947837720894, 7.555592979577969, 6.078057482050836, 4.694801809243179, 3.4162471900409197, 2.2452230013149133, 1.181297687437059, 0.22176199989058532, -0.6383710027299765, -1.4063843651789711, -2.090985274463022, -2.6997109542721507, -3.2398852910893883, -3.7188737648943477, -4.144083449163219, -4.522963010868772, -4.862968807665948, -5.170009255773388, -5.4479837854463495, -5.7006486432102905, -5.931734687064622, -6.144947386482708, -6.343966822411869, -6.532447687273377, -6.7136985588011795, -6.8888340066299065, -7.058731372860783, -7.224289979754371, -7.386339467345437, -7.5456397934429615, -7.7028812336301336, -7.858684381264349, -8.013593048435599, -8.167488545892828, -8.319479097017247, -8.46866633725987, -8.614142894434366, -8.754992388717069, -8.890289432646965, -9.019099631125703, -9.140479581417596, -9.253476873149609, -9.35713008831137, -9.450594422061542, -9.532791072591133, -9.602206389748064, -9.657597021076525, -9.698008423928131, -9.722774865461929, -9.731519422644384, -9.724153982249392, -9.700879240858276, -9.662184704859783, -9.608848690450083, -9.541938323632781, -9.462772849451799, -9.371685987178621, -9.269630020722667, -9.158148638239561, -9.038783951303282, -8.913076494906171, -8.782565227458925, -8.648787530790598, -8.513279210148607, -8.377574494198718, -8.243206035025063, -8.111704908130129, -7.984600612434762, -7.863404747441387, -7.7492423187050825, -7.642944184696112, -7.545282114131972, -7.456948549077124, -7.378556604942999, -7.310640070487999, -7.253653407817487, -7.207971752383799, -7.173890912986237, -7.15162737177107, -7.141318284231538, -7.143021479207844, -7.156715458887163, -7.181874959232638, -7.217409249226833, -7.263409657025492, -7.319893661722231, -7.386736338229492, -7.463670357278543, -7.550285985419476, -7.6460310850212085, -7.750211114271484, -7.861989127176871, -7.980385773562762, -8.10427929907338, -8.232405545171764, -8.363357949139786, -8.495914576487744, -8.629752863825058, -8.763459277088652, -8.895515835795143, -9.024427049858648, -9.14871991959078, -9.266943935700645, -9.377671079294855, -9.47949582187751, -9.571035125350217, -9.650928442012074, -9.717837714559675, -9.770447376087121, -9.807531613047413, -9.828752723335299, -9.83379993391946, -9.822445766314303, -9.794701473837263, -9.750817041608803, -9.691281186552414, -9.616821357394612, -9.528403734664938, -9.42723323069597, -9.314753489623305, -9.19264688738557, -9.062834531724416, -8.927461942101298, -8.787713390817125, -8.644830853165788, -8.500562729492893, -8.356569210284198, -8.214422276165605, -8.075605697903164, -7.941515036403072, -7.813457642711677, -7.692652658015469, -7.580231013641087, -7.47723543105532, -7.384620421865098, -7.302954716502444, -7.232317569344705, -7.173131836879367, -7.125744194242481, -7.090413688185375, -7.067311737074662, -7.056522130892233, -7.05804103123526, -7.071776971316195, -7.097550855962773, -7.1350959616180045, -7.184057936340187, -7.2438408624372475, -7.3133908061992265, -7.392661148749552, -7.481583732765693, -7.579917354594806, -7.687247764253738, -7.802987665429025, -7.926376715476891, -8.056481525423253, -8.192195659963717, -8.332239637463571, -8.4751609299578, -8.619333963151075, -8.762960116417757, -8.9040677228019, -9.041733651545048, -9.175411283227357, -9.303033623622047, -9.422692562313493, -9.53264852875856, -9.63133049228661, -9.717335962099487, -9.789430987271533, -9.846550156749583, -9.887796599352956, -9.91244198377347, -9.91992651857543, -9.909852492276912, -9.881840335197099, -9.83624943855869, -9.77383947072025, -9.695523211097457, -9.602366550163127, -9.49558848944719, -9.376561141536701, -9.246809730075842, -9.108012589765915, -8.962001166365349, -8.810760016689695, -8.656426808611627, -8.501215340287875, -8.34670564920694, -8.19447313415197, -8.046067250400013, -7.902926422881614, -7.766378046180814, -7.637638484535146, -7.517813071835638, -7.407896111626812, -7.308770877106684, -7.221209611126764, -7.145873526192057, -7.083219149135018, -7.032952714674168, -6.995232605770079, -6.970275303333803, -6.958205343333993, -6.959055316796903, -6.972765869806392, -6.9991857035039216, -7.038071574088554, -7.089088292816957, -7.151808726003399, -7.225713795019751, -7.31011357873849, -7.403957374717543, -7.507029474944586, -7.619107646305065, -7.739784593686578, -7.868467959978874, -8.004380326073855, -8.146559210865576, -8.293857071250242, -8.444941302126212, -8.598294236393995, -8.752213144956256, -8.904810236717807, -9.054012658585616, -9.197562495468803, -9.334624071478189, -9.464335474289687, -9.584388298062176, -9.692736107769305, -9.787594520645944, -9.86744120618821, -9.931015886153448, -9.97732033456024, -10.005618377688402, -10.015435894078982, -10.006560814534264, -9.979043122117771, -9.933063375833731, -9.868448237605362, -9.786257552142349, -9.687860380509992, -9.574725367862372, -9.448420743442336, -9.3106143205815, -9.163073496700262, -9.00766525330778, -8.846356156001994, -8.681212354469608, -8.514399582486101, -8.348183028946847, -8.184666843939338, -8.025445046639371, -7.871984306766961, -7.725636568489001, -7.587639050419258, -7.459114245618373, -7.341069921593863, -7.234399120300118, -7.139880158138405, -7.058176625956866, -6.989837389050518, -6.935296587161249, -6.894387842218629, -6.866686924439915, -6.8523863742908615, -6.8515848157115595, -6.864281849317243, -6.890378052398285, -6.929674978920194, -6.9818751595236215, -7.046582101524358, -7.12330028891333, -7.211435182356607, -7.310293219195396, -7.4187462322832065, -7.535703212393713, -7.661079587735009, -7.794606359599258, -7.935795192632162, -8.083938414832934, -8.23810901755431, -8.397160655502544, -8.559727646737409, -8.7242249726722, -8.888848278073729, -9.051573871062331, -9.210158723111856, -9.362140469049681, -9.504837407056696, -9.635386638281505, -9.753725229178356, -9.859024334812688, -9.949018731657922, -10.021835817013518, -10.075995609004963, -10.110410746583785, -10.124386489527545, -10.117620718439838, -10.0902039347503, -10.042619260714591, -9.97574243941442, -9.890841834757518, -9.789205553658606, -9.670831001584585, -9.537578170613347, -9.391603304905122, -9.235047511469363, -9.070036760164752, -8.898681883699199, -8.723078577629838, -8.545307400363033, -8.36743377315437, -8.19150798010867, -8.019565168179971, -7.8536288706212245, -7.695622850755487, -7.546800938397233, -7.40817111123786, -7.2806441676331755, -7.1650337266034025, -7.062056227833178, -6.97233093167155, -6.896379919131983, -6.83462809189235, -6.787403172294942, -6.754935703346462, -6.737359048718023, -6.73451248013291, -6.74518638294261, -6.769366675357218, -6.807161898345692, -6.858544770950088, -6.9233521902855575, -7.001285231540347, -7.091909147975802, -7.1946533709263605, -7.308811509799559, -7.4335413520760305, -7.567864863309502, -7.7106681871267995, -7.8607354828340545, -8.017212966693926, -8.179243679756066, -8.345772489958605, -8.5155896051879, -8.687330573278524, -8.859476282013276, -9.030352959123178, -9.198132172287472, -9.360830829133624, -9.516311177237323, -9.66228080412248, -9.796292637261226, -9.915744944073918, -10.017881331929136, -10.100764433156062, -10.164634780781967, -10.208156853214215, -10.230274453611187, -10.230338898474587, -10.20810901764944, -10.163751154324084, -10.097839165030187, -10.011354419642732, -9.905685801380024, -9.782629706803688, -9.64439004581867, -9.493578241673237, -9.333068906145296, -9.162981965277103, -8.98482878759277, -8.801160007163114, -8.614402586788056, -8.426859817996617, -8.240711321046913, -8.058013044926163, -7.880697267350682, -7.710572594765888, -7.549323962346295, -7.398512633995519, -7.2594784903540095, -7.132904663623455, -7.019415088932684, -6.919567309433686, -6.833826511422586, -6.762565524339654, -6.706064820769292, -6.664512516440045, -6.638004370224596, -6.626543784139766, -6.630041803346518, -6.648317116149947, -6.680228095852599, -6.725027301938794, -6.783159275420805, -6.854867279360083, -6.940191550021407, -7.0389692968728825, -7.1508347025859464, -7.275218923035359, -7.411350087299215, -7.55825329765893, -7.714750629599253, -7.879461131808261, -8.050800826177358, -8.226982707801273, -8.406017657705853, -8.587268944634591, -8.770039610765313, -8.952293440642876, -9.131972706673974, -9.306998169127132, -9.47526907613271, -9.6346631636829, -9.78303665563173, -9.918224263695059, -10.038039187450586, -10.140273114337834, -10.22269621965817, -10.283423763794456, -10.3218497007096, -10.337033842066914, -10.328383997380124, -10.295734067952337, -10.239344046876033, -10.159900019033067, -10.058514161094676, -9.936724741521465, -9.796496120563422, -9.640218750259907, -9.47070917443966, -9.291060150592779, -9.10236981618524, -8.906799278867322, -8.707076658711406, -8.505774646253728, -8.305310502494375, -8.107946058897298, -7.915787717390292, -7.730786450365016, -7.554737800676982, -7.389281881645554, -7.235903360998501, -7.095648944771609, -6.96909317908797, -6.8568150132149945, -6.759299456887157, -6.676937580305993, -6.6100265141401024, -6.558769449525145, -6.523275638063845, -6.503560391825989, -6.499545083348426, -6.511057145635067, -6.5372937525509816, -6.576950981572713, -6.6305074059456155, -6.698331105039451, -6.780576972210342, -6.87718671480078, -6.987888854139619, -7.112198725542077, -7.249418478309739, -7.398637075730553, -7.558730295078834, -7.728360727615259, -7.905977778586871, -8.089817667227079, -8.277903426755655, -8.468764577742625, -8.66246318804759, -8.857104546984818, -9.050584770576615, -9.240745084936115, -9.42537182626729, -9.602196440864931, -9.768895485114667, -9.92309062549295, -10.062348638567068, -10.184181410995134, -10.286045939526094, -10.365506505847325, -10.421659650759985, -10.453330840646105, -10.459546454825183, -10.439822357860882, -10.394163899561033, -10.32306591497764, -10.227512724406873, -10.108978133389076, -9.969425432708755, -9.811307398394593, -9.637566291719438, -9.451593963899635, -9.254733542434357, -9.04889371524319, -8.837115157064973, -8.622267102767625, -8.407047347348136, -8.19398224593258, -7.985426713776103, -7.78356422626293, -7.590406818906363, -7.407795087348783, -7.237398053982101, -7.080464817808489, -6.937711176584645, -6.809778415676883, -6.697208695053258, -6.600445049283575, -6.519831387539383, -6.455612493593976, -6.407934025822396, -6.376842517201431, -6.362285375309612, -6.36411088232722, -6.381287515149129, -6.413008531528666, -6.459742401128868, -6.521770632018398, -6.599180401355229, -6.691864555386654, -6.79952160944928, -6.921655747969031, -7.057576824461144, -7.206400361530175, -7.367047550869994, -7.538245253263787, -7.718525998584054, -7.906227985792615, -8.099753826467976, -8.29894800377932, -8.502516477912176, -8.708747135704986, -8.915772781495876, -9.12157113712266, -9.323964841922836, -9.520621452733591, -9.709053443891799, -9.886618207234019, -10.0505180520965, -10.197800205315172, -10.325356811225664, -10.429924931663273, -10.509242694274901, -10.563124617947837, -10.590243943545273, -10.589740727333378, -10.56128123162757, -10.505057924792517, -10.42178948124214, -10.312720781439607, -10.179622911897338, -10.024793165177003, -9.851055039889525, -9.661758240695073, -9.460647126667864, -9.248484210392412, -9.027377880178593, -8.800615601726816, -8.571285307507699, -8.342275396762046, -8.116274735500868, -7.895772656505365, -7.6830589593269405, -7.480223910287188, -7.289158242477907, -7.11152734778165, -6.9483904249257264, -6.80045151960636, -6.668326268035488, -6.552526918389259, -6.453462330808045, -6.371437977396435, -6.306655942223234, -6.259214921321466, -6.2291102226883766, -6.216233766285424, -6.220045735099047, -6.239236728324175, -6.274137938862359, -6.325085252704138, -6.392229563353213, -6.475536771826453, -6.574787786653891, -6.689578523878725, -6.819319907057318, -6.9632378672592, -7.120373343067063, -7.289582280576766, -7.469535633397332, -7.658719362650954, -7.855619290226343, -8.059963378901333, -8.270766971196366, -8.486606756326628, -8.705823907023454, -8.926524079534246, -9.146577413622595, -9.363618532568202, -9.575046543166891, -9.778025035730618, -9.969482084087467, -10.14611024558165, -10.3043665610735, -10.440472554939493, -10.552356346863064, -10.63906505743021, -10.69833474145512, -10.728540915647725, -10.728702008585254, -10.698479360712229, -10.638177224340467, -10.548742763649079, -10.431766054684475, -10.289480085360351, -10.124760755457707, -9.941126876624832, -9.74262704374555, -9.529299146131443, -9.302810678944223, -9.066844954678926, -8.824885570142529, -8.580216406453953, -8.335921629044055, -8.09488568765564, -7.859793316343454, -7.63312953347418, -7.417179641726447, -7.214018230909568, -7.025163097976971, -6.851545744292793, -6.693952201430297, -6.553050292730022, -6.429389633299802, -6.323401630014749, -6.235399481517266, -6.16557817821704, -6.1140145022910435, -6.0806670276835355, -6.065006490935123, -6.065987350328593, -6.083855888450332, -6.118801031573438, -6.170864571821662, -6.239941167169406, -6.325778341441723, -6.427976484314318, -6.545988851313546, -6.679121563816418, -6.826533609050591, -6.987236840094377, -7.16009597587674, -7.343914270556231, -7.538181974375951, -7.742465066178709, -7.955989176337656, -8.177654987369648, -8.40603823393523, -8.639389702838658, -8.875635233027872, -9.11237571559452, -9.346887093773946, -9.57612036294519, -9.796701570630992, -10.004931816497788, -10.196816989822064, -10.370828640690364, -10.524398286970609, -10.653691289698742, -10.755581716924958, -10.827652343713696, -10.868194652143652, -10.876208831307766, -10.851403777313232, -10.794197093281491, -10.705715089348239, -10.58779278266341, -10.441343065899435, -10.267497888805787, -10.069789389187859, -9.851753949508923, -9.616920773699706, -9.368811887158405, -9.110942136750674, -8.846819190809638, -8.579943539135877, -8.313808492997438, -8.051900447666117, -7.797754585466976, -7.553852312253302, -7.322005783592637, -7.103842314261366, -6.900804378244723, -6.714149608736789, -6.544950798140497, -6.394095898067622, -6.262288019338793, -6.15004543198348, -6.057701565240005, -5.984875493197264, -5.930640461362261, -5.895014964238059, -5.877960628182321, -5.879358024868149, -5.899006671284084, -5.936625029734106, -5.991850507837634, -6.064239458529525, -6.1532671800600784, -6.258327915995029, -6.378456196120566, -6.512769761829688, -6.661698356131369, -6.825438944131511, -7.003875176621308, -7.196577390077255, -7.402802606661146, -7.621494534220067, -7.851283566286405, -8.090486782077845, -8.337107946497365, -8.58883751013325, -8.843052609259068, -9.096817065833694, -9.347569994447012, -9.59412944296327, -9.83274892586172, -10.059610516710844, -10.271081476082484, -10.463714251551842, -10.634246477697486, -10.779600976101339, -10.896885755348693, -10.983394011028194, -11.036604125731854, -11.054376746189545, -11.035964280250669, -10.981481428092648, -10.891633084516688, -10.767718335565634, -10.611630458523976, -10.42585692191785, -10.213479385515033, -9.978173700324945, -9.724209908598652, -9.45645224382886, -9.17896518092362, -8.894633096706848, -8.607587271780016, -8.321634549912252, -8.040240932010176, -7.766531576117909, -7.50329079741706, -7.252962068226739, -7.0176480180035306, -6.799110182191392, -6.598588931593856, -6.416735423783791, -6.254060552391942, -6.110961268943225, -5.987720582856733, -5.884507561445735, -5.801377329917677, -5.738271071374176, -5.695016026811027, -5.67127437894807, -5.6655102725116535, -5.6775845494007395, -5.707948517525475, -5.756876214411522, -5.824464407200071, -5.910632592647825, -6.015122997127014, -6.137500576625385, -6.277153016746208, -6.433290732708274, -6.604946869345892, -6.790977301108893, -6.990060632062631, -7.200910734942229, -7.42371379485179, -7.658210899008282, -7.903596072099213, -8.158658812260963, -8.421784091078777, -8.690952353586773, -8.963739518267936, -9.237316977054117, -9.508451595326038, -9.773505711913291, -10.028437139094333, -10.268799162596492, -10.491400960811863, -10.693637330924663, -10.870423292222078, -11.017440698571619, -11.13118837122147, -11.20898209880049, -11.248954637318214, -11.250055710164856, -11.212052008111302, -11.135527189309116, -11.02172743836465, -10.870602508052292, -10.684879710285756, -10.468415406276245, -10.225188259471134, -9.959299235553976, -9.674971602444502, -9.376550930298624, -9.068505091508428, -8.755424260702176, -8.44202091474431, -8.133004873574595, -7.831871448514517, -7.541354957475765, -7.263910052704116, -7.001711959888221, -6.756656478159602, -6.5303599800926575, -6.324159411704661, -6.139112292455757, -5.975996715248969, -5.835304604083793, -5.716292932033446, -5.618266622153557, -5.541123268810432, -5.4846970173036524, -5.448758563866075, -5.43301515566383, -5.4371105907963235, -5.460625218296235, -5.503075938129518, -5.563916201195403, -5.642209880626704, -5.737553207744417, -5.850409462841139, -5.981033543624884, -6.129462862922454, -6.295517348679427, -6.478799443960166, -6.678694106947816, -6.8943688109443, -7.124773544370328, -7.368640810765387, -7.624485628787749, -7.890606252489617, -8.165667036782889, -8.448417166714737, -8.736931137785636, -9.028896019245243, -9.3216114540924, -9.611989659075137, -9.89655542469067, -10.171446115185397, -10.432411668554902, -10.674814596543957, -10.893629984646518, -11.083445492105726, -11.238561291235479, -11.356698628218233, -11.435698067506443, -11.473017788368411, -11.46714724858019, -11.417607184425583, -11.32494961069615, -11.1907578206912, -11.017646386217796, -10.80926115759075, -10.570279263632631, -10.306409111673759, -10.022959356072608, -9.719411807629815, -9.40060185698769, -9.071976456287343, -8.738589231017, -8.405100480012, -8.075777175454807, -7.754492962874992, -7.444728161149251, -7.149569790892485, -6.871673364793906, -6.612653403950992, -6.373609663912343, -6.1554519244162105, -5.958899989390499, -5.784483686952766, -5.632542869410221, -5.503227413259728, -5.396497219187801, -5.3119750101434, -5.2485317259284585, -5.205989294556362, -5.1842662824151, -5.183197665645914, -5.202534830143294, -5.241945571554977, -5.301014095281951, -5.379241016478454, -5.476043360051969, -5.590754560663235, -5.722624084685755, -5.8711576359978634, -6.036776221242916, -6.219829022346376, -6.420375336478269, -6.638184576053179, -6.872736268730252, -7.123220057413194, -7.388535700250272, -7.667293070634313, -7.957812157202707, -8.258123063837402, -8.565966009664908, -8.879230201532385, -9.195610178693487, -9.511529581946435, -9.823139927036284, -10.126340741415417, -10.416779564243566, -10.68985194638779, -10.940701450422498, -11.164219650629425, -11.355046132997652, -11.507976092598339, -11.620243917269454, -11.688180652420217, -11.708958266995737, -11.681046402318996, -11.60421237209083, -11.479521162389942, -11.309335431672897, -11.097315510774123, -10.84841940290591, -10.56884241458601, -10.261310820095364, -9.929917318524744, -9.581070675529574, -9.220776265837811, -8.854636073249953, -8.487848690639026, -8.125209319950601, -7.771109772202781, -7.42953846748621, -7.104115616864463, -6.7973797834087275, -6.510922775651294, -6.24606957502629, -6.003887644894541, -5.785186930543568, -5.590519859187591, -5.420181339967528, -5.274208763950994, -5.152299765221021], [1.0, 1.2602660236168577, 1.5246335723524451, 1.7991441836578583, 2.089728465710837, 2.402034337231003, 2.741062813428148, 3.112108094933138, 3.5209056034597817, 3.9736319818048305, 4.476508624259135, 5.0358407583463, 5.6584509900370925, 6.351383862848584, 7.121905813858448, 7.977505173704959, 8.925778443221201, 9.963354240539273, 11.1014214855464, 12.355152644794467, 13.72930570570825, 15.218224176585434, 16.805837086596576, 18.465658985785158, 20.160789945067535, 21.84391555623297, 23.45754370283531, 24.927788026075323, 26.130471116352034, 26.938428538030376, 27.23522106634597, 26.91513468740514, 25.879224671434386, 24.060423345716178, 21.57025996397508, 18.552428513235164, 15.152118776873753, 11.516016334621394, 7.810398882381861, 4.3020344437607125, 1.1578489839938353, -1.527493297304403, -3.7170042314612246, -5.428463401599892, -6.710890706310459, -7.623971241460531, -8.234967983687026, -8.617721943580147, -8.829542700730316, -8.914353821913945, -8.910905518039147, -8.850385250725857, -8.75641773230583, -8.645357756192142, -8.530342010868546, -8.419156527828727, -8.317372099743235, -8.229513447955323, -8.159059222480957, -8.108442002008802, -8.078837290813777, -8.069230532403084, -8.078846414866488, -8.106927167931449, -8.152570116259975, -8.214727679448623, -8.292207372028502, -8.38367180346526, -8.487560486117289, -8.602025828043356, -8.725544330125395, -8.856498079629198, -8.993125453940417, -9.133521120564568, -9.275636037127033, -9.417277451373055, -9.556125604289676, -9.690394953873497, -9.817943815603948, -9.936401239313605, -10.04354934905263, -10.137323343088783, -10.215811493907406, -10.277255148211436, -10.320048726921405, -10.34273972517543, -10.344028712329223, -10.322680317834667, -10.278289927274846, -10.211537685984485, -10.123326943851147, -10.014763721135683, -9.887156708472236, -9.742017266868242, -9.58105942770442, -9.406199892734783, -9.219558034086635, -9.023455894260566, -8.820418186130464, -8.6132106562799, -8.405927040773786, -8.201681620145132, -8.002745402265768, -7.811223147172688, -7.629053367068048, -7.45800832631916, -7.299694041458496, -7.155550281183689, -7.02685056635753, -6.914702170007971, -6.820046117328123, -6.743657185676255, -6.685937836956949, -6.644732023758531, -6.619692282099529, -6.61111038970383, -6.619082629546092, -6.643509789851739, -6.684097164096964, -6.740354551008731, -6.811596254564771, -6.896941083993584, -6.995312353774438, -7.105437883637372, -7.225849998563191, -7.3548855287834725, -7.491509520338424, -7.636624499743727, -7.789643601403191, -7.949756754880583, -8.116032680399787, -8.287418888844805, -8.462741681759757, -8.640706151348883, -8.819896180476544, -8.998774442667212, -9.175682402105481, -9.348840313636066, -9.516347222763795, -9.676180965653618, -9.826554038916548, -9.966258371830582, -10.09254942083166, -10.202850520156446, -10.294919311231842, -10.366847742674974, -10.417062070293197, -10.444322857084096, -10.447724973235482, -10.426697596125404, -10.381004210322127, -10.310742607584155, -10.216344886860217, -10.098425065093105, -9.957214359092408, -9.795729209724989, -9.617434121942843, -9.425627050255322, -9.223439398729127, -9.01383602098832, -8.799615220214317, -8.583408749145882, -8.367681810079148, -8.154733054867592, -7.946694584922046, -7.745531951210701, -7.553062448511212, -7.372350275021708, -7.205951003678668, -7.055342134229806, -6.921720456087645, -6.8060020483295105, -6.708822279697546, -6.630535808598694, -6.571216583104713, -6.5306578409521645, -6.508372109542423, -6.503591205941669, -6.515266236880893, -6.54236935793654, -6.584662041739082, -6.641834188471432, -6.713477573309693, -6.799092105287347, -6.898085827295245, -7.009774916081612, -7.133383682252044, -7.268044570269512, -7.4127981584543585, -7.566593158984299, -7.728286417894421, -7.896809001087917, -8.07184479382068, -8.25239957483902, -8.437248831803542, -8.625057029452362, -8.814377609601102, -9.003652991142893, -9.19121457004837, -9.375282719365675, -9.553966789220462, -9.725265106815879, -9.887064976432594, -10.037142679428774, -10.173163474240098, -10.292681596379747, -10.393717216933542, -10.474517429523797, -10.532908639749504, -10.567153794173173, -10.575957016070056, -10.558463605428146, -10.514260038948176, -10.443373970043618, -10.346274228840688, -10.223870822178338, -10.077514933608263, -9.9089989233949, -9.72055541490668, -9.515052647015864, -9.29626299993238, -9.06794955806303, -8.833682932642184, -8.596841261731788, -8.360610210221353, -8.12798296982796, -7.901760259096263, -7.684550323398485, -7.478768934934419, -7.286639392731429, -7.110192522644447, -6.951117403278269, -6.809815006407505, -6.6871417510202, -6.583890496458093, -6.500572878873887, -6.4374193112312525, -6.394378983304827, -6.371119861680209, -6.367028689753966, -6.38121098773363, -6.4124910526377, -6.459411958295636, -6.520442835165364, -6.595773970637356, -6.68521603668008, -6.788256273723043, -6.904308120981534, -7.032711216456628, -7.172731396935186, -7.32356069798985, -7.4843173539790495, -7.654045798046997, -7.831716662123689, -8.016226776924908, -8.206489615020677, -8.40188983596458, -8.601032770647816, -8.802271293580354, -9.00387051321159, -9.204007771930334, -9.40077264606482, -9.592166945882699, -9.776104715591044, -9.950412233336351, -10.11282801120453, -10.261002795220914, -10.392499565350258, -10.504793535496736, -10.595272153503942, -10.661656556610017, -10.7023287550876, -10.71592436965587, -10.701525286207318, -10.658659670044681, -10.587301965880943, -10.48787289783934, -10.36123946945335, -10.208714963666708, -10.032058942833391, -9.833477248717626, -9.61562200249389, -9.381760042433546, -9.136730589106863, -8.884701654725426, -8.629424742690311, -8.374436252987152, -8.123057482186137, -7.8783946234420235, -7.643338766494116, -7.420565897666283, -7.212536899866954, -7.021497552589114, -6.849478531910307, -6.698293466777031, -6.5677500260037025, -6.457323244134125, -6.3676369078951565, -6.2990410891210535, -6.251612144753469, -6.225152716841455, -6.219191732541458, -6.232984404117324, -6.265512228940295, -6.315482989489012, -6.381330753349513, -6.46121587321523, -6.554336972331245, -6.661382332747329, -6.781849389615288, -6.915149003489203, -7.06061622390393, -7.21751028937509, -7.385014627399081, -7.5622368544530705, -7.748208775994998, -7.9418863864635725, -8.142149869278278, -8.347803596839364, -8.557980380467752, -8.77180291844666, -8.987123441878142, -9.201725457844521, -9.41336194016083, -9.61975532937476, -9.818597532766685, -10.007549924349647, -10.184243344869369, -10.346278101804243, -10.491223969365343, -10.61662018849641, -10.71997546687387, -10.798767978906813, -10.850445365737016, -10.872415921555946, -10.86210051369038, -10.81948893533838, -10.74564738686183, -10.641874284474355, -10.50970026024133, -10.35088816207987, -10.167433053758835, -9.961562214898827, -9.735735140972196, -9.492643543303032, -9.23521134906717, -8.96659470129219, -8.690856814291855, -8.415235446305326, -8.143734357145652, -7.879551058515536, -7.625627433122485, -7.384649734678811, -7.159048587901633, -6.9509989885128745, -6.762420303239267, -6.594976269812345, -6.45007499696845, -6.328868964448729, -6.2321665349566615, -6.157526038713206, -6.103798228987777, -6.071128723577401, -6.059443944848854, -6.06845111973866, -6.097638279753093, -6.146274260968172, -6.213408704029669, -6.297872054153102, -6.39827556112374, -6.513011279296599, -6.640252067596444, -6.778354611239248, -6.9284279723473325, -7.0903909821508995, -7.2636388759413, -7.44744373552113, -7.640954489204228, -7.843196911815676, -8.053073624691802, -8.26936409568017, -8.490724639139597, -8.715688415940136, -8.942665433463088, -9.169942545600993, -9.395884592822021, -9.619835591874702, -9.83847389384135, -10.04808456902251, -10.245191467619236, -10.426557219733079, -10.5891832353661, -10.730309704420868, -10.847415596700452, -10.93821866190843, -11.000675429648885, -11.032981209426403, -11.03357009064608, -11.00111494261351, -10.9345274145348, -10.831400288699085, -10.690255494193734, -10.516649717766903, -10.315996399405586, -10.093247839368521, -9.852895198186172, -9.598968496660746, -9.335036615866178, -9.06420729714815, -8.78912714212407, -8.511981612683083, -8.234495030986075, -7.957930579465664, -7.683463094810176, -7.420063878312348, -7.173362379680764, -6.9456684645484, -6.738883840036248, -6.554502054753318, -6.393608498796637, -6.256880403751252, -6.144586842690225, -6.056588730174638, -5.992338822253589, -5.950881716464195, -5.930854310369259, -5.9311418712442325, -5.9512314668624295, -5.990563399909557, -6.0484966217145235, -6.124308732249446, -6.217195980129641, -6.32627326261363, -6.450574125603138, -6.589050763643094, -6.740574019921631, -6.903933386270086, -7.078459295575534, -7.264134734746131, -7.460418754846489, -7.6665909944080255, -7.881752468100064, -8.104825566729835, -8.334554057242476, -8.569503082721031, -8.808059162386451, -9.048430191597596, -9.288645441851227, -9.526555560782018, -9.759832572162548, -9.985969875903303, -10.202282970655363, -10.406749182970033, -10.595972282718538, -10.765607285317683, -10.911798558862214, -11.031179824124822, -11.120874154556127, -11.1784939762847, -11.202141068117047, -11.19040656153761, -11.142370940708778, -11.057604042470873, -10.936165056342162, -10.777692242489884, -10.582569593871934, -10.356504283511086, -10.105154784297792, -9.833798314820402, -9.547330839365184, -9.250267067916301, -8.946740456155826, -8.64050320546374, -8.334926262917925, -8.032999321294175, -7.7373308190661865, -7.450453707025828, -7.179245738589397, -6.927865561967064, -6.698522820648053, -6.492961086315876, -6.312457858848336, -6.157824566317523, -6.029406564989818, -5.927083139325892, -5.850267501980702, -5.797906793803497, -5.768482105676627, -5.760568271186873, -5.773560441437439, -5.806793236164028, -5.859545743910568, -5.9310415220292185, -6.02044859668037, -6.126879462832641, -6.24939108426288, -6.386984893556166, -6.5386067921058055, -6.703147150113336, -6.87969969613766, -7.068213675330882, -7.268288618858554, -7.479311277695299, -7.70048389880777, -7.930824225154646, -8.169165495686638, -8.414156445346489, -8.664261305068962, -8.917759801780859, -9.172747158401009, -9.427134093840266, -9.678646823001516, -9.924827056779678, -10.163032002061696, -10.390811590888177, -10.605325247384346, -10.801767671003725, -10.975703831997713, -11.123196013051032, -11.24080380928174, -11.325584128241218, -11.37509118991418, -11.387376526718667, -11.360988983506047, -11.294974717561017, -11.188877198601604, -11.042262232220867, -10.853583381015124, -10.628315564187176, -10.372833016851656, -10.093055681059026, -9.794449205795576, -9.482024946983433, -9.160339967480557, -8.833497037080729, -8.505144632513577, -8.17847693744455, -7.85623384247493, -7.5407903010030894, -7.239655168925597, -6.958826634744016, -6.700901214449172, -6.467952732624536, -6.261532322446217, -6.08266842568297, -5.931866792696189, -5.809110482439911, -5.713859862460816, -5.645052608898224, -5.601103882022646, -5.580407741761831, -5.582162607431239, -5.605593233580322, -5.6498736179106155, -5.714127001275738, -5.7974258676813895, -5.898791944285355, -6.0171962013975016, -6.151558852479781, -6.300749354146224, -6.46358640616295, -6.639406741704176, -6.828312811079023, -7.029888971805326, -7.243554498414342, -7.4685669335273985, -7.704022087855896, -7.948854040201311, -8.20183513745519, -8.461575994599151, -8.726525494704894, -8.994970788934182, -9.26503729653886, -9.534688704860836, -9.801726969332101, -10.064099037521494, -10.320065062194947, -10.564546842435643, -10.792408054358987, -10.998954454279172, -11.1799338787092, -11.331536244360855, -11.450393548144728, -11.5335798671702, -11.578611358745452, -11.583446260377457, -11.546484889771984, -11.466569644833601, -11.342985003665673, -11.17316494367021, -10.957237021758457, -10.703400931796075, -10.419312230621246, -10.11188554613122, -9.787294577282294, -9.450972094089831, -9.107609937628244, -8.761159020031009, -8.414829324490654, -8.07108990525877, -7.731668887645998, -7.39791824239769, -7.080274685960744, -6.785641599731247, -6.516639369418936, -6.275297930586426, -6.063056768649204, -5.88076491887563, -5.728680966386937, -5.606473046157235, -5.513218843013503, -5.447405591635597, -5.407013808592985, -5.390790291661755, -5.397886530448421, -5.427355115682728, -5.478217076152157, -5.549461878701931, -5.640047428235003, -5.748900067712068, -5.874914578151554, -6.016954178629629, -6.173850526280194, -6.344622508150169, -6.529388742166002, -6.727884120971334, -6.939624874707443, -7.163986482710667, -7.400203673512407, -7.647370424839124, -7.9044399636123375, -8.170224765948632, -8.443396557159645, -8.722486311752084, -9.00588425342771, -9.29183985508335, -9.578461838810886, -9.863919016332197, -10.14629252834597, -10.420695242656265, -10.682089979068808, -10.925723019366371, -11.147124107308706, -11.342106448632657, -11.506766711052082, -11.63748502425787, -11.73092497991795, -11.784033631677277, -11.794041495157844, -11.758462547958676, -11.675094229655835, -11.537916295668772, -11.347582271857162, -11.11304341148178, -10.842398597024781, -10.54288284088559, -10.220867285380901, -9.881859202744685, -9.530501995128184, -9.170575194599909, -8.80499446314565, -8.435811592668465, -8.064214504988682, -7.690849286474466, -7.329154575590641, -6.989181938595335, -6.674338740212094, -6.387375771709541, -6.130387250901381, -5.904810822146395, -5.711427556348447, -5.550361950956474, -5.4210819299645, -5.322398843911623, -5.252460027376549, -5.209329906626082, -5.191895562559699, -5.199094359006064, -5.229812353930988, -5.282884299437433, -5.357093641765511, -5.451172521292482, -5.563801772532755, -5.693610924137893, -5.839178198896603, -5.999485546176893, -6.1749533446918905, -6.365250576713241, -6.569889636058173, -6.788301707723719, -7.019836767886719, -7.263763583903817, -7.519269714311461, -7.785461508825907, -8.061364108343215, -8.345921444939247, -8.637996241869677, -8.936370013569977, -9.239784069824628, -9.54617325660569, -9.851925873766296, -10.153233381531896, -10.44619829696377, -10.726834193959023, -10.991065703250598, -11.234728512407266, -11.453569365833626, -11.643246064770114, -11.79932746729299, -11.91729348831435, -11.99253509958212, -12.020341526338406, -11.995856076418105, -11.918524015819608, -11.78984726226535, -11.611874295816039, -11.387200158870659, -11.118966456166469, -10.810861354779007, -10.467119584122084, -10.09252243594779, -9.692397764346488, -9.272619985746818, -8.842791447580229, -8.414007867448321, -7.9927786160055945, -7.58496958296014, -7.195824243506355, -6.8299636583249335, -6.491386473582882, -6.183468920933503, -5.908964817516406, -5.670005565957505, -5.468097611837334, -5.301067954476938, -5.1662913287132355, -5.06339368590343, -4.991680225352757, -4.95013539431448, -4.937422887989895, -4.951885649528325, -4.991545870027125, -5.054104988531678, -5.136943692035398, -5.237121915479728, -5.353267571627883, -5.487004990816794, -5.637699540115593, -5.804690479244338, -5.98736067666767, -6.185136609594812, -6.397488363979571, -6.623929634520341, -6.8640177246600915, -7.117353546586385, -7.38358162123136, -7.662128138315135, -7.951813375463027, -8.251819809086625, -8.560979218074547, -8.87772177366964, -9.20007603946898, -9.525668971423869, -9.851725917839833, -10.175070619376626, -10.49212520904823, -10.798910212222856, -11.091044546622935, -11.363745522325134, -11.611828841760337, -11.830272920331069, -12.014522365697761, -12.157840545665747, -12.254452254099245, -12.299795006117034, -12.290519038092453, -12.224487307653401, -12.100775493682335, -11.919671996316271, -11.682677936946787, -11.392507158220019, -11.052116709992072, -10.667467794307786, -10.249416980918834, -9.808098527087479, -9.352763175551246, -8.89177815452293, -8.4326271776906, -7.981910444217588, -7.545344638742498, -7.127762931379201, -6.733114977716838, -6.366669484673502, -6.034391415374654, -5.738534846927349, -5.480516531853708, -5.260944254532192, -5.079616831197608, -4.935524109941106, -4.826846970710178, -4.750957325308656, -4.70442294805911, -4.6851938683944825, -4.6924833176833, -4.724691004332686, -4.780299897896631, -4.857876229075999, -4.956069489718522, -5.073612432818802, -5.209321072518314, -5.3620946841054025, -5.530941138008486, -5.715771871371197, -5.916507442100515, -6.132760594246079, -6.364092400593757, -6.610012262665641, -6.8699779107200545, -7.143395403751551, -7.429619129490908, -7.727951804405137, -8.037644473697473, -8.357896511307382, -8.68785561991056, -9.026617830918926, -9.373050286036905, -9.724041756314113, -10.075593606717838, -10.423523625032173, -10.763400350186938, -11.090543072257676, -11.400021832465658, -11.686657423177877, -11.945021387907056, -12.169436021311645, -12.353974369195814, -12.492460228509463, -12.57846814734822, -12.605528639462083, -12.570306152390364, -12.47215661894242, -12.311523250135087, -12.089925135943796, -11.809957245302575, -11.47529042610405, -11.090671405199439, -10.661922788398563, -10.195943060469833, -9.700976672739598, -9.190700926987523, -8.676552134807087, -8.167630373609004, -7.672129662307604, -7.197337961320841, -6.749637172570283, -6.334503139481125, -5.956505646982177, -5.61930842150587, -5.325669130988256, -5.074479502114936, -4.862975121237278, -4.6910054810912, -4.557880517063618, -4.462366356560629, -4.402685319007517, -4.376515915848748, -4.3809928505479725, -4.412707018588023, -4.467705507470919, -4.54152034583346, -4.634002730964389, -4.746293164474873, -4.877321809125977, -5.026169415787947, -5.192067323440208, -5.374397459171372, -5.57269233817923, -5.786635063770756, -6.016059327362106, -6.260949408478616, -6.521111352137295, -6.796257083635316, -7.086393689709154, -7.391226411141468, -7.710152447523238, -8.042260957253763, -8.386333057540664, -8.740841824399881, -9.103952292655672, -9.473521455940618, -9.84709826669562, -10.221923636169894, -10.594934259892757, -10.964229490908384, -11.32380761796862, -11.665173530328484, -11.980383225548307, -12.262043809493726, -12.503313496335684, -12.697901608550435, -12.84006857691954, -12.92462594052987, -12.946936346773601, -12.902913551348218, -12.789022418256518, -12.601901476398178, -12.331646960013135, -11.987984637992938, -11.587080896526668, -11.14310954765855, -10.668251829287964, -10.172696405169427, -9.664639364912617, -9.150284223982348, -8.633841923698592, -8.117530831236465, -7.601576739626229, -7.089092421935404, -6.605795021703842, -6.16022490431683, -5.756443490740766, -5.397277069620126, -5.084316797277461, -4.817918697713395, -4.597203662606633, -4.42005745131395, -4.2831308309077745, -4.183084522948512, -4.117815993041674, -4.084995885539322, -4.0823382647927655, -4.1076006151525615, -4.158583840968515, -4.233132266589678, -4.3291336363643484, -4.444519114640073, -4.577534007513342, -4.72830182530277, -4.896307991750897, -5.080928074125314, -5.281671956963393, -5.498183842072281, -5.730242248528901, -5.977760012679955, -6.240784288141921, -6.5194965458010525, -6.814212573813382, -7.12535453381525, -7.451947437332835, -7.793358552646696, -8.149256509940123, -8.51874371628088, -8.900356355621208, -9.292064388797817, -9.691271553531896, -10.094815364429103, -10.498967112979567, -10.899431867557901, -11.29134847342318, -11.669289552718963, -12.028263535113997, -12.361190880625577, -12.65784545317771, -12.908972413312696, -13.106352250267278, -13.242800781972637, -13.312169155054395, -13.309343844832616, -13.230246655321805, -13.071834719230907, -12.830853983037333, -12.50391272228022, -12.103382631585484, -11.642752073139667, -11.134418125884503, -10.589686585516922, -10.01877196448906, -9.430797492008248, -8.833795114037006, -8.234705493293069, -7.639533159485056, -7.065524554901114, -6.527108657850594, -6.030569848529395, -5.580684154178877, -5.180719249085869, -4.832434454582659, -4.536080739047, -4.290400717902106, -4.092628653616661, -3.9388290219065185, -3.8257903502211756, -3.7506944313429216, -3.710724223691946, -3.7030656168560054, -3.7249074315904194, -3.7734414198180737, -3.8458622646294187, -3.939367580282471, -4.051570877802729], [1.0, 0.9848771469249452, 0.9730975826471474, 0.9651532309165722, 0.9617570252901997, 0.963904606417799, 0.9727601655196005, 0.9899192304647947, 1.0174647047259775, 1.057966867379151, 1.1149430227324708, 1.192078097761772, 1.2939084534994867, 1.426829887582959, 1.5990977215072504, 1.8208268006251416, 2.1040149031683373, 2.465412055835648, 2.922781261820937, 3.49573286187271, 4.208308411941916, 5.088980683181951, 6.170653661948647, 7.490662549800286, 9.09077376349759, 11.017184935003726, 13.319676765062745, 16.013277922693206, 19.09891690146636, 22.550897700579338, 26.2987607072238, 30.22728269658591, 34.17901791860924, 37.96377819776274, 41.34061632404104, 44.11812871543175, 46.17182900435874, 47.444148037682076, 47.94000011753252, 47.713774612350996, 46.889140761025594, 45.613943439583586, 44.05463346215421, 42.37201395635693, 40.660443799954486, 38.9965470513804, 37.4331847014341, 35.9991779015414, 34.70351752958226, 33.54253091085396, 32.508733317624525, 31.592170937477576, 30.780420873312334, 30.058848526828932, 29.415834904267893, 28.841831398114252, 28.327962708366236, 27.86656712596843, 27.45119653281176, 27.076616401733492, 26.738618905143927, 26.433630643943474, 26.16005009540578, 25.9165303736676, 25.701749830721077, 25.514412056413693, 25.353245878448316, 25.21700536238317, 25.104701810355778, 25.0169179595198, 24.954221182698806, 24.916877282929516, 24.904914058529055, 24.91812130309493, 24.956050805505043, 25.018016349917684, 25.103097771179424, 25.21056131213016, 25.340034671251278, 25.4908023921227, 25.661758497642236, 25.851406490025568, 26.057859350806265, 26.278839540835765, 26.511679000283397, 26.753319148636365, 27.00031088469975, 27.249519007573898, 27.498387658084113, 27.742954277839182, 27.979502196412305, 28.204623473716573, 28.41521890000498, 28.60849799587041, 28.78197901224565, 28.933488930403378, 29.06116346195617, 29.1634470488565, 29.23909286339674, 29.28719706759695, 29.308294314876285, 29.30267143749045, 29.2704165965432, 29.211988779234215, 29.1282177988591, 29.020304294809367, 28.889819732572445, 28.738706403731687, 28.56927742596635, 28.384216743051624, 28.186579124858607, 27.97979016735431, 27.767421643164862, 27.549988846231564, 27.328623964844226, 27.105146003666924, 26.88134098514783, 26.658961949519192, 26.439728954797353, 26.225329076782735, 26.01741640905985, 25.817612062997295, 25.627504167747745, 25.448647870247967, 25.28256533521882, 25.130745745165235, 24.99412039865892, 24.872806946985882, 24.768237352414825, 24.681757965831324, 24.614549030546524, 24.56762468229713, 24.541832949245425, 24.53785575197926, 24.55620890351206, 24.597242109282814, 24.661138967156077, 24.747916967421983, 24.857427492796226, 24.989355818420083, 25.14318370401779, 25.317902475301963, 25.512145595029583, 25.72428742080819, 25.952439495364818, 26.194450546546, 26.44790648731778, 26.710130415765683, 26.978182615094745, 27.24886055362951, 27.518698884814, 27.783969447211756, 28.04068126450581, 28.28464462943248, 28.512415509089394, 28.720885302650096, 28.907253469400995, 29.069153078788577, 29.204650810419388, 29.31224695406003, 29.39087540963718, 29.439903687237575, 29.45913290710802, 29.448797799655384, 29.409566705446597, 29.342541575208664, 29.249271132548284, 29.132487143298317, 28.994216410291685, 28.83595844433886, 28.659409107360958, 28.46646061238972, 28.259201523567526, 28.039916756147385, 27.81108757649294, 27.57539160207847, 27.33570280148888, 27.095091494419716, 26.856824351677158, 26.62273073121497, 26.392328058983196, 26.16728069324852, 25.949242982331707, 25.739798436189886, 25.540459726416568, 25.352668686241643, 25.177796310531367, 25.017142755788374, 24.871937340151675, 24.743338543396654, 24.632434006935068, 24.54005524278408, 24.466504595347423, 24.41326528597613, 24.381739953037894, 24.373067812158077, 24.388124656219745, 24.427522855363627, 24.49161135698815, 24.580475685749427, 24.693937943561245, 24.831556809595078, 24.99262754028009, 25.176181969303123, 25.380988507608706, 25.60555214339906, 25.84844205379741, 26.10728060852878, 26.378647011639956, 26.659090747432575, 26.94513575647864, 27.233280435620514, 27.51999763797092, 27.801734672912943, 28.07491330610003, 28.335929759455993, 28.581154711175, 28.80693329572158, 29.009586364959773, 29.185815703674564, 29.33347062995168, 29.45097200580437, 29.53719340656525, 29.591461120886304, 29.613554150738864, 29.60370421141364, 29.562595731520695, 29.491365852989464, 29.391604431068743, 29.265354034326684, 29.11510994465081, 28.943839659100696, 28.754527139725514, 28.549322507283595, 28.330332272009365, 28.099722973098473, 27.859721178707762, 27.612613485955286, 27.360746520920316, 27.106526938643313, 26.852421423125957, 26.600956687331134, 26.354719473182932, 26.116063160155694, 25.88506098444689, 25.662929637018614, 25.451243176913174, 25.251509246399937, 25.06516907097537, 24.893597459362987, 24.738102803513403, 24.599927078604292, 24.480245843040404, 24.380168238453575, 24.300736989702703, 24.242778974905214, 24.206380352441712, 24.19297602568387, 24.203972358624757, 24.24043197591605, 24.303073762868028, 24.39227286544956, 24.508060690288115, 24.65012490466977, 24.81780943653919, 25.01011447449964, 25.225696467812995, 25.462868126399712, 25.719598420838853, 25.993512582368087, 26.2826143036312, 26.5835531766993, 26.891738206174853, 27.202733293923867, 27.51225729043882, 27.816183994838678, 28.11054215486887, 28.391515466901318, 28.65544257593441, 28.898817075593016, 29.118287508128486, 29.310657364418645, 29.47289632791922, 29.602664086287245, 29.698663993805575, 29.760130939580947, 29.786791192805048, 29.77886240275454, 29.737053598791064, 29.662565190361203, 29.557088966996528, 29.422808098313563, 29.262397134013803, 29.07902200388371, 28.876339363087883, 28.657525441317016, 28.424671311484847, 28.180067679402732, 27.926010131825823, 27.66479913645308, 27.398740041927255, 27.130143077834905, 26.861323354706386, 26.594600864015852, 26.332300478181267, 26.076751950564386, 25.830289915470765, 25.5941637670051, 25.36872969694535, 25.1555465854691, 24.956122670479818, 24.771905356674527, 24.60428121554379, 24.454575985371704, 24.324054571235916, 24.21392104500761, 24.125318645351502, 24.059329777725864, 24.0169760143825, 23.99846514904419, 24.003737275719182, 24.03462321313836, 24.092570126924354, 24.178570436394015, 24.2931618145584, 24.436427188122796, 24.607994737486695, 24.807037896743815, 25.032275353682074, 25.28197104978363, 25.55393418022483, 25.845519193876253, 26.153625793302698, 26.474698934763165, 26.804753152945423, 27.14084441298729, 27.478088805009104, 27.81063191891968, 28.133110026501907, 28.440650081412755, 28.72886971918327, 28.99387725721857, 29.232271694797856, 29.4411427130744, 29.61807067507555, 29.761126625702737, 29.86887229173146, 29.940402746282626, 29.975413186962673, 29.97379114454032, 29.93590532296603, 29.86264907495816, 29.755440402003014, 29.616221954354796, 29.44746103103565, 29.252149579835635, 29.033804197312726, 28.796466128792833, 28.54470126836977, 28.283502767093108, 28.014256682750073, 27.73802543918289, 27.45712770878458, 27.17381834909216, 26.890288402786634, 26.60866509769301, 26.331011846780285, 26.05932824816145, 25.795550085093495, 25.5415493259774, 25.299134124358144, 25.07004881892469, 24.855800310972494, 24.656883605078715, 24.474700716129774, 24.31078582283852, 24.166591480316846, 24.043488620075724, 23.942766550025176, 23.865632954474282, 23.81321389413118, 23.786553806103075, 23.786615503896222, 23.814280177415945, 23.87034739296662, 23.95536020382343, 24.068472446424327, 24.21021882251659, 24.381057676848535, 24.580883653348412, 24.8090276951244, 25.064257044464604, 25.34477524283707, 25.64822213088976, 25.971673848450575, 26.31164283452734, 26.664077827307814, 27.02436386415968, 27.387322281630567, 27.74721071544801, 28.09847907246273, 28.4366746624753, 28.75605326370608, 29.05148393331419, 29.31855782425368, 29.55358818527352, 29.753610360917598, 29.91638179152473, 30.04038201322866, 30.12481265795804, 30.169597453436452, 30.175382223182414, 30.14353488650934, 30.076128075831708, 29.975086907146668, 29.84185287978836, 29.678214356073116, 29.486324916429663, 29.268703359399115, 29.02823370163497, 28.768165177903118, 28.492112241081834, 28.204054562161783, 27.90833703024602, 27.60966975254998, 27.311854257489767, 27.013784473613573, 26.71718262172595, 26.424125418146254, 26.1365947573654, 25.856477712045894, 25.585566533021808, 25.32555864929879, 25.078056668054067, 24.84456837463643, 24.626506732566252, 24.425189883535484, 24.24151878542113, 24.07675552495111, 23.93269731711047, 23.811004267169196, 23.71319860851648, 23.640664702660697, 23.59464903922943, 23.576260235969457, 23.58646903874675, 23.62610832154648, 23.695873086473018, 23.79632046374992, 23.92786971171996, 24.09080221684509, 24.285261094700495, 24.51043752470784, 24.76471366475499, 25.046443671074254, 25.35347599573384, 25.68315338663787, 26.032312887526352, 26.397285837975215, 26.77389787339628, 27.157468925037275, 27.542813219981838, 27.9242392811495, 28.29554992729571, 28.65030027462379, 28.982934650402594, 29.28825763613634, 29.561762830398344, 29.79967703965643, 29.99896027827295, 30.157305768504774, 30.27313994050329, 30.345622432314414, 30.374646089878567, 30.360836967030703, 30.30555432550029, 30.210985169157013, 30.080997613516338, 29.918151058657504, 29.72473975000572, 29.50338134906225, 29.25701693340439, 28.9889109966855, 28.702651448634985, 28.40214961505829, 28.091640237836913, 27.775681474928405, 27.459154648158272, 27.14366800663992, 26.829015735705184, 26.51736054987479, 26.210763678668652, 25.911184866605847, 25.620482373204638, 25.34041297298246, 25.072631955455925, 24.818693125140825, 24.580048801552117, 24.35804981920394, 24.153799207736032, 23.96843072887067, 23.80374788888367, 23.66147455252546, 23.543220245260443, 23.450480153267012, 23.384635123437533, 23.346951663378363, 23.33858194140983, 23.36056378656626, 23.41382068859595, 23.499161797961182, 23.61728192583822, 23.768761544117318, 23.9540667854027, 24.17310095605422, 24.424225558819497, 24.70617191059948, 25.017158173114165, 25.35480230397669, 25.71612205669337, 26.097534980663653, 26.49485842118017, 26.90330951942869, 27.317505212488143, 27.731462233330625, 28.13859711082138, 28.531838204065405, 28.90485790544642, 29.25154716749415, 29.566444400903166, 29.844922353721426, 30.083188111350275, 30.278283096544442, 30.428083069412036, 30.53129812741457, 30.58747270536692, 30.596985575437362, 30.561049847147554, 30.481733045497126, 30.362765868578162, 30.207019025282975, 30.016884035284882, 29.795131148119044, 29.54490934318249, 29.26974632973408, 28.973548546894538, 28.66060116364644, 28.335568078834203, 28.00349192116411, 27.66979070662866, 27.336080520452942, 27.002180933189393, 26.67039364251919, 26.342902179430492, 26.021771908218433, 25.708950026485137, 25.406265565139698, 25.115429388398198, 24.83803419378369, 24.575554512126224, 24.329346707562816, 24.10058204639227, 23.890698655707716, 23.701405132680364, 23.534349968337303, 23.391120301209234, 23.273241917330456, 23.182179250238864, 23.119335380975947, 23.086052038086798, 23.08360959762011, 23.11322708312817, 23.17606216566686, 23.27321116379567, 23.40570904357768, 23.574193430416805, 23.777403167053585, 24.0153774728469, 24.287803514845614, 24.59362644767597, 24.931049413541594, 25.297533542223498, 25.689797951080084, 26.103819745047133, 26.53483401663781, 26.977333845942667, 27.42507030062964, 27.87105243594405, 28.307547294708606, 28.726827061092205, 29.122399314757228, 29.487651960955578, 29.816877484865884, 30.105308964114723, 30.349120068776624, 30.54542506137407, 30.69227879687749, 30.788676722705272, 30.834554878723747, 30.830789897247207, 30.779199003037895, 30.682559041699996, 30.544550250933227, 30.367996771184455, 30.15571740630238, 29.91090449665278, 29.637123919118498, 29.338315087099453, 29.018790950512628, 28.68323799579208, 28.336716245888937, 27.984659260271393, 27.6322685706604, 27.279092354453773, 26.92654634515763, 26.576961637977476, 26.23253648214554, 25.895336280920745, 25.567293591588736, 25.250208125461857, 24.94574674787917, 24.655443478206443, 24.38069948983615, 24.122791381881623, 23.883134162215562, 23.663360374992685, 23.465091230868055, 23.289925826598438, 23.13944114504232, 23.015192055159886, 22.918711312013034, 22.851509556765375, 22.81507531668223, 22.810875005130622, 22.84035292157929, 22.90493125159868, 23.006010066860956, 23.1445802038922, 23.319525189342706, 23.531838122781988, 23.782217065457683, 24.070495414107434, 24.395641900958793, 24.755760593729377, 25.14809089562675, 25.569007545348477, 26.014020617082092, 26.477775520505123, 26.954053000785073, 27.435769138579445, 27.914975350035707, 28.38462520047641, 28.83721846062994, 29.263879557816747, 29.65694204431343, 30.00995231011526, 30.31766958293618, 30.576065928208784, 30.782326249084342, 30.934848286432796, 31.03324261884274, 31.078332662621442, 31.072154671794838, 31.017904804860898, 30.91718696904898, 30.771396049459895, 30.58321011355317, 30.3558393971852, 30.0930263046092, 29.799045408475244, 29.478703449830256, 29.137339338117997, 28.780824151179072, 28.415561135250947, 28.047710241290076, 27.676575568899732, 27.30371005237484, 26.931713063318405, 26.563017833443894, 26.199891454575173, 25.844434878646563, 25.4985829177028, 25.16410424389906, 24.842601389500942, 24.535510746884476, 24.2441721219059, 23.97011491853589, 23.714849814688353, 23.479902225564384, 23.266820986400752, 23.07717835246993, 22.912569999080066, 22.774615021575013, 22.664955935334298, 22.585258675773147, 22.53721259834247, 22.52253047852887, 22.54294851185464, 22.599676129721136, 22.692315306591546, 22.82332806720635, 22.994800527593217, 23.20798035701155, 23.46327677795251, 23.760260566139006, 24.09766405052568, 24.473381113298927, 24.88446718987689, 25.32713926890946, 25.796775892278262, 26.287917155096682, 26.794293709007253, 27.31077243900264, 27.828569830396265, 28.337394060583506, 28.827899205232274, 29.291685238283016, 29.721298031948713, 30.110229356714893, 30.452916881339604, 30.744744172853444, 30.98204069655954, 31.16208181603356, 31.282811478800227, 31.34338757437885, 31.344480781368514, 31.287675096767252, 31.175465388938015, 31.011257397608677, 30.79936773387203, 30.545023880185795, 30.254364190372605, 29.93443788962002, 29.593202303068885, 29.23526652052569, 28.86235425836991, 28.47809915276637, 28.085951739004212, 27.689179451496894, 27.290866623782193, 26.893914488522203, 26.50104117750332, 26.114781721636273, 25.7374880509561, 25.37132899462215, 25.017816385793523, 24.677693430641774, 24.352399768154594, 24.043417308314744, 23.75225125237574, 23.480430092861873, 23.229505613568193, 23.00105288956052, 22.796670287175434, 22.61797946402029, 22.4666253689732, 22.343817220395945, 22.25056776036687, 22.18969734970125, 22.163800593181797, 22.17513002706929, 22.225596119102615, 22.316767268498737, 22.44986980595271, 22.62578799363768, 22.845064025204877, 23.10789802578363, 23.414148051981343, 23.763330091883518, 24.154618065053736, 24.586680641032537, 25.055718546164737, 25.556007783815623, 26.081289294439184, 26.62479762514694, 27.179260929707937, 27.73690096854875, 28.28943310875348, 28.82806632406377, 29.343503194878767, 29.825939908255172, 30.264895381707532, 30.651822991644373, 30.98155727826351, 31.25015159731543, 31.454820516561664, 31.593939815774768, 31.667046486738336, 31.674838733246997, 31.619175971106408, 31.50307882813327, 31.330729144155313, 31.10877259335725, 30.844289251211606, 30.542001447782148, 30.206757607460094, 29.843553089407273, 29.457530187556127, 29.053978130609707, 28.638333082041687, 28.216178140096304, 27.79323387584796, 27.371589797903482, 26.951763466102868, 26.536161363382007, 26.127020113673055, 25.726406481904444, 25.33621737400086, 24.958179836883268, 24.593851058468896, 24.244618367671237, 23.911717696910962, 23.596785711772025, 23.301311650611915, 23.02666073121178, 22.774290254676714, 22.54574960543576, 22.34268025124192, 22.166815743172126, 22.019981715627274, 21.90409588633221, 21.821168056335722, 21.773300110010542, 21.762686015053365, 21.79161182248483, 21.861891770248757, 21.973254144808422, 22.128767366432534, 22.331158626424155, 22.582156190320582, 22.88248939789334, 23.23188866314818, 23.629085474325088, 24.071812393898277, 24.556803058576197, 25.079792179301517, 25.635515541251152, 26.21771000383623, 26.820426183808795, 27.434829760616918, 28.04816748523886, 28.648601948407507, 29.225269014054035, 29.76827781930791, 30.268710774496903, 30.71862356314705, 31.1110451419827, 31.43997774092649, 31.70031276481095, 31.887364961226723, 32.00011777910755, 32.039429722907435, 32.00733071264011, 31.907022083879006, 31.742876587757284, 31.520438390967815, 31.2464230757632, 30.928717639955742, 30.57638049691747, 30.196964659255137, 29.79430348478013, 29.372991456253143, 28.937419220277047, 28.491771052962314, 28.04002485992698, 27.585952176296686, 27.133118166704644, 26.68488162529166, 26.244394975706108, 25.814592003333956, 25.39624837651218, 24.989747719844928, 24.596533102306708, 24.218048553272112, 23.85573906251583, 23.51105058021266, 23.185430016937477, 22.88032524366526, 22.59718509177108, 22.337459353030113, 22.102584142070327, 21.89432323475395, 21.714712392580047, 21.56581501135082, 21.449720566543427, 21.36854461330996, 21.324428786477473, 21.31954080054796, 21.356074449698355, 21.436249607780553, 21.56231222832139, 21.736534344522642, 21.96120944439715, 22.23588896658226, 22.56090936071474, 22.937972895042304, 23.367269783597518, 23.84747818619779, 24.375764208445386, 24.9477819017274, 25.557673263215793, 26.19806823586736, 26.860084708423752, 27.533328515411455, 28.20589343714182, 28.86444271191068, 29.49704222322918, 30.09109391216475, 30.634652374359845, 31.117789758848904, 31.532595768058368, 31.873177657806675, 32.13566023730426, 32.31818586915357, 32.420914469349015, 32.44602350727704, 32.397708005716076, 32.281599511237935, 32.1011249530666, 31.86095608051867, 31.566663903004887, 31.224425865100713, 30.841025846546305, 30.42385416224651, 29.98090756227088, 29.52078923185366, 29.052707807956068, 28.58037532369468, 28.10373985352943, 27.626165932594176, 27.150693827738117, 26.680039537525786, 26.216594792237068, 25.762427053867178, 25.319279516126677, 24.888571104441475, 24.471504079953945, 24.069673600129512, 23.68426029625022, 23.31643625675018, 22.967471838073806, 22.63873566467583, 22.331694629021282, 22.047913891585498, 21.78905688085413, 21.556885293323127, 21.353259093498753, 21.180120312032372, 21.03888682592846, 20.932044603537314, 20.862563324953697, 20.833259311469234, 20.84679552557242, 20.905681570948616, 21.012273692480036, 21.16877477624577, 21.37723434952177, 21.639548580780854, 21.957460279692697, 22.332558897123853, 22.76515861231407, 23.253423642143453, 23.795561862588688, 24.388155680283127, 25.02612188359292, 25.702711642617025, 26.409510509187182, 27.13643841686794, 27.871749680956647, 28.602032998483445, 29.31253739614011, 29.989179132974947, 30.61736344516678, 31.184364294011235, 31.679728085075176, 32.09527366819675, 32.42509233748532, 32.66554783132155, 32.81527633235732, 32.87518646751581, 32.848476243685404, 32.741366759478105, 32.55980040986689, 32.309611195911515, 31.997520166403408, 31.631135417865597, 31.218952094552776, 30.770352388451272, 30.295605539279045, 29.80586783448571, 29.308600329731018, 28.802985199825876, 28.29297680841526, 27.782278580577426, 27.274160367641112, 26.771458447185548, 26.276575523040435, 25.79148072528597, 25.31770961025283, 24.85644516129849]], 'rnn_output': [[[-0.4297741949558258, -0.12740957736968994, 0.12612171471118927, 0.05125724896788597, 0.2436530739068985, 0.15753859281539917, -0.32091066241264343, -0.10670631378889084, 0.030990390107035637, -0.024261927232146263], [-0.48676520586013794, 0.04992418363690376, 0.18817457556724548, -0.1574266105890274, 0.45413243770599365, 0.26151594519615173, -0.41454067826271057, -0.0929594337940216, -0.1401839405298233, 0.15736648440361023], [-0.42163172364234924, 0.1652350276708603, 0.23812413215637207, -0.2208898663520813, 0.3564971089363098, 0.2678050398826599, -0.5246309638023376, -0.10952409356832504, -0.13328836858272552, 0.28795668482780457], [-0.41161268949508667, 0.18884198367595673, 0.29630333185195923, -0.23641133308410645, 0.3096621334552765, 0.3148840367794037, -0.5475935935974121, -0.0839928388595581, -0.13902965188026428, 0.32139670848846436], [-0.42068594694137573, 0.18885797262191772, 0.31852251291275024, -0.23287659883499146, 0.293989896774292, 0.3451681137084961, -0.5621008276939392, -0.07045075297355652, -0.1314343810081482, 0.3491538166999817], [-0.4312216639518738, 0.19088000059127808, 0.3332045376300812, -0.23747225105762482, 0.2941429913043976, 0.3643162250518799, -0.568071722984314, -0.06821583956480026, -0.13217680156230927, 0.36840981245040894], [-0.4343607425689697, 0.19833838939666748, 0.3420855700969696, -0.24287483096122742, 0.29417547583580017, 0.37599924206733704, -0.5728879570960999, -0.0681796744465828, -0.13380950689315796, 0.38293224573135376], [-0.43479272723197937, 0.20349407196044922, 0.34822753071784973, -0.24616600573062897, 0.29150161147117615, 0.38293197751045227, -0.5765410661697388, -0.06749928742647171, -0.13429176807403564, 0.392654687166214], [-0.43531376123428345, 0.20602762699127197, 0.3524104654788971, -0.24769362807273865, 0.2892996370792389, 0.3875896632671356, -0.5786861181259155, -0.06673459708690643, -0.1343337893486023, 0.3983350396156311], [-0.43598672747612, 0.20736640691757202, 0.35502251982688904, -0.24853762984275818, 0.28823360800743103, 0.39068567752838135, -0.5799235701560974, -0.06620727479457855, -0.13436855375766754, 0.4018557071685791], [-0.43647265434265137, 0.2082662582397461, 0.3566380441188812, -0.24914225935935974, 0.2877022922039032, 0.3926372826099396, -0.5807093977928162, -0.06596369296312332, -0.1344357281923294, 0.4041594862937927], [-0.4367365837097168, 0.20891109108924866, 0.35766905546188354, -0.24956917762756348, 0.28736329078674316, 0.3938598334789276, -0.581217885017395, -0.06583588570356369, -0.13450753688812256, 0.40565600991249084], [-0.436886727809906, 0.20934593677520752, 0.35833388566970825, -0.24985258281230927, 0.28711017966270447, 0.3946431279182434, -0.581550121307373, -0.06574753671884537, -0.13454706966876984, 0.4066087007522583], [-0.43698227405548096, 0.20961438119411469, 0.35876113176345825, -0.2500239610671997, 0.2869362235069275, 0.39514368772506714, -0.581762969493866, -0.06568116694688797, -0.1345660537481308, 0.4072135090827942], [-0.4370458722114563, 0.20977377891540527, 0.35903221368789673, -0.25012415647506714, 0.28682923316955566, 0.39545923471450806, -0.5818957686424255, -0.06563989073038101, -0.1345783770084381, 0.4075980484485626], [-0.43708810210227966, 0.20987364649772644, 0.3592037856578827, -0.25018781423568726, 0.2867668569087982, 0.39565935730934143, -0.5819776058197021, -0.0656169131398201, -0.13458900153636932, 0.4078419506549835], [-0.4371086657047272, 0.2099299132823944, 0.35930994153022766, -0.2502186894416809, 0.2867308557033539, 0.39577701687812805, -0.5820268988609314, -0.0656047984957695, -0.1345984786748886, 0.4079994261264801], [-0.43712154030799866, 0.2099630981683731, 0.3593760132789612, -0.2502371668815613, 0.286710649728775, 0.3958494961261749, -0.582054853439331, -0.0656009316444397, -0.13460664451122284, 0.4080964922904968], [-0.437132328748703, 0.20999039709568024, 0.35941848158836365, -0.2502553462982178, 0.286697655916214, 0.3959001302719116, -0.5820726156234741, -0.06559804081916809, -0.1346115916967392, 0.4081555902957916], [-0.43713614344596863, 0.21000568568706512, 0.3594444990158081, -0.2502630054950714, 0.2866879403591156, 0.3959288001060486, -0.5820848941802979, -0.0655946433544159, -0.13461384177207947, 0.4081953465938568], [-0.43714287877082825, 0.2100197821855545, 0.3594626188278198, -0.2502744793891907, 0.28668034076690674, 0.3959527313709259, -0.582093358039856, -0.06559281796216965, -0.13461440801620483, 0.4082179665565491], [-0.4371474087238312, 0.2100319266319275, 0.3594749867916107, -0.25028371810913086, 0.2866739332675934, 0.3959701657295227, -0.5821008086204529, -0.06558893620967865, -0.1346135288476944, 0.4082338809967041], [-0.4371466636657715, 0.21003305912017822, 0.3594817519187927, -0.2502821683883667, 0.2866700291633606, 0.3959752917289734, -0.5821052193641663, -0.06558684259653091, -0.1346132606267929, 0.4082464575767517], [-0.43714770674705505, 0.2100326418876648, 0.35948601365089417, -0.2502817213535309, 0.2866697907447815, 0.39597901701927185, -0.5821059942245483, -0.06558779627084732, -0.1346145123243332, 0.4082522690296173], [-0.43715232610702515, 0.2100408971309662, 0.3594902455806732, -0.2502903640270233, 0.28666841983795166, 0.3959885835647583, -0.5821080207824707, -0.06558717042207718, -0.13461431860923767, 0.40825432538986206], [-0.43715205788612366, 0.21004454791545868, 0.3594927191734314, -0.2502921223640442, 0.28666526079177856, 0.39599180221557617, -0.5821112394332886, -0.06558442860841751, -0.13461290299892426, 0.4082591235637665], [-0.43715396523475647, 0.21004700660705566, 0.3594951331615448, -0.2502950131893158, 0.286662757396698, 0.3959958851337433, -0.5821133255958557, -0.0655834898352623, -0.1346118003129959, 0.4082610011100769], [-0.43715232610702515, 0.2100445032119751, 0.35949575901031494, -0.25029152631759644, 0.28666290640830994, 0.39599424600601196, -0.5821136236190796, -0.06558282673358917, -0.13461217284202576, 0.40826377272605896], [-0.43714916706085205, 0.21003715693950653, 0.3594944179058075, -0.25028395652770996, 0.28666555881500244, 0.39598825573921204, -0.5821113586425781, -0.06558515876531601, -0.13461405038833618, 0.40826523303985596], [-0.43714815378189087, 0.2100333571434021, 0.35949307680130005, -0.2502807378768921, 0.2866692841053009, 0.39598506689071655, -0.5821081399917603, -0.06558822840452194, -0.13461647927761078, 0.40826380252838135], [-0.43714776635169983, 0.21003343164920807, 0.35949209332466125, -0.2502807378768921, 0.28667107224464417, 0.39598408341407776, -0.5821065902709961, -0.06558956950902939, -0.13461759686470032, 0.40826261043548584], [-0.43714651465415955, 0.21003253757953644, 0.35949113965034485, -0.25027936697006226, 0.28667140007019043, 0.39598217606544495, -0.5821058750152588, -0.06558998674154282, -0.134617879986763, 0.40826237201690674], [-0.43715357780456543, 0.21004422008991241, 0.3594939112663269, -0.250293105840683, 0.28666815161705017, 0.39599356055259705, -0.5821083188056946, -0.06558862328529358, -0.1346157193183899, 0.408258855342865], [-0.4371565580368042, 0.2100546658039093, 0.3594970703125, -0.2503020763397217, 0.28666195273399353, 0.3960021436214447, -0.5821142792701721, -0.06558261811733246, -0.13461165130138397, 0.4082612097263336], [-0.43714919686317444, 0.21004262566566467, 0.35949575901031494, -0.25028759241104126, 0.2866608798503876, 0.3959915339946747, -0.582115113735199, -0.06558137387037277, -0.1346113532781601, 0.408267617225647], [-0.43715211749076843, 0.2100391536951065, 0.35949596762657166, -0.25028765201568604, 0.28666481375694275, 0.39599210023880005, -0.5821114778518677, -0.06558580696582794, -0.13461387157440186, 0.4082639515399933], [-0.4371541440486908, 0.2100452482700348, 0.3594963848590851, -0.25029322504997253, 0.2866659462451935, 0.3959963321685791, -0.582111656665802, -0.0655851811170578, -0.13461419939994812, 0.4082629978656769], [-0.43715164065361023, 0.210044264793396, 0.35949593782424927, -0.25029078125953674, 0.28666412830352783, 0.39599382877349854, -0.5821129679679871, -0.06558414548635483, -0.1346132606267929, 0.4082653820514679], [-0.4371492564678192, 0.2100382298231125, 0.3594948947429657, -0.250284880399704, 0.28666552901268005, 0.3959890902042389, -0.5821112394332886, -0.06558559089899063, -0.13461443781852722, 0.4082655906677246], [-0.43715327978134155, 0.2100428342819214, 0.35949575901031494, -0.25029125809669495, 0.28666630387306213, 0.3959942162036896, -0.5821106433868408, -0.06558657437562943, -0.13461469113826752, 0.4082624316215515], [-0.4371533691883087, 0.2100469022989273, 0.3594962954521179, -0.2502939701080322, 0.2866644263267517, 0.3959963917732239, -0.5821126699447632, -0.0655842125415802, -0.13461335003376007, 0.4082637429237366], [-0.4371515214443207, 0.2100437879562378, 0.3594960868358612, -0.2502903938293457, 0.2866632640361786, 0.395993709564209, -0.5821132063865662, -0.06558384001255035, -0.1346128284931183, 0.4082654118537903], [-0.43715423345565796, 0.2100459635257721, 0.3594970703125, -0.2502939701080322, 0.2866634428501129, 0.3959971070289612, -0.5821130871772766, -0.06558430194854736, -0.13461293280124664, 0.4082637429237366], [-0.4371528625488281, 0.21004554629325867, 0.3594968616962433, -0.2502923905849457, 0.28666338324546814, 0.39599597454071045, -0.5821136236190796, -0.06558337062597275, -0.1346127986907959, 0.40826526284217834], [-0.4371490478515625, 0.21003802120685577, 0.3594951331615448, -0.2502843737602234, 0.2866652011871338, 0.3959890604019165, -0.5821118354797363, -0.06558503955602646, -0.13461413979530334, 0.408266544342041], [-0.43715134263038635, 0.21003901958465576, 0.35949504375457764, -0.25028711557388306, 0.2866673767566681, 0.39599087834358215, -0.5821097493171692, -0.06558729708194733, -0.1346154510974884, 0.4082634150981903], [-0.4371509253978729, 0.21004118025302887, 0.359494686126709, -0.2502882182598114, 0.28666722774505615, 0.3959912657737732, -0.5821101665496826, -0.06558641791343689, -0.1346151977777481, 0.40826359391212463], [-0.4371526539325714, 0.2100444883108139, 0.35949552059173584, -0.250292032957077, 0.286665141582489, 0.39599430561065674, -0.5821115374565125, -0.0655856728553772, -0.13461393117904663, 0.40826308727264404], [-0.4371577501296997, 0.2100541740655899, 0.3594984710216522, -0.2503024935722351, 0.28666141629219055, 0.39600372314453125, -0.5821149349212646, -0.0655827596783638, -0.13461147248744965, 0.40826213359832764], [-0.4371567368507385, 0.21005544066429138, 0.3594996929168701, -0.2503020465373993, 0.28665784001350403, 0.3960046172142029, -0.5821183919906616, -0.06557919085025787, -0.13460925221443176, 0.4082659184932709], [-0.43715447187423706, 0.21004877984523773, 0.35949942469596863, -0.2502955198287964, 0.2866584062576294, 0.3960001766681671, -0.5821177959442139, -0.06558000296354294, -0.1346098631620407, 0.40826788544654846], [-0.43715664744377136, 0.21004948019981384, 0.35949987173080444, -0.2502976655960083, 0.2866605520248413, 0.39600223302841187, -0.5821163654327393, -0.06558175384998322, -0.1346111297607422, 0.4082660377025604], [-0.4371597468852997, 0.21005721390247345, 0.35950136184692383, -0.2503053843975067, 0.28665891289711, 0.39600852131843567, -0.5821182727813721, -0.06558019667863846, -0.13460992276668549, 0.40826553106307983], [-0.43716123700141907, 0.21006278693675995, 0.35950323939323425, -0.2503102123737335, 0.2866547405719757, 0.39601317048072815, -0.5821219086647034, -0.06557708978652954, -0.1346074342727661, 0.40826722979545593], [-0.4371581971645355, 0.2100576013326645, 0.3595031797885895, -0.2503040134906769, 0.2866538166999817, 0.39600905776023865, -0.5821226239204407, -0.06557609140872955, -0.13460715115070343, 0.40827032923698425], [-0.4371550381183624, 0.21004825830459595, 0.3595013916492462, -0.2502950429916382, 0.2866576910018921, 0.3960018754005432, -0.5821192264556885, -0.0655791312456131, -0.13460968434810638, 0.4082706868648529], [-0.4371533691883087, 0.21004308760166168, 0.3594992160797119, -0.2502904534339905, 0.2866626977920532, 0.3959970474243164, -0.582115113735199, -0.06558291614055634, -0.13461273908615112, 0.40826886892318726], [-0.4371567964553833, 0.21004974842071533, 0.3594995141029358, -0.2502981722354889, 0.28666308522224426, 0.3960021436214447, -0.5821146368980408, -0.06558380275964737, -0.1346128284931183, 0.40826547145843506], [-0.4371553361415863, 0.21005181968212128, 0.35949939489364624, -0.2502984404563904, 0.2866607904434204, 0.39600199460983276, -0.5821164846420288, -0.06558138132095337, -0.13461138308048248, 0.4082671105861664], [-0.43715590238571167, 0.21005141735076904, 0.35949987173080444, -0.2502986490726471, 0.28665927052497864, 0.39600253105163574, -0.5821171998977661, -0.06558115035295486, -0.13461056351661682, 0.40826690196990967], [-0.4371556043624878, 0.21005022525787354, 0.35949987173080444, -0.2502973675727844, 0.2866598963737488, 0.3960018754005432, -0.582116961479187, -0.06558091938495636, -0.1346108615398407, 0.40826717019081116], [-0.4371534287929535, 0.2100459188222885, 0.35949864983558655, -0.25029271841049194, 0.28666144609451294, 0.3959978222846985, -0.582115650177002, -0.0655820295214653, -0.1346118301153183, 0.4082678556442261], [-0.43715283274650574, 0.21004344522953033, 0.35949769616127014, -0.25029078125953674, 0.2866635322570801, 0.3959956467151642, -0.5821136832237244, -0.06558391451835632, -0.13461317121982574, 0.40826669335365295], [-0.4371548295021057, 0.21004727482795715, 0.359497994184494, -0.25029510259628296, 0.28666359186172485, 0.3959987461566925, -0.5821136236190796, -0.06558413058519363, -0.13461308181285858, 0.4082649052143097], [-0.4371595084667206, 0.2100575864315033, 0.3595004081726074, -0.2503058612346649, 0.2866596579551697, 0.396007776260376, -0.5821170806884766, -0.0655813068151474, -0.13461044430732727, 0.4082639515399933], [-0.4371640384197235, 0.21006855368614197, 0.35950416326522827, -0.2503165900707245, 0.2866530418395996, 0.39601802825927734, -0.5821229815483093, -0.06557609885931015, -0.1346062421798706, 0.4082653820514679], [-0.43716689944267273, 0.2100747674703598, 0.3595077693462372, -0.2503224313259125, 0.28664714097976685, 0.3960250914096832, -0.5821284651756287, -0.06557139754295349, -0.13460257649421692, 0.4082685112953186], [-0.43717098236083984, 0.21008089184761047, 0.35951149463653564, -0.25032922625541687, 0.2866428792476654, 0.39603307843208313, -0.5821328163146973, -0.06556805968284607, -0.1345999389886856, 0.4082704782485962], [-0.43716877698898315, 0.21007782220840454, 0.35951241850852966, -0.25032472610473633, 0.28664180636405945, 0.3960311710834503, -0.5821346044540405, -0.06556617468595505, -0.1345994472503662, 0.4082750082015991], [-0.4371618628501892, 0.21006272733211517, 0.35950967669487, -0.2503088712692261, 0.2866465449333191, 0.39601847529411316, -0.5821306705474854, -0.06556983292102814, -0.1346028447151184, 0.40827804803848267], [-0.43715837597846985, 0.21005161106586456, 0.35950616002082825, -0.25029897689819336, 0.2866548001766205, 0.39600899815559387, -0.5821233987808228, -0.06557659804821014, -0.134608194231987, 0.40827545523643494], [-0.43715590238571167, 0.21004760265350342, 0.3595027029514313, -0.25029486417770386, 0.28666073083877563, 0.39600318670272827, -0.5821182131767273, -0.06558099389076233, -0.1346118003129959, 0.408272385597229], [-0.4371543228626251, 0.21004663407802582, 0.35950034856796265, -0.25029364228248596, 0.28666266798973083, 0.395999938249588, -0.582115650177002, -0.06558311730623245, -0.1346130222082138, 0.4082699716091156], [-0.43715035915374756, 0.210040882229805, 0.35949763655662537, -0.2502869665622711, 0.28666457533836365, 0.3959929943084717, -0.5821131467819214, -0.06558454036712646, -0.13461428880691528, 0.40826931595802307], [-0.43715181946754456, 0.21004101634025574, 0.35949668288230896, -0.25028860569000244, 0.28666603565216064, 0.3959932327270508, -0.5821112394332886, -0.06558650732040405, -0.13461501896381378, 0.40826570987701416], [-0.43715164065361023, 0.21004262566566467, 0.3594960570335388, -0.2502896189689636, 0.2866661250591278, 0.3959934115409851, -0.5821112394332886, -0.06558576226234436, -0.13461481034755707, 0.40826499462127686], [-0.43715277314186096, 0.21004486083984375, 0.3594963550567627, -0.25029218196868896, 0.28666460514068604, 0.395995169878006, -0.582112193107605, -0.06558515131473541, -0.1346137523651123, 0.4082643389701843], [-0.4371505677700043, 0.21004167199134827, 0.3594956398010254, -0.2502881586551666, 0.28666478395462036, 0.3959919512271881, -0.5821120738983154, -0.065584696829319, -0.13461384177207947, 0.40826550126075745], [-0.43715089559555054, 0.21003998816013336, 0.3594951927661896, -0.25028735399246216, 0.2866658866405487, 0.39599114656448364, -0.5821109414100647, -0.06558604538440704, -0.1346145123243332, 0.4082643687725067], [-0.437148779630661, 0.21003670990467072, 0.3594939410686493, -0.25028344988822937, 0.2866677939891815, 0.39598751068115234, -0.5821094512939453, -0.06558682024478912, -0.13461565971374512, 0.4082646071910858], [-0.43714722990989685, 0.21003301441669464, 0.3594924509525299, -0.25027996301651, 0.2866697609424591, 0.39598387479782104, -0.5821074843406677, -0.0655888170003891, -0.1346169114112854, 0.4082638919353485], [-0.4371473491191864, 0.2100328654050827, 0.3594917356967926, -0.2502801716327667, 0.2866712212562561, 0.3959833085536957, -0.5821059942245483, -0.0655900314450264, -0.13461779057979584, 0.4082622230052948], [-0.43714654445648193, 0.2100325971841812, 0.3594909608364105, -0.2502794563770294, 0.28667154908180237, 0.39598211646080017, -0.5821055769920349, -0.06559013575315475, -0.13461796939373016, 0.40826189517974854], [-0.4371483325958252, 0.21003544330596924, 0.3594914674758911, -0.25028297305107117, 0.28667059540748596, 0.3959847688674927, -0.5821060538291931, -0.06558994203805923, -0.13461732864379883, 0.40826061367988586], [-0.43714991211891174, 0.21003946661949158, 0.3594925105571747, -0.2502868175506592, 0.2866687476634979, 0.39598822593688965, -0.5821078419685364, -0.06558816879987717, -0.13461604714393616, 0.40826064348220825], [-0.4371492862701416, 0.2100391536951065, 0.3594928979873657, -0.2502859830856323, 0.2866672873497009, 0.39598798751831055, -0.5821091532707214, -0.06558691710233688, -0.13461513817310333, 0.40826216340065], [-0.43715330958366394, 0.2100445181131363, 0.3594948649406433, -0.25029271841049194, 0.28666552901268005, 0.3959942162036896, -0.5821107029914856, -0.06558611989021301, -0.1346139907836914, 0.4082609713077545], [-0.4371553063392639, 0.21005043387413025, 0.3594968616962433, -0.25029802322387695, 0.2866625487804413, 0.3959994912147522, -0.5821139216423035, -0.06558306515216827, -0.13461202383041382, 0.4082624018192291], [-0.4371553957462311, 0.2100512683391571, 0.35949814319610596, -0.250298410654068, 0.28665992617607117, 0.39600083231925964, -0.5821163058280945, -0.06558117270469666, -0.13461050391197205, 0.40826472640037537], [-0.43715524673461914, 0.21004962921142578, 0.3594988286495209, -0.2502969205379486, 0.286659836769104, 0.39600059390068054, -0.5821166038513184, -0.06558103859424591, -0.1346105933189392, 0.4082658290863037], [-0.43715545535087585, 0.21004906296730042, 0.3594990372657776, -0.25029659271240234, 0.28666064143180847, 0.3960006833076477, -0.5821162462234497, -0.06558150053024292, -0.1346110999584198, 0.4082661271095276], [-0.43715736269950867, 0.21005263924598694, 0.3594999611377716, -0.2503005266189575, 0.28666001558303833, 0.3960040509700775, -0.582116961479187, -0.06558123975992203, -0.13461068272590637, 0.408265620470047], [-0.43716007471084595, 0.21005898714065552, 0.35950183868408203, -0.2503069341182709, 0.2866572141647339, 0.39600980281829834, -0.5821195244789124, -0.06557908654212952, -0.1346089243888855, 0.4082658588886261], [-0.4371591806411743, 0.21005907654762268, 0.3595026731491089, -0.25030604004859924, 0.2866549491882324, 0.3960098922252655, -0.5821216106414795, -0.06557702273130417, -0.13460761308670044, 0.40826836228370667], [-0.43715474009513855, 0.2100495845079422, 0.3595011234283447, -0.25029587745666504, 0.28665709495544434, 0.39600205421447754, -0.5821197032928467, -0.06557847559452057, -0.134609192609787, 0.40827059745788574], [-0.43715521693229675, 0.21004636585712433, 0.35950008034706116, -0.25029420852661133, 0.2866610586643219, 0.3960002362728119, -0.5821162462234497, -0.06558206677436829, -0.13461165130138397, 0.4082680642604828], [-0.4371574819087982, 0.21005195379257202, 0.35950034856796265, -0.25029999017715454, 0.28666144609451294, 0.3960041403770447, -0.5821161866188049, -0.06558215618133545, -0.13461171090602875, 0.4082661271095276], [-0.4371604919433594, 0.21006037294864655, 0.3595021665096283, -0.25030821561813354, 0.2866573631763458, 0.3960108757019043, -0.5821195244789124, -0.06557931005954742, -0.1346091330051422, 0.4082660973072052], [-0.43715837597846985, 0.21005865931510925, 0.3595026731491089, -0.2503051161766052, 0.28665468096733093, 0.3960092067718506, -0.582121729850769, -0.06557685881853104, -0.13460764288902283, 0.4082691967487335], [-0.4371602535247803, 0.21005849540233612, 0.3595036268234253, -0.25030630826950073, 0.286654531955719, 0.3960111141204834, -0.582121729850769, -0.06557738780975342, -0.13460758328437805, 0.4082685112953186], [-0.43716442584991455, 0.21006612479686737, 0.3595057725906372, -0.2503145635128021, 0.2866530120372772, 0.3960185647010803, -0.5821238160133362, -0.0655757486820221, -0.13460637629032135, 0.4082677662372589], [-0.4371654987335205, 0.21007108688354492, 0.35950759053230286, -0.2503185570240021, 0.28664928674697876, 0.39602258801460266, -0.5821273922920227, -0.06557255983352661, -0.1346040666103363, 0.4082701504230499], [-0.43716639280319214, 0.2100723683834076, 0.35950925946235657, -0.2503199279308319, 0.28664669394493103, 0.3960249423980713, -0.5821295976638794, -0.06557092815637589, -0.1346026360988617, 0.408271849155426], [-0.4371686279773712, 0.21007531881332397, 0.35951104760169983, -0.2503233850002289, 0.28664538264274597, 0.396028995513916, -0.5821312069892883, -0.06556971371173859, -0.13460178673267365, 0.408272385597229], [-0.4371618330478668, 0.2100645750761032, 0.3595089018344879, -0.25031036138534546, 0.2866475582122803, 0.3960186541080475, -0.582129716873169, -0.06557032465934753, -0.13460342586040497, 0.4082767069339752], [-0.43716105818748474, 0.21005763113498688, 0.35950714349746704, -0.2503054440021515, 0.28665241599082947, 0.39601391553878784, -0.5821250677108765, -0.06557543575763702, -0.13460661470890045, 0.4082741141319275], [-0.43716198205947876, 0.21006006002426147, 0.3595063090324402, -0.25030800700187683, 0.2866551876068115, 0.39601489901542664, -0.5821229815483093, -0.06557690352201462, -0.1346081644296646, 0.40827158093452454], [-0.4371620714664459, 0.21006324887275696, 0.3595060408115387, -0.2503105103969574, 0.2866537272930145, 0.39601603150367737, -0.5821239352226257, -0.06557613611221313, -0.134607195854187, 0.4082713723182678], [-0.4371606707572937, 0.21006155014038086, 0.3595057427883148, -0.2503083348274231, 0.2866528034210205, 0.3960142135620117, -0.5821241736412048, -0.06557554006576538, -0.13460679352283478, 0.4082719683647156], [-0.4371613562107086, 0.21006089448928833, 0.35950571298599243, -0.2503083646297455, 0.28665319085121155, 0.39601439237594604, -0.5821236968040466, -0.06557604670524597, -0.1346069723367691, 0.40827104449272156], [-0.43716076016426086, 0.21006006002426147, 0.359505295753479, -0.2503073215484619, 0.28665390610694885, 0.3960133492946625, -0.582123339176178, -0.06557612121105194, -0.13460731506347656, 0.4082711935043335], [-0.43715810775756836, 0.21005533635616302, 0.3595038652420044, -0.2503020465373993, 0.286655455827713, 0.39600861072540283, -0.5821218490600586, -0.06557731330394745, -0.13460831344127655, 0.40827178955078125], [-0.43716052174568176, 0.21005770564079285, 0.3595041036605835, -0.25030580163002014, 0.2866562306880951, 0.39601126313209534, -0.582120954990387, -0.06557856500148773, -0.13460877537727356, 0.4082692265510559], [-0.4371616542339325, 0.2100621908903122, 0.359504759311676, -0.25030970573425293, 0.2866547703742981, 0.39601436257362366, -0.5821224451065063, -0.06557685136795044, -0.13460773229599, 0.4082692861557007], [-0.43716326355934143, 0.21006593108177185, 0.3595060706138611, -0.25031352043151855, 0.2866518199443817, 0.3960178792476654, -0.5821247696876526, -0.06557510048151016, -0.13460594415664673, 0.4082697927951813], [-0.4371642768383026, 0.21006794273853302, 0.35950738191604614, -0.25031545758247375, 0.2866498827934265, 0.3960203528404236, -0.5821266174316406, -0.0655733123421669, -0.13460472226142883, 0.40827080607414246], [-0.43715915083885193, 0.21005883812904358, 0.35950568318367004, -0.2503049373626709, 0.2866516411304474, 0.39601215720176697, -0.5821253061294556, -0.06557394564151764, -0.13460594415664673, 0.4082738757133484], [-0.4371568262577057, 0.2100502997636795, 0.35950344800949097, -0.25029754638671875, 0.28665661811828613, 0.39600542187690735, -0.5821207761764526, -0.06557846814393997, -0.1346091628074646, 0.4082723557949066], [-0.43716004490852356, 0.21005526185035706, 0.3595033288002014, -0.2503037452697754, 0.2866588532924652, 0.3960094153881073, -0.5821190476417542, -0.06558030843734741, -0.1346103399991989, 0.40826842188835144], [-0.4371584951877594, 0.2100573480129242, 0.35950276255607605, -0.25030407309532166, 0.28665733337402344, 0.3960089087486267, -0.5821202993392944, -0.06557853519916534, -0.13460934162139893, 0.4082697033882141], [-0.43715545535087585, 0.21005143225193024, 0.35950157046318054, -0.2502978444099426, 0.286657452583313, 0.3960035443305969, -0.5821194052696228, -0.06557927280664444, -0.134609654545784, 0.40827059745788574], [-0.4371529221534729, 0.2100439965724945, 0.3594995141029358, -0.25029078125953674, 0.2866613268852234, 0.39599737524986267, -0.582115888595581, -0.06558208912611008, -0.1346120536327362, 0.4082695543766022], [-0.4371512532234192, 0.21003973484039307, 0.35949721932411194, -0.2502868175506592, 0.2866653501987457, 0.39599284529685974, -0.5821124315261841, -0.06558505445718765, -0.13461443781852722, 0.40826770663261414], [-0.43715089559555054, 0.21003957092761993, 0.3594958484172821, -0.25028687715530396, 0.2866671085357666, 0.3959914445877075, -0.582110583782196, -0.06558671593666077, -0.1346154510974884, 0.40826570987701416], [-0.4371500313282013, 0.210039421916008, 0.3594948947429657, -0.2502862811088562, 0.2866674065589905, 0.3959900438785553, -0.5821099877357483, -0.06558693200349808, -0.13461560010910034, 0.4082648754119873], [-0.4371488392353058, 0.21003738045692444, 0.3594939112663269, -0.2502841055393219, 0.2866678535938263, 0.39598777890205383, -0.5821092128753662, -0.06558741629123688, -0.13461586833000183, 0.4082643985748291], [-0.4371516704559326, 0.2100413590669632, 0.3594946265220642, -0.2502892017364502, 0.28666725754737854, 0.3959917426109314, -0.5821095108985901, -0.06558733433485031, -0.13461533188819885, 0.4082622528076172], [-0.43714991211891174, 0.2100406140089035, 0.35949426889419556, -0.25028711557388306, 0.28666651248931885, 0.3959900140762329, -0.5821104049682617, -0.06558586657047272, -0.13461478054523468, 0.4082638919353485], [-0.4371439814567566, 0.2100287675857544, 0.35949140787124634, -0.2502744793891907, 0.28666946291923523, 0.39597928524017334, -0.5821074843406677, -0.06558829545974731, -0.134616881608963, 0.4082656800746918], [-0.4371444880962372, 0.2100248634815216, 0.3594897985458374, -0.25027257204055786, 0.28667429089546204, 0.395976722240448, -0.5821030139923096, -0.06559271365404129, -0.1346198469400406, 0.40826180577278137], [-0.4371480345726013, 0.21003296971321106, 0.35949018597602844, -0.25028112530708313, 0.2866743803024292, 0.39598265290260315, -0.5821031928062439, -0.0655924528837204, -0.1346195489168167, 0.4082588255405426], [-0.4371508061885834, 0.21004228293895721, 0.35949212312698364, -0.2502897083759308, 0.28666922450065613, 0.39598962664604187, -0.582107424736023, -0.06558873504400253, -0.13461627066135406, 0.40825924277305603], [-0.4371469020843506, 0.2100369930267334, 0.3594919741153717, -0.25028279423713684, 0.28666701912879944, 0.39598482847213745, -0.5821090340614319, -0.06558650732040405, -0.13461513817310333, 0.4082631766796112], [-0.43715038895606995, 0.21003779768943787, 0.35949310660362244, -0.2502859830856323, 0.2866676151752472, 0.39598825573921204, -0.5821084380149841, -0.06558803468942642, -0.13461542129516602, 0.40826088190078735], [-0.4371544420719147, 0.21004678308963776, 0.35949522256851196, -0.2502949833869934, 0.2866659164428711, 0.39599621295928955, -0.5821108818054199, -0.0655856654047966, -0.13461405038833618, 0.40826043486595154], [-0.4371506869792938, 0.21004371345043182, 0.35949501395225525, -0.25028979778289795, 0.2866637408733368, 0.39599236845970154, -0.5821129083633423, -0.06558357924222946, -0.13461284339427948, 0.40826478600502014], [-0.43715065717697144, 0.21003970503807068, 0.35949504375457764, -0.25028711557388306, 0.2866649329662323, 0.3959906995296478, -0.5821114182472229, -0.06558549404144287, -0.13461387157440186, 0.40826416015625], [-0.43715232610702515, 0.2100420445203781, 0.3594953715801239, -0.25028982758522034, 0.28666624426841736, 0.39599305391311646, -0.5821108222007751, -0.06558586657047272, -0.1346144825220108, 0.4082629978656769], [-0.4371512532234192, 0.21004220843315125, 0.3594951033592224, -0.2502892017364502, 0.2866656482219696, 0.3959921896457672, -0.5821114182472229, -0.06558533012866974, -0.13461416959762573, 0.4082641303539276], [-0.43715038895606995, 0.21004018187522888, 0.35949480533599854, -0.2502872049808502, 0.2866658568382263, 0.3959905207157135, -0.5821109414100647, -0.06558583676815033, -0.13461443781852722, 0.40826424956321716], [-0.4371524453163147, 0.21004287898540497, 0.3594954311847687, -0.2502906918525696, 0.28666576743125916, 0.39599350094795227, -0.5821110010147095, -0.06558597087860107, -0.13461431860923767, 0.4082629084587097], [-0.4371523857116699, 0.21004453301429749, 0.35949575901031494, -0.2502916157245636, 0.286664754152298, 0.3959943950176239, -0.5821121335029602, -0.06558464467525482, -0.13461360335350037, 0.40826380252838135], [-0.4371516704559326, 0.21004295349121094, 0.35949572920799255, -0.2502899765968323, 0.2866642475128174, 0.3959932029247284, -0.5821123719215393, -0.06558460742235184, -0.13461337983608246, 0.4082646071910858], [-0.4371499717235565, 0.21003903448581696, 0.3594948947429657, -0.25028589367866516, 0.2866658568382263, 0.39598992466926575, -0.5821110010147095, -0.06558562070131302, -0.1346144825220108, 0.4082649350166321], [-0.4371471107006073, 0.21003293991088867, 0.3594929575920105, -0.25027957558631897, 0.28666892647743225, 0.39598411321640015, -0.5821083188056946, -0.06558786332607269, -0.1346164494752884, 0.4082648754119873], [-0.43714678287506104, 0.21003104746341705, 0.3594916760921478, -0.25027841329574585, 0.28667157888412476, 0.39598214626312256, -0.582105815410614, -0.06559031456708908, -0.13461808860301971, 0.4082627594470978], [-0.4371478855609894, 0.21003414690494537, 0.3594914376735687, -0.25028160214424133, 0.2866717576980591, 0.3959839344024658, -0.5821055769920349, -0.06559044122695923, -0.13461805880069733, 0.40826115012168884], [-0.43714314699172974, 0.21002788841724396, 0.359489381313324, -0.2502736747264862, 0.28667253255844116, 0.39597684144973755, -0.5821046233177185, -0.06559053063392639, -0.1346186399459839, 0.40826305747032166], [-0.4371422231197357, 0.21002261340618134, 0.3594878315925598, -0.25026965141296387, 0.2866753935813904, 0.3959728479385376, -0.5821014642715454, -0.0655936673283577, -0.1346205174922943, 0.40826094150543213], [-0.4371444582939148, 0.21002621948719025, 0.3594876825809479, -0.25027400255203247, 0.2866767644882202, 0.39597567915916443, -0.5821004509925842, -0.06559444218873978, -0.13462106883525848, 0.40825819969177246], [-0.4371435046195984, 0.21002762019634247, 0.35948729515075684, -0.25027430057525635, 0.28667548298835754, 0.3959753215312958, -0.5821015238761902, -0.06559315323829651, -0.13462021946907043, 0.40825897455215454], [-0.43714553117752075, 0.2100304514169693, 0.35948827862739563, -0.25027796626091003, 0.2866736650466919, 0.39597848057746887, -0.5821026563644409, -0.06559253484010696, -0.1346190869808197, 0.4082580506801605], [-0.4371432662010193, 0.2100275307893753, 0.3594878017902374, -0.2502739131450653, 0.28667375445365906, 0.39597558975219727, -0.5821028351783752, -0.06559161841869354, -0.1346191167831421, 0.4082598388195038], [-0.4371476173400879, 0.21003253757953644, 0.3594893217086792, -0.25028085708618164, 0.28667277097702026, 0.39598149061203003, -0.5821035504341125, -0.06559201329946518, -0.1346183866262436, 0.40825754404067993], [-0.4371470808982849, 0.21003490686416626, 0.3594900071620941, -0.2502817213535309, 0.2866712510585785, 0.39598265290260315, -0.5821054577827454, -0.06558950245380402, -0.1346173882484436, 0.4082595705986023], [-0.43714526295661926, 0.21003100275993347, 0.35948964953422546, -0.2502776086330414, 0.28667086362838745, 0.3959795832633972, -0.5821055173873901, -0.06558983027935028, -0.13461732864379883, 0.40826109051704407], [-0.43714699149131775, 0.2100316882133484, 0.35949012637138367, -0.25027942657470703, 0.286671906709671, 0.3959813416004181, -0.5821046829223633, -0.06559077650308609, -0.13461796939373016, 0.40825963020324707], [-0.437147319316864, 0.21003380417823792, 0.35949036478996277, -0.25028106570243835, 0.28667157888412476, 0.39598265290260315, -0.5821053385734558, -0.06559006869792938, -0.1346176564693451, 0.4082600176334381], [-0.4371466338634491, 0.21003317832946777, 0.35949036478996277, -0.25028014183044434, 0.28667089343070984, 0.39598190784454346, -0.582105815410614, -0.06558971852064133, -0.13461732864379883, 0.4082608222961426], [-0.43714892864227295, 0.21003635227680206, 0.3594914376735687, -0.2502841055393219, 0.2866700291633606, 0.39598548412323, -0.5821064710617065, -0.06558942794799805, -0.13461680710315704, 0.4082598388195038], [-0.4371475279331207, 0.2100355178117752, 0.35949140787124634, -0.2502822279930115, 0.2866694927215576, 0.3959842622280121, -0.5821072459220886, -0.06558830291032791, -0.1346164494752884, 0.4082615375518799], [-0.43714767694473267, 0.21003428101539612, 0.3594914674758911, -0.25028157234191895, 0.28666967153549194, 0.39598384499549866, -0.5821069478988647, -0.06558900326490402, -0.13461662828922272, 0.40826138854026794], [-0.4371483623981476, 0.21003538370132446, 0.3594917058944702, -0.25028279423713684, 0.286670058965683, 0.3959849774837494, -0.5821068286895752, -0.06558898836374283, -0.13461680710315704, 0.4082610011100769], [-0.43714895844459534, 0.21003714203834534, 0.35949209332466125, -0.25028449296951294, 0.28666922450065613, 0.3959863483905792, -0.5821075439453125, -0.06558847427368164, -0.13461630046367645, 0.40826117992401123], [-0.4371480941772461, 0.21003608405590057, 0.3594920337200165, -0.25028297305107117, 0.28666889667510986, 0.39598533511161804, -0.5821077823638916, -0.0655880719423294, -0.13461615145206451, 0.4082620143890381], [-0.4371510446071625, 0.21004006266593933, 0.35949328541755676, -0.2502880394458771, 0.28666794300079346, 0.3959897756576538, -0.5821085572242737, -0.06558779627084732, -0.1346154808998108, 0.4082607626914978], [-0.4371476173400879, 0.21003636717796326, 0.3594924509525299, -0.25028255581855774, 0.286668062210083, 0.3959854543209076, -0.5821087956428528, -0.0655868723988533, -0.13461562991142273, 0.4082634449005127], [-0.43714451789855957, 0.21002809703350067, 0.3594905734062195, -0.250274658203125, 0.28667089343070984, 0.3959786593914032, -0.5821059346199036, -0.06558980792760849, -0.1346176266670227, 0.40826350450515747], [-0.4371446371078491, 0.21002617478370667, 0.359489381313324, -0.2502736747264862, 0.28667452931404114, 0.39597705006599426, -0.5821028351783752, -0.06559256464242935, -0.1346198171377182, 0.4082609713077545], [-0.4371456205844879, 0.21002957224845886, 0.35948899388313293, -0.25027698278427124, 0.2866747975349426, 0.39597877860069275, -0.5821025967597961, -0.06559272110462189, -0.1346198171377182, 0.4082595109939575], [-0.4371451437473297, 0.21003082394599915, 0.35948896408081055, -0.25027763843536377, 0.28667330741882324, 0.3959789276123047, -0.5821035504341125, -0.06559168547391891, -0.13461893796920776, 0.40825986862182617], [-0.4371471107006073, 0.2100335955619812, 0.35948991775512695, -0.25028106570243835, 0.2866717278957367, 0.3959820866584778, -0.5821046233177185, -0.06559086591005325, -0.1346179097890854, 0.4082591235637665], [-0.43714702129364014, 0.21003417670726776, 0.35949036478996277, -0.2502811551094055, 0.2866707444190979, 0.3959825932979584, -0.5821057558059692, -0.06558950245380402, -0.1346171796321869, 0.40826016664505005], [-0.4371468722820282, 0.21003323793411255, 0.3594905138015747, -0.25028032064437866, 0.2866705358028412, 0.39598217606544495, -0.5821059942245483, -0.06558957695960999, -0.13461709022521973, 0.40826064348220825], [-0.437146931886673, 0.21003277599811554, 0.3594905734062195, -0.2502800226211548, 0.28667110204696655, 0.3959820866584778, -0.5821056365966797, -0.0655897930264473, -0.13461744785308838, 0.40826064348220825], [-0.43714639544487, 0.21003201603889465, 0.3594902753829956, -0.25027909874916077, 0.2866714894771576, 0.3959812819957733, -0.5821053385734558, -0.06559012085199356, -0.13461770117282867, 0.40826088190078735], [-0.43715018033981323, 0.2100381851196289, 0.35949188470840454, -0.25028637051582336, 0.2866699993610382, 0.395987331867218, -0.5821065902709961, -0.06558945775032043, -0.13461671769618988, 0.4082592725753784], [-0.4371497929096222, 0.21004055440425873, 0.3594927191734314, -0.25028741359710693, 0.2866676151752472, 0.3959887623786926, -0.5821089744567871, -0.06558692455291748, -0.1346152275800705, 0.40826132893562317], [-0.4371474087238312, 0.21003536880016327, 0.3594922125339508, -0.2502819001674652, 0.28666767477989197, 0.3959847092628479, -0.582108736038208, -0.06558717787265778, -0.1346154510974884, 0.40826311707496643], [-0.4371475279331207, 0.21003271639347076, 0.359491765499115, -0.2502802312374115, 0.2866699993610382, 0.39598339796066284, -0.5821068286895752, -0.06558914482593536, -0.1346169114112854, 0.4082620143890381], [-0.4371457099914551, 0.2100302129983902, 0.3594904839992523, -0.2502771019935608, 0.28667211532592773, 0.39598023891448975, -0.5821052193641663, -0.06559022516012192, -0.13461817800998688, 0.40826207399368286], [-0.4371466636657715, 0.21003153920173645, 0.3594902753829956, -0.250279039144516, 0.2866724729537964, 0.39598122239112854, -0.5821045637130737, -0.06559121608734131, -0.13461841642856598, 0.4082604944705963], [-0.43714600801467896, 0.2100318819284439, 0.3594900071620941, -0.2502787411212921, 0.28667229413986206, 0.39598071575164795, -0.5821047425270081, -0.06559062749147415, -0.13461829721927643, 0.4082607328891754], [-0.43714430928230286, 0.21002858877182007, 0.3594891130924225, -0.25027525424957275, 0.28667277097702026, 0.39597761631011963, -0.5821040272712708, -0.06559121608734131, -0.13461866974830627, 0.40826115012168884], [-0.43714460730552673, 0.21002762019634247, 0.35948872566223145, -0.2502748966217041, 0.28667402267456055, 0.39597707986831665, -0.5821027755737305, -0.06559239327907562, -0.13461942970752716, 0.40825989842414856], [-0.43714991211891174, 0.21003733575344086, 0.3594907522201538, -0.250285804271698, 0.2866719365119934, 0.39598602056503296, -0.5821047425270081, -0.06559107452630997, -0.134617879986763, 0.40825751423835754], [-0.4371519386768341, 0.21004517376422882, 0.35949310660362244, -0.25029245018959045, 0.2866668403148651, 0.3959922790527344, -0.5821094512939453, -0.06558655202388763, -0.13461460173130035, 0.40825963020324707], [-0.43714913725852966, 0.21004058420658112, 0.3594934344291687, -0.2502867579460144, 0.286664754152298, 0.3959888517856598, -0.5821111798286438, -0.06558486819267273, -0.13461355865001678, 0.40826332569122314], [-0.4371519982814789, 0.2100410759449005, 0.3594946265220642, -0.2502892315387726, 0.28666552901268005, 0.39599183201789856, -0.5821106433868408, -0.06558608263731003, -0.13461405038833618, 0.40826183557510376], [-0.4371531903743744, 0.21004486083984375, 0.35949552059173584, -0.25029245018959045, 0.2866652011871338, 0.3959948420524597, -0.5821117162704468, -0.06558481603860855, -0.13461363315582275, 0.4082624912261963], [-0.4371490776538849, 0.21003910899162292, 0.35949432849884033, -0.2502853572368622, 0.2866654098033905, 0.39598897099494934, -0.5821115374565125, -0.0655849501490593, -0.13461405038833618, 0.4082653820514679], [-0.43714725971221924, 0.2100326120853424, 0.3594929277896881, -0.25027966499328613, 0.286668598651886, 0.39598405361175537, -0.5821083188056946, -0.06558803468942642, -0.13461627066135406, 0.4082643687725067], [-0.43714988231658936, 0.2100362330675125, 0.3594929575920105, -0.2502843141555786, 0.2866702973842621, 0.39598724246025085, -0.5821070671081543, -0.06558935344219208, -0.13461712002754211, 0.4082614481449127], [-0.43715158104896545, 0.21004264056682587, 0.35949385166168213, -0.2502901256084442, 0.2866678535938263, 0.39599162340164185, -0.582109272480011, -0.06558727473020554, -0.1346154510974884, 0.4082614481449127], [-0.43714937567710876, 0.21004043519496918, 0.35949379205703735, -0.2502868175506592, 0.2866659462451935, 0.39598923921585083, -0.5821105241775513, -0.06558576226234436, -0.13461445271968842, 0.4082637429237366], [-0.43715086579322815, 0.21004004776477814, 0.35949432849884033, -0.25028765201568604, 0.2866661548614502, 0.3959904611110687, -0.5821101665496826, -0.06558650732040405, -0.13461457192897797, 0.408262699842453], [-0.4371509253978729, 0.21004074811935425, 0.3594944477081299, -0.2502880394458771, 0.2866666316986084, 0.39599093794822693, -0.5821103453636169, -0.06558606028556824, -0.1346147209405899, 0.4082629978656769], [-0.4371505379676819, 0.21004030108451843, 0.3594943583011627, -0.2502874732017517, 0.2866663932800293, 0.39599040150642395, -0.5821104645729065, -0.0655861645936966, -0.13461463153362274, 0.4082634449005127], [-0.43714848160743713, 0.2100365161895752, 0.3594934940338135, -0.25028327107429504, 0.2866676151752472, 0.3959868252277374, -0.5821093916893005, -0.0655868798494339, -0.1346154808998108, 0.40826407074928284], [-0.4371478855609894, 0.2100340873003006, 0.35949254035949707, -0.25028130412101746, 0.28666943311691284, 0.39598479866981506, -0.582107663154602, -0.06558861583471298, -0.13461662828922272, 0.40826311707496643], [-0.43714821338653564, 0.21003477275371552, 0.35949212312698364, -0.2502821087837219, 0.28667038679122925, 0.395984947681427, -0.5821068286895752, -0.06558924168348312, -0.1346171498298645, 0.4082620441913605], [-0.43714872002601624, 0.21003669500350952, 0.3594922125339508, -0.2502838969230652, 0.28666970133781433, 0.39598608016967773, -0.5821073055267334, -0.06558883935213089, -0.13461671769618988, 0.40826165676116943], [-0.437150776386261, 0.21004070341587067, 0.35949331521987915, -0.25028830766677856, 0.2866677939891815, 0.39598986506462097, -0.5821087956428528, -0.06558762490749359, -0.13461551070213318, 0.4082612097263336], [-0.43714964389801025, 0.21004001796245575, 0.35949352383613586, -0.25028669834136963, 0.2866666913032532, 0.3959890305995941, -0.5821098685264587, -0.06558630615472794, -0.13461484014987946, 0.40826281905174255], [-0.4371446371078491, 0.21002976596355438, 0.35949134826660156, -0.25027579069137573, 0.28666940331459045, 0.3959800601005554, -0.582107424736023, -0.06558813899755478, -0.1346166878938675, 0.408264696598053], [-0.4371458888053894, 0.21002773940563202, 0.3594903349876404, -0.2502756416797638, 0.2866731584072113, 0.39597922563552856, -0.5821040272712708, -0.06559181958436966, -0.13461896777153015, 0.4082612991333008], [-0.4371498227119446, 0.2100369930267334, 0.35949140787124634, -0.25028517842292786, 0.28667229413986206, 0.3959863483905792, -0.5821051001548767, -0.06559084355831146, -0.1346181482076645, 0.40825894474983215], [-0.43714526295661926, 0.2100336104631424, 0.35949042439460754, -0.2502792775630951, 0.2866702377796173, 0.3959812521934509, -0.5821066498756409, -0.06558869034051895, -0.13461703062057495, 0.408262699842453], [-0.4371457099914551, 0.21003004908561707, 0.35949021577835083, -0.2502773106098175, 0.28667116165161133, 0.3959799110889435, -0.5821051001548767, -0.06559069454669952, -0.13461779057979584, 0.40826112031936646], [-0.4371502101421356, 0.21003742516040802, 0.3594917058944702, -0.250285804271698, 0.2866709530353546, 0.39598703384399414, -0.582105815410614, -0.06558997929096222, -0.13461732864379883, 0.40825873613357544], [-0.43714651465415955, 0.21003508567810059, 0.3594909906387329, -0.25028109550476074, 0.2866695523262024, 0.39598312973976135, -0.5821073651313782, -0.06558798253536224, -0.1346164494752884, 0.40826237201690674], [-0.43714600801467896, 0.21003085374832153, 0.35949060320854187, -0.2502780258655548, 0.2866705060005188, 0.39598074555397034, -0.5821058750152588, -0.06558991223573685, -0.13461732864379883, 0.4082616865634918], [-0.4371475279331207, 0.21003268659114838, 0.3594907820224762, -0.25028032064437866, 0.2866719365119934, 0.3959825932979584, -0.5821050405502319, -0.06559048593044281, -0.13461799919605255, 0.40826016664505005], [-0.4371459484100342, 0.21003194153308868, 0.3594900965690613, -0.25027865171432495, 0.28667184710502625, 0.3959808051586151, -0.5821052193641663, -0.06559015810489655, -0.1346179097890854, 0.408261239528656], [-0.437141090631485, 0.21002282202243805, 0.35948777198791504, -0.2502687871456146, 0.28667429089546204, 0.39597219228744507, -0.5821027159690857, -0.06559209525585175, -0.13461969792842865, 0.4082624018192291], [-0.4371408224105835, 0.21001872420310974, 0.35948610305786133, -0.25026601552963257, 0.2866782546043396, 0.395969033241272, -0.5820989012718201, -0.06559573858976364, -0.13462218642234802, 0.40825948119163513], [-0.43714097142219543, 0.21002009510993958, 0.35948503017425537, -0.2502673268318176, 0.2866800129413605, 0.39596888422966003, -0.5820974707603455, -0.06559672206640244, -0.13462306559085846, 0.4082576632499695], [-0.4371369779109955, 0.21001507341861725, 0.35948288440704346, -0.25026100873947144, 0.28668102622032166, 0.3959626853466034, -0.5820961594581604, -0.06559742242097855, -0.13462376594543457, 0.4082585275173187], [-0.437141090631485, 0.21001943945884705, 0.35948362946510315, -0.2502675950527191, 0.2866809368133545, 0.39596760272979736, -0.5820956230163574, -0.06559853255748749, -0.13462364673614502, 0.4082546532154083], [-0.43713948130607605, 0.21002036333084106, 0.3594833016395569, -0.2502666711807251, 0.28668004274368286, 0.3959667682647705, -0.5820968151092529, -0.06559640169143677, -0.13462288677692413, 0.4082562327384949], [-0.4371395409107208, 0.21001897752285004, 0.3594832718372345, -0.2502659559249878, 0.2866792678833008, 0.39596614241600037, -0.5820969343185425, -0.06559683382511139, -0.1346224844455719, 0.4082561433315277], [-0.4371417760848999, 0.2100222259759903, 0.3594842255115509, -0.2502698302268982, 0.2866789996623993, 0.3959696292877197, -0.5820974111557007, -0.06559640169143677, -0.1346222162246704, 0.4082549810409546], [-0.4371451139450073, 0.21002958714962006, 0.3594861626625061, -0.2502773404121399, 0.2866760790348053, 0.3959762454032898, -0.5821002721786499, -0.06559409946203232, -0.13462018966674805, 0.4082549214363098], [-0.43714234232902527, 0.21002697944641113, 0.35948628187179565, -0.25027310848236084, 0.2866743206977844, 0.3959735333919525, -0.5821019411087036, -0.06559205800294876, -0.13461926579475403, 0.4082583785057068], [-0.4371471405029297, 0.21003161370754242, 0.3594883978366852, -0.25028008222579956, 0.28667303919792175, 0.3959800899028778, -0.58210289478302, -0.06559237837791443, -0.13461846113204956, 0.4082563519477844], [-0.4371511936187744, 0.21004164218902588, 0.3594913184642792, -0.2502896785736084, 0.2866695821285248, 0.3959890604019165, -0.5821067690849304, -0.06558859348297119, -0.13461606204509735, 0.4082570970058441], [-0.4371524453163147, 0.21004627645015717, 0.3594937026500702, -0.2502935230731964, 0.28666460514068604, 0.39599353075027466, -0.5821112990379333, -0.0655849277973175, -0.13461308181285858, 0.408260315656662], [-0.4371539354324341, 0.21004781126976013, 0.35949593782424927, -0.25029534101486206, 0.2866620719432831, 0.39599674940109253, -0.5821136832237244, -0.06558308750391006, -0.13461171090602875, 0.40826210379600525], [-0.4371512830257416, 0.2100425511598587, 0.3594956696033478, -0.2502892017364502, 0.28666311502456665, 0.39599278569221497, -0.5821133852005005, -0.06558308005332947, -0.13461244106292725, 0.4082649350166321], [-0.4371463358402252, 0.21003133058547974, 0.35949307680130005, -0.25027772784233093, 0.2866677939891815, 0.3959830403327942, -0.5821093916893005, -0.06558679044246674, -0.13461565971374512, 0.4082660675048828], [-0.437144935131073, 0.21002604067325592, 0.3594907224178314, -0.2502734661102295, 0.28667330741882324, 0.3959782123565674, -0.582104504108429, -0.06559141725301743, -0.13461914658546448, 0.40826329588890076], [-0.4371446967124939, 0.2100270539522171, 0.3594892621040344, -0.2502743899822235, 0.28667548298835754, 0.39597734808921814, -0.582102358341217, -0.06559313088655472, -0.13462042808532715, 0.4082610011100769], [-0.43714067339897156, 0.21002225577831268, 0.3594869375228882, -0.25026822090148926, 0.28667667508125305, 0.39597105979919434, -0.5821008086204529, -0.0655939057469368, -0.1346212476491928, 0.4082615077495575], [-0.43714162707328796, 0.2100214660167694, 0.3594861328601837, -0.2502687871456146, 0.28667792677879333, 0.39597073197364807, -0.5820989608764648, -0.06559588760137558, -0.1346220076084137, 0.4082585871219635], [-0.43714210391044617, 0.21002353727817535, 0.3594858646392822, -0.2502706050872803, 0.28667816519737244, 0.3959716558456421, -0.5820988416671753, -0.065595343708992, -0.13462191820144653, 0.4082576036453247], [-0.437141478061676, 0.21002332866191864, 0.3594854474067688, -0.2502700388431549, 0.28667736053466797, 0.39597088098526, -0.5820993781089783, -0.06559494882822037, -0.13462133705615997, 0.4082578718662262], [-0.43714725971221924, 0.2100323885679245, 0.359487920999527, -0.25028088688850403, 0.2866746187210083, 0.3959801495075226, -0.582101583480835, -0.06559352576732635, -0.13461951911449432, 0.408255398273468], [-0.4371509253978729, 0.21004265546798706, 0.35949110984802246, -0.25029027462005615, 0.28666919469833374, 0.3959890604019165, -0.5821068286895752, -0.06558849662542343, -0.1346159279346466, 0.40825700759887695], [-0.43715232610702515, 0.21004627645015717, 0.3594937026500702, -0.25029343366622925, 0.28666412830352783, 0.3959934115409851, -0.5821114182472229, -0.06558476388454437, -0.13461284339427948, 0.4082602560520172], [-0.4371506869792938, 0.21004198491573334, 0.3594944477081299, -0.250288724899292, 0.286663681268692, 0.3959912061691284, -0.582112193107605, -0.06558394432067871, -0.1346127986907959, 0.4082632064819336], [-0.43715110421180725, 0.21003973484039307, 0.3594946265220642, -0.25028738379478455, 0.28666555881500244, 0.3959907293319702, -0.5821110010147095, -0.06558557599782944, -0.1346140205860138, 0.40826311707496643], [-0.4371519386768341, 0.2100415676832199, 0.3594948947429657, -0.25028926134109497, 0.2866663932800293, 0.3959921896457672, -0.5821107625961304, -0.06558593362569809, -0.1346144825220108, 0.4082629084587097], [-0.4371502995491028, 0.2100403904914856, 0.35949447751045227, -0.250287264585495, 0.28666624426841736, 0.3959903419017792, -0.5821107625961304, -0.06558577716350555, -0.13461454212665558, 0.40826407074928284], [-0.43715065717697144, 0.21004001796245575, 0.35949453711509705, -0.25028738379478455, 0.2866664528846741, 0.3959904611110687, -0.5821103453636169, -0.06558647751808167, -0.13461478054523468, 0.4082634150981903], [-0.43714940547943115, 0.2100382000207901, 0.3594939112663269, -0.2502850890159607, 0.2866673469543457, 0.39598849415779114, -0.5821096897125244, -0.06558665633201599, -0.13461530208587646, 0.40826383233070374], [-0.4371474087238312, 0.21003398299217224, 0.35949262976646423, -0.2502807676792145, 0.28666895627975464, 0.3959844708442688, -0.5821081399917603, -0.06558810919523239, -0.13461638987064362, 0.4082638919353485], [-0.43714654445648193, 0.21003133058547974, 0.3594914972782135, -0.2502784729003906, 0.2866711914539337, 0.3959819972515106, -0.5821059942245483, -0.06558988243341446, -0.13461779057979584, 0.408262699842453], [-0.43715065717697144, 0.21003858745098114, 0.35949259996414185, -0.25028687715530396, 0.2866702377796173, 0.39598843455314636, -0.5821067690849304, -0.06558965891599655, -0.13461700081825256, 0.4082600176334381], [-0.43714889883995056, 0.21003951132297516, 0.3594927191734314, -0.25028592348098755, 0.28666800260543823, 0.39598774909973145, -0.5821088552474976, -0.06558704376220703, -0.13461557030677795, 0.4082624018192291], [-0.43714892864227295, 0.21003751456737518, 0.3594929277896881, -0.2502846419811249, 0.2866673469543457, 0.3959871232509613, -0.5821089744567871, -0.06558738648891449, -0.13461530208587646, 0.4082625210285187], [-0.43714478611946106, 0.21002952754497528, 0.3594910502433777, -0.25027576088905334, 0.286670446395874, 0.3959798216819763, -0.5821065306663513, -0.0655888170003891, -0.13461729884147644, 0.40826380252838135], [-0.437145471572876, 0.21002764999866486, 0.35948991775512695, -0.25027528405189514, 0.2866734564304352, 0.3959785997867584, -0.5821037888526917, -0.06559199094772339, -0.1346190869808197, 0.4082612097263336], [-0.4371478855609894, 0.21003368496894836, 0.35949042439460754, -0.25028151273727417, 0.2866731584072113, 0.3959829807281494, -0.5821041464805603, -0.0655914843082428, -0.13461875915527344, 0.4082592725753784], [-0.43714815378189087, 0.21003717184066772, 0.35949110984802246, -0.2502841055393219, 0.2866702079772949, 0.39598506689071655, -0.5821064710617065, -0.06558923423290253, -0.1346169114112854, 0.40826037526130676], [-0.4371460974216461, 0.21003325283527374, 0.3594907820224762, -0.2502796947956085, 0.2866695821285248, 0.39598193764686584, -0.5821067690849304, -0.06558875739574432, -0.13461671769618988, 0.4082619845867157], [-0.43714261054992676, 0.21002456545829773, 0.3594888746738434, -0.2502709627151489, 0.28667303919792175, 0.39597469568252563, -0.5821036696434021, -0.0655912235379219, -0.13461893796920776, 0.40826237201690674], [-0.4371508061885834, 0.21003596484661102, 0.3594910204410553, -0.25028547644615173, 0.2866728603839874, 0.3959862291812897, -0.582103967666626, -0.06559228897094727, -0.13461846113204956, 0.4082568883895874], [-0.43715012073516846, 0.2100425660610199, 0.3594922423362732, -0.2502891421318054, 0.286668598651886, 0.39598941802978516, -0.5821083784103394, -0.0655871108174324, -0.1346156895160675, 0.40826037526130676], [-0.4371544122695923, 0.21004877984523773, 0.35949528217315674, -0.25029677152633667, 0.28666311502456665, 0.39599692821502686, -0.5821124315261841, -0.06558487564325333, -0.13461244106292725, 0.4082605540752411], [-0.4371594190597534, 0.2100582867860794, 0.3594993054866791, -0.25030654668807983, 0.28665870428085327, 0.39600712060928345, -0.5821170210838318, -0.06558036804199219, -0.13460958003997803, 0.40826159715652466], [-0.43715858459472656, 0.21005873382091522, 0.3595009446144104, -0.25030556321144104, 0.28665515780448914, 0.39600813388824463, -0.5821207761764526, -0.06557713449001312, -0.13460740447044373, 0.40826621651649475], [-0.437163770198822, 0.21006463468074799, 0.3595042824745178, -0.2503134608268738, 0.28665271401405334, 0.39601626992225647, -0.5821231007575989, -0.06557611376047134, -0.13460597395896912, 0.4082658588886261], [-0.4371645748615265, 0.2100687474012375, 0.3595063090324402, -0.2503162920475006, 0.2866503596305847, 0.3960200846195221, -0.582126259803772, -0.06557302922010422, -0.13460448384284973, 0.40826883912086487], [-0.4371638596057892, 0.2100672721862793, 0.3595072329044342, -0.2503146231174469, 0.28664880990982056, 0.39601969718933105, -0.5821276307106018, -0.0655723363161087, -0.1346038430929184, 0.4082714021205902], [-0.43716922402381897, 0.2100747972726822, 0.3595101535320282, -0.2503238022327423, 0.28664711117744446, 0.39602842926979065, -0.5821294188499451, -0.06557151675224304, -0.13460278511047363, 0.4082699418067932], [-0.4371711313724518, 0.2100817859172821, 0.3595125377178192, -0.25032955408096313, 0.2866433262825012, 0.3960343897342682, -0.5821334719657898, -0.06556760519742966, -0.13460035622119904, 0.40827253460884094], [-0.4371702969074249, 0.2100808024406433, 0.3595137894153595, -0.250328004360199, 0.28664064407348633, 0.3960343301296234, -0.582135796546936, -0.06556590646505356, -0.13459892570972443, 0.40827569365501404], [-0.43717247247695923, 0.21008215844631195, 0.35951539874076843, -0.2503304183483124, 0.2866402566432953, 0.3960375189781189, -0.5821363925933838, -0.06556583940982819, -0.13459883630275726, 0.40827566385269165], [-0.43717145919799805, 0.21008139848709106, 0.35951557755470276, -0.25032880902290344, 0.2866404950618744, 0.3960367739200592, -0.5821368098258972, -0.06556521356105804, -0.1345989853143692, 0.4082774817943573], [-0.4371688663959503, 0.2100761979818344, 0.3595145642757416, -0.25032323598861694, 0.2866419553756714, 0.3960321545600891, -0.5821354389190674, -0.06556661427021027, -0.13460011780261993, 0.4082786440849304], [-0.4371671974658966, 0.21007144451141357, 0.3595131039619446, -0.25031882524490356, 0.2866450846195221, 0.3960280418395996, -0.5821326375007629, -0.06556916981935501, -0.13460217416286469, 0.40827786922454834], [-0.4371658265590668, 0.21006886661052704, 0.3595115542411804, -0.2503162622451782, 0.2866477370262146, 0.3960249722003937, -0.5821302533149719, -0.06557115167379379, -0.134603813290596, 0.4082767069339752], [-0.43716341257095337, 0.21006515622138977, 0.35950967669487, -0.25031203031539917, 0.28664979338645935, 0.39602044224739075, -0.58212810754776, -0.06557280570268631, -0.13460512459278107, 0.40827611088752747], [-0.43716347217559814, 0.21006444096565247, 0.3595086932182312, -0.2503119111061096, 0.2866511344909668, 0.39601942896842957, -0.5821264982223511, -0.0655742809176445, -0.13460597395896912, 0.4082741439342499], [-0.4371628761291504, 0.21006426215171814, 0.35950788855552673, -0.2503114640712738, 0.2866516709327698, 0.396018385887146, -0.5821259021759033, -0.06557447463274002, -0.13460621237754822, 0.4082734286785126], [-0.437159925699234, 0.21005931496620178, 0.35950618982315063, -0.25030583143234253, 0.2866530120372772, 0.3960131108760834, -0.5821244120597839, -0.06557543575763702, -0.13460703194141388, 0.408273845911026], [-0.43716174364089966, 0.21006032824516296, 0.3595059812068939, -0.25030821561813354, 0.28665411472320557, 0.39601457118988037, -0.5821231007575989, -0.06557697057723999, -0.13460767269134521, 0.4082711338996887], [-0.43715760111808777, 0.21005532145500183, 0.35950401425361633, -0.2503015398979187, 0.2866557836532593, 0.3960084319114685, -0.5821218490600586, -0.06557708978652954, -0.13460864126682281, 0.40827256441116333], [-0.43715816736221313, 0.21005362272262573, 0.3595031499862671, -0.2503012418746948, 0.2866572439670563, 0.3960074186325073, -0.5821199417114258, -0.06557948887348175, -0.13460958003997803, 0.4082702696323395], [-0.43715929985046387, 0.2100566029548645, 0.3595031499862671, -0.2503041923046112, 0.2866576015949249, 0.3960094153881073, -0.5821198225021362, -0.06557916104793549, -0.13460959494113922, 0.40826886892318726], [-0.43715524673461914, 0.21005123853683472, 0.3595013916492462, -0.2502973675727844, 0.2866581082344055, 0.39600327610969543, -0.5821192264556885, -0.06557920575141907, -0.13460995256900787, 0.4082707464694977], [-0.43715324997901917, 0.21004456281661987, 0.35949957370758057, -0.2502915561199188, 0.28666114807128906, 0.39599788188934326, -0.5821160078048706, -0.06558220088481903, -0.13461197912693024, 0.40826940536499023], [-0.4371534585952759, 0.21004393696784973, 0.35949835181236267, -0.2502914071083069, 0.28666403889656067, 0.3959968090057373, -0.5821135640144348, -0.06558419018983841, -0.13461358845233917, 0.4082670211791992], [-0.4371514320373535, 0.21004214882850647, 0.35949674248695374, -0.25028884410858154, 0.2866651117801666, 0.39599356055259705, -0.5821124911308289, -0.06558486074209213, -0.13461419939994812, 0.4082668423652649], [-0.4371512830257416, 0.21004123985767365, 0.35949602723121643, -0.2502884268760681, 0.2866656482219696, 0.3959924876689911, -0.5821114778518677, -0.0655858963727951, -0.13461457192897797, 0.40826544165611267], [-0.43715256452560425, 0.21004372835159302, 0.35949617624282837, -0.25029119849205017, 0.2866654396057129, 0.3959944546222687, -0.5821115970611572, -0.06558561325073242, -0.13461428880691528, 0.4082641303539276], [-0.43715018033981323, 0.21004095673561096, 0.35949525237083435, -0.25028738379478455, 0.2866654396057129, 0.39599114656448364, -0.5821115374565125, -0.0655851662158966, -0.1346142590045929, 0.4082653522491455], [-0.43715181946754456, 0.2100415974855423, 0.35949546098709106, -0.25028926134109497, 0.2866657078266144, 0.39599254727363586, -0.5821110010147095, -0.06558610498905182, -0.13461437821388245, 0.4082637131214142], [-0.43715497851371765, 0.21004822850227356, 0.35949692130088806, -0.2502962052822113, 0.28666412830352783, 0.395998477935791, -0.5821127891540527, -0.06558454036712646, -0.13461320102214813, 0.4082627594470978], [-0.4371505677700043, 0.21004323661327362, 0.35949593782424927, -0.25028911232948303, 0.28666335344314575, 0.39599284529685974, -0.58211350440979, -0.06558315455913544, -0.13461284339427948, 0.4082663357257843], [-0.43714964389801025, 0.21003732085227966, 0.3594949245452881, -0.25028449296951294, 0.28666576743125916, 0.39598900079727173, -0.5821108818054199, -0.06558604538440704, -0.1346145123243332, 0.40826526284217834], [-0.4371483623981476, 0.21003443002700806, 0.3594934940338135, -0.25028154253959656, 0.28666919469833374, 0.3959859311580658, -0.5821082592010498, -0.06558799743652344, -0.13461656868457794, 0.4082641899585724], [-0.4371461868286133, 0.21003112196922302, 0.35949161648750305, -0.25027793645858765, 0.28667131066322327, 0.3959817588329315, -0.5821062326431274, -0.0655897930264473, -0.134617879986763, 0.4082636535167694], [-0.4371470510959625, 0.21003229916095734, 0.35949113965034485, -0.2502797245979309, 0.28667205572128296, 0.39598244428634644, -0.5821051597595215, -0.06559092551469803, -0.1346183568239212, 0.40826141834259033], [-0.43714627623558044, 0.21003247797489166, 0.3594905734062195, -0.2502793073654175, 0.28667187690734863, 0.3959815800189972, -0.5821052193641663, -0.06559031456708908, -0.13461817800998688, 0.4082614481449127], [-0.4371446967124939, 0.21002936363220215, 0.35948964953422546, -0.25027602910995483, 0.28667235374450684, 0.39597856998443604, -0.582104504108429, -0.06559096276760101, -0.13461846113204956, 0.4082615375518799], [-0.4371446669101715, 0.21002793312072754, 0.3594890534877777, -0.2502751350402832, 0.28667375445365906, 0.39597752690315247, -0.5821031332015991, -0.06559209525585175, -0.13461926579475403, 0.4082603454589844], [-0.4371466636657715, 0.21003174781799316, 0.3594895005226135, -0.25027936697006226, 0.2866733968257904, 0.39598071575164795, -0.5821034908294678, -0.06559184938669205, -0.1346188485622406, 0.40825897455215454], [-0.4371458888053894, 0.2100323885679245, 0.3594895303249359, -0.25027915835380554, 0.28667208552360535, 0.3959805369377136, -0.5821046829223633, -0.065590500831604, -0.13461805880069733, 0.40826013684272766], [-0.4371490478515625, 0.2100367695093155, 0.35949110984802246, -0.25028467178344727, 0.28667011857032776, 0.3959854543209076, -0.5821061134338379, -0.0655897781252861, -0.13461685180664062, 0.4082590937614441], [-0.437151700258255, 0.21004317700862885, 0.3594931662082672, -0.25029078125953674, 0.28666722774505615, 0.39599141478538513, -0.5821090340614319, -0.06558694690465927, -0.13461486995220184, 0.4082597494125366], [-0.4371523857116699, 0.21004536747932434, 0.359494686126709, -0.25029250979423523, 0.286664217710495, 0.3959938883781433, -0.5821118950843811, -0.06558454781770706, -0.1346130222082138, 0.4082619547843933], [-0.43715524673461914, 0.21004930138587952, 0.3594968914985657, -0.2502971887588501, 0.2866620421409607, 0.39599892497062683, -0.582114040851593, -0.06558314710855484, -0.13461174070835114, 0.40826237201690674], [-0.43716123700141907, 0.21006055176258087, 0.3595006763935089, -0.2503092586994171, 0.28665775060653687, 0.39601030945777893, -0.5821183323860168, -0.06557981669902802, -0.13460895419120789, 0.40826234221458435], [-0.43715623021125793, 0.21005555987358093, 0.3595007658004761, -0.250301331281662, 0.28665557503700256, 0.39600512385368347, -0.5821207761764526, -0.06557677686214447, -0.13460782170295715, 0.40826863050460815], [-0.4371558427810669, 0.21004915237426758, 0.35950055718421936, -0.25029677152633667, 0.28665778040885925, 0.3960021138191223, -0.582118570804596, -0.06557991355657578, -0.13460949063301086, 0.4082682132720947], [-0.4371570944786072, 0.2100505381822586, 0.35950055718421936, -0.25029855966567993, 0.28666049242019653, 0.39600348472595215, -0.582116961479187, -0.06558108329772949, -0.13461104035377502, 0.4082668125629425], [-0.4371575117111206, 0.2100536823272705, 0.3595007061958313, -0.25030121207237244, 0.28665947914123535, 0.39600515365600586, -0.5821178555488586, -0.0655805915594101, -0.13461041450500488, 0.4082670211791992], [-0.4371565878391266, 0.21005311608314514, 0.3595007658004761, -0.2503000795841217, 0.28665846586227417, 0.3960043489933014, -0.5821184515953064, -0.06557989865541458, -0.13460995256900787, 0.4082679748535156], [-0.4371577799320221, 0.21005399525165558, 0.35950133204460144, -0.2503015995025635, 0.2866581082344055, 0.39600592851638794, -0.5821186304092407, -0.06557992845773697, -0.13460974395275116, 0.40826737880706787], [-0.4371599555015564, 0.2100582718849182, 0.35950252413749695, -0.250306099653244, 0.28665682673454285, 0.39601001143455505, -0.5821200013160706, -0.06557874381542206, -0.13460880517959595, 0.4082671105861664], [-0.43715572357177734, 0.2100525051355362, 0.35950136184692383, -0.2502986490726471, 0.28665709495544434, 0.3960040807723999, -0.5821199417114258, -0.06557825207710266, -0.13460910320281982, 0.4082701504230499], [-0.43715566396713257, 0.21004855632781982, 0.35950061678886414, -0.25029611587524414, 0.28665944933891296, 0.39600178599357605, -0.5821175575256348, -0.06558103114366531, -0.13461071252822876, 0.40826860070228577], [-0.4371506869792938, 0.21004045009613037, 0.3594977855682373, -0.25028669834136963, 0.2866637706756592, 0.395993173122406, -0.582114040851593, -0.06558319926261902, -0.13461340963840485, 0.4082692563533783], [-0.43715253472328186, 0.21004115045070648, 0.3594968020915985, -0.2502892017364502, 0.28666597604751587, 0.3959938883781433, -0.5821115970611572, -0.06558632105588913, -0.1346147209405899, 0.40826553106307983], [-0.437154620885849, 0.21004782617092133, 0.35949745774269104, -0.2502954602241516, 0.286664754152298, 0.39599841833114624, -0.5821126699447632, -0.06558476388454437, -0.1346137821674347, 0.4082641303539276], [-0.43715232610702515, 0.21004635095596313, 0.3594970107078552, -0.25029268860816956, 0.28666263818740845, 0.39599609375, -0.5821141600608826, -0.06558313220739365, -0.1346125304698944, 0.40826621651649475], [-0.43715330958366394, 0.2100452184677124, 0.3594973683357239, -0.25029268860816956, 0.2866627275943756, 0.39599645137786865, -0.5821136832237244, -0.06558383256196976, -0.13461264967918396, 0.40826523303985596], [-0.4371570944786072, 0.2100517451763153, 0.3594989478588104, -0.2502999007701874, 0.28666165471076965, 0.39600273966789246, -0.582115113735199, -0.06558265537023544, -0.13461171090602875, 0.4082638621330261], [-0.43715429306030273, 0.21004989743232727, 0.35949867963790894, -0.2502962648868561, 0.2866602838039398, 0.3959999680519104, -0.5821166038513184, -0.06558085978031158, -0.13461089134216309, 0.4082670211791992], [-0.43715226650238037, 0.21004362404346466, 0.35949769616127014, -0.25029051303863525, 0.28666186332702637, 0.3959954082965851, -0.5821148157119751, -0.06558280438184738, -0.13461214303970337, 0.4082673192024231], [-0.4371517300605774, 0.21004080772399902, 0.3594966530799866, -0.2502882182598114, 0.28666505217552185, 0.39599311351776123, -0.5821122527122498, -0.0655849352478981, -0.1346140205860138, 0.4082658886909485], [-0.4371494948863983, 0.21003767848014832, 0.3594948947429657, -0.25028449296951294, 0.28666725754737854, 0.3959890902042389, -0.5821103453636169, -0.06558642536401749, -0.13461536169052124, 0.4082656502723694], [-0.4371487498283386, 0.21003593504428864, 0.3594937026500702, -0.25028303265571594, 0.28666871786117554, 0.395986944437027, -0.5821086764335632, -0.0655880942940712, -0.13461633026599884, 0.40826427936553955], [-0.43714845180511475, 0.21003583073616028, 0.3594929873943329, -0.2502829134464264, 0.28666952252388, 0.3959862291812897, -0.5821077227592468, -0.06558862328529358, -0.13461680710315704, 0.4082631766796112], [-0.43714651465415955, 0.21003282070159912, 0.3594917058944702, -0.25027942657470703, 0.28667035698890686, 0.3959827423095703, -0.5821067690849304, -0.06558918207883835, -0.13461729884147644, 0.40826326608657837], [-0.437147855758667, 0.2100338339805603, 0.35949161648750305, -0.25028133392333984, 0.28667086362838745, 0.39598387479782104, -0.5821059942245483, -0.06559006869792938, -0.13461759686470032, 0.40826138854026794], [-0.43714815378189087, 0.21003569662570953, 0.3594916760921478, -0.2502828538417816, 0.28667038679122925, 0.3959849178791046, -0.5821065306663513, -0.06558927148580551, -0.1346171498298645, 0.4082612693309784], [-0.437148779630661, 0.2100372314453125, 0.35949212312698364, -0.25028443336486816, 0.2866691052913666, 0.39598628878593445, -0.5821075439453125, -0.06558854877948761, -0.13461633026599884, 0.4082612991333008], [-0.4371485114097595, 0.21003681421279907, 0.35949230194091797, -0.2502838373184204, 0.2866686284542084, 0.39598608016967773, -0.5821079611778259, -0.06558793783187866, -0.13461604714393616, 0.40826186537742615], [-0.43715012073516846, 0.21003878116607666, 0.3594929873943329, -0.25028640031814575, 0.286668062210083, 0.39598846435546875, -0.5821084976196289, -0.06558775901794434, -0.13461562991142273, 0.40826135873794556], [-0.4371442198753357, 0.21002979576587677, 0.3594907820224762, -0.2502754330635071, 0.28667017817497253, 0.3959793448448181, -0.5821068286895752, -0.06558835506439209, -0.13461709022521973, 0.40826427936553955], [-0.4371480643749237, 0.2100316882133484, 0.3594910502433777, -0.2502802014350891, 0.2866719365119934, 0.3959827125072479, -0.5821048021316528, -0.06559145450592041, -0.13461817800998688, 0.40826013684272766], [-0.4371500313282013, 0.21003904938697815, 0.35949209332466125, -0.2502865791320801, 0.2866705656051636, 0.39598777890205383, -0.5821066498756409, -0.06558909267187119, -0.13461703062057495, 0.40825986862182617], [-0.4371505379676819, 0.21004216372966766, 0.3594931662082672, -0.2502892017364502, 0.28666675090789795, 0.3959902226924896, -0.5821096301078796, -0.06558676809072495, -0.1346147507429123, 0.4082614779472351], [-0.4371507465839386, 0.21004167199134827, 0.359494149684906, -0.25028878450393677, 0.2866654098033905, 0.39599087834358215, -0.5821107029914856, -0.06558561325073242, -0.1346140205860138, 0.4082624912261963], [-0.4371499717235565, 0.2100391685962677, 0.35949403047561646, -0.25028619170188904, 0.2866661846637726, 0.395989328622818, -0.5821103453636169, -0.0655859187245369, -0.13461445271968842, 0.40826335549354553], [-0.4371478855609894, 0.21003462374210358, 0.35949286818504333, -0.2502814829349518, 0.2866683900356293, 0.3959852457046509, -0.5821086764335632, -0.06558743864297867, -0.13461589813232422, 0.40826383233070374], [-0.43715018033981323, 0.2100374549627304, 0.3594931662082672, -0.25028541684150696, 0.28666916489601135, 0.3959880471229553, -0.5821079015731812, -0.06558865308761597, -0.13461638987064362, 0.40826162695884705], [-0.43714869022369385, 0.21003763377666473, 0.35949277877807617, -0.250284343957901, 0.2866687476634979, 0.395986944437027, -0.5821084380149841, -0.065587617456913, -0.13461609184741974, 0.40826281905174255], [-0.43714600801467896, 0.2100321650505066, 0.3594915270805359, -0.25027862191200256, 0.28666967153549194, 0.3959819972515106, -0.5821071863174438, -0.06558876484632492, -0.13461685180664062, 0.4082634747028351], [-0.437150776386261, 0.210037961602211, 0.35949280858039856, -0.2502865195274353, 0.2866697609424591, 0.3959883749485016, -0.5821069478988647, -0.06558948755264282, -0.13461677730083466, 0.4082599878311157], [-0.43714791536331177, 0.21003733575344086, 0.3594922423362732, -0.25028347969055176, 0.2866688370704651, 0.3959859013557434, -0.582108199596405, -0.0655873492360115, -0.13461609184741974, 0.4082627594470978], [-0.4371441602706909, 0.21002845466136932, 0.35949042439460754, -0.25027474761009216, 0.2866705656051636, 0.3959784507751465, -0.5821061134338379, -0.06558956950902939, -0.13461744785308838, 0.4082636833190918], [-0.43714645504951477, 0.21002914011478424, 0.35949012637138367, -0.25027716159820557, 0.2866734266281128, 0.39598003029823303, -0.5821036100387573, -0.06559202075004578, -0.1346191167831421, 0.40826016664505005], [-0.4371480345726013, 0.21003484725952148, 0.3594905734062195, -0.250282347202301, 0.2866724133491516, 0.39598366618156433, -0.5821048021316528, -0.06559078395366669, -0.13461823761463165, 0.4082595705986023], [-0.43714702129364014, 0.21003521978855133, 0.3594907522201538, -0.25028184056282043, 0.2866702079772949, 0.3959832787513733, -0.5821064710617065, -0.06558922678232193, -0.1346169412136078, 0.4082610607147217], [-0.43714281916618347, 0.21002650260925293, 0.3594890832901001, -0.2502725124359131, 0.28667205572128296, 0.3959757685661316, -0.5821045637130737, -0.06559047102928162, -0.13461832702159882, 0.40826258063316345], [-0.43714338541030884, 0.21002358198165894, 0.35948798060417175, -0.25027117133140564, 0.2866755723953247, 0.39597415924072266, -0.5821014642715454, -0.0655936449766159, -0.13462042808532715, 0.40825992822647095], [-0.43714332580566406, 0.21002504229545593, 0.3594872057437897, -0.2502721846103668, 0.28667697310447693, 0.3959740400314331, -0.5821004509925842, -0.0655941441655159, -0.13462112843990326, 0.408258855342865], [-0.4371441900730133, 0.21002784371376038, 0.35948729515075684, -0.2502750754356384, 0.2866756021976471, 0.39597585797309875, -0.5821012854576111, -0.06559374183416367, -0.1346202790737152, 0.40825822949409485], [-0.43714621663093567, 0.21003220975399017, 0.3594886362552643, -0.25027963519096375, 0.286673367023468, 0.3959798812866211, -0.5821030139923096, -0.06559202075004578, -0.1346188485622406, 0.4082578122615814], [-0.43714532256126404, 0.210031658411026, 0.35948890447616577, -0.2502783238887787, 0.2866719663143158, 0.3959794044494629, -0.5821043848991394, -0.06559053808450699, -0.13461793959140778, 0.4082595705986023], [-0.43714815378189087, 0.21003469824790955, 0.3594903349876404, -0.25028255581855774, 0.28667083382606506, 0.3959834575653076, -0.5821053385734558, -0.06559023261070251, -0.1346171796321869, 0.40825870633125305], [-0.43714720010757446, 0.21003465354442596, 0.35949060320854187, -0.25028151273727417, 0.2866702973842621, 0.39598309993743896, -0.582106351852417, -0.06558888405561447, -0.13461683690547943, 0.4082604944705963], [-0.43714913725852966, 0.21003681421279907, 0.35949164628982544, -0.2502845823764801, 0.2866692543029785, 0.3959859609603882, -0.5821071863174438, -0.06558885425329208, -0.1346162110567093, 0.4082601070404053], [-0.43715256452560425, 0.21004383265972137, 0.35949379205703735, -0.2502918243408203, 0.2866669297218323, 0.3959926664829254, -0.5821095705032349, -0.06558675318956375, -0.13461469113826752, 0.40825989842414856], [-0.43715354800224304, 0.21004772186279297, 0.35949552059173584, -0.2502949833869934, 0.2866634726524353, 0.39599618315696716, -0.5821128487586975, -0.06558389216661453, -0.13461259007453918, 0.40826213359832764], [-0.4371592104434967, 0.21005681157112122, 0.3594991862773895, -0.2503054141998291, 0.2866591215133667, 0.3960062563419342, -0.5821167230606079, -0.06558123975992203, -0.1346098929643631, 0.40826189517974854], [-0.4371604323387146, 0.21006172895431519, 0.35950177907943726, -0.2503090798854828, 0.286655068397522, 0.3960111141204834, -0.5821210145950317, -0.06557700783014297, -0.13460734486579895, 0.4082653820514679], [-0.43716076016426086, 0.21006137132644653, 0.35950344800949097, -0.2503087818622589, 0.2866528332233429, 0.39601239562034607, -0.5821231603622437, -0.06557571142911911, -0.13460618257522583, 0.40826794505119324], [-0.4371595084667206, 0.21005775034427643, 0.3595036566257477, -0.25030502676963806, 0.286653995513916, 0.3960103392601013, -0.5821226239204407, -0.06557609140872955, -0.13460706174373627, 0.40826964378356934], [-0.4371551275253296, 0.2100488245487213, 0.35950151085853577, -0.25029540061950684, 0.28665778040885925, 0.39600226283073425, -0.5821196436882019, -0.06557873636484146, -0.13460958003997803, 0.40827107429504395], [-0.4371521472930908, 0.2100411057472229, 0.3594987690448761, -0.250288188457489, 0.2866629958152771, 0.3959951400756836, -0.5821148753166199, -0.06558317691087723, -0.13461299240589142, 0.40826958417892456], [-0.4371469020843506, 0.21003195643424988, 0.3594948351383209, -0.25027820467948914, 0.28666871786117554, 0.39598503708839417, -0.5821096301078796, -0.06558725237846375, -0.1346166580915451, 0.4082685112953186], [-0.43714794516563416, 0.2100321650505066, 0.35949307680130005, -0.25027990341186523, 0.2866716682910919, 0.395984411239624, -0.5821062326431274, -0.06559070199728012, -0.13461841642856598, 0.4082639813423157], [-0.4371465742588043, 0.21003295481204987, 0.3594916760921478, -0.25027957558631897, 0.28667211532592773, 0.3959828019142151, -0.5821055769920349, -0.06559038907289505, -0.13461852073669434, 0.40826302766799927], [-0.4371456801891327, 0.2100314199924469, 0.35949066281318665, -0.250278115272522, 0.2866717576980591, 0.3959808349609375, -0.5821051597595215, -0.0655907616019249, -0.13461829721927643, 0.4082622528076172], [-0.4371502697467804, 0.2100384533405304, 0.3594922423362732, -0.2502865791320801, 0.28667017817497253, 0.39598777890205383, -0.5821062922477722, -0.06558986753225327, -0.13461709022521973, 0.40825945138931274], [-0.43714892864227295, 0.21003952622413635, 0.3594925105571747, -0.2502859830856323, 0.28666791319847107, 0.3959876596927643, -0.5821086764335632, -0.06558706611394882, -0.13461554050445557, 0.4082619249820709], [-0.43714818358421326, 0.21003614366054535, 0.3594924509525299, -0.2502830922603607, 0.2866676449775696, 0.3959857225418091, -0.5821086168289185, -0.06558754295110703, -0.13461551070213318, 0.40826255083084106], [-0.4371476173400879, 0.21003358066082, 0.3594919741153717, -0.2502807080745697, 0.28666970133781433, 0.39598390460014343, -0.5821071267127991, -0.06558859348297119, -0.13461674749851227, 0.4082622528076172], [-0.43714889883995056, 0.21003566682338715, 0.3594920337200165, -0.2502833306789398, 0.28667014837265015, 0.3959856927394867, -0.5821068286895752, -0.06558923423290253, -0.1346169114112854, 0.40826117992401123], [-0.43714913725852966, 0.21003782749176025, 0.35949239134788513, -0.25028499960899353, 0.28666913509368896, 0.395986944437027, -0.5821077823638916, -0.06558826565742493, -0.13461627066135406, 0.4082615077495575], [-0.43715140223503113, 0.21004199981689453, 0.3594937324523926, -0.2502896189689636, 0.28666698932647705, 0.39599108695983887, -0.5821095108985901, -0.06558704376220703, -0.134614959359169, 0.40826115012168884], [-0.4371509850025177, 0.21004238724708557, 0.3594943583011627, -0.25028932094573975, 0.28666555881500244, 0.3959914743900299, -0.5821109414100647, -0.06558539718389511, -0.13461405038833618, 0.40826281905174255], [-0.43715399503707886, 0.21004638075828552, 0.35949596762657166, -0.25029435753822327, 0.28666388988494873, 0.3959962725639343, -0.5821124315261841, -0.06558474153280258, -0.13461299240589142, 0.4082622528076172], [-0.43715521693229675, 0.2100500762462616, 0.3594975173473358, -0.25029754638671875, 0.28666189312934875, 0.3959997594356537, -0.5821146368980408, -0.06558247655630112, -0.13461174070835114, 0.40826353430747986], [-0.4371543228626251, 0.21004877984523773, 0.35949796438217163, -0.2502957880496979, 0.28666067123413086, 0.395999014377594, -0.5821157693862915, -0.06558163464069366, -0.1346110701560974, 0.40826553106307983], [-0.43715596199035645, 0.21004991233348846, 0.35949891805648804, -0.25029775500297546, 0.2866606116294861, 0.39600124955177307, -0.5821160078048706, -0.06558184325695038, -0.1346110701560974, 0.4082651436328888], [-0.4371558427810669, 0.21005068719387054, 0.3594992458820343, -0.25029802322387695, 0.28666040301322937, 0.39600175619125366, -0.5821165442466736, -0.06558112800121307, -0.13461092114448547, 0.4082661271095276], [-0.43715620040893555, 0.21005122363567352, 0.35949966311454773, -0.2502986490726471, 0.28665977716445923, 0.39600250124931335, -0.5821170210838318, -0.0655810758471489, -0.1346106231212616, 0.40826642513275146], [-0.43715617060661316, 0.2100512832403183, 0.3594999313354492, -0.2502985894680023, 0.28665971755981445, 0.3960026800632477, -0.5821171998977661, -0.06558080017566681, -0.1346106231212616, 0.4082668423652649], [-0.4371565282344818, 0.2100517451763153, 0.3595001697540283, -0.2502991855144501, 0.28665944933891296, 0.3960033357143402, -0.5821174383163452, -0.06558080017566681, -0.13461050391197205, 0.40826690196990967], [-0.43715640902519226, 0.2100517600774765, 0.35950028896331787, -0.25029903650283813, 0.2866593897342682, 0.3960033357143402, -0.5821175575256348, -0.06558054685592651, -0.13461050391197205, 0.40826719999313354], [-0.4371575117111206, 0.2100534588098526, 0.35950082540512085, -0.2503010630607605, 0.28665879368782043, 0.39600512385368347, -0.582118034362793, -0.06558036804199219, -0.1346101015806198, 0.40826690196990967], [-0.43716102838516235, 0.21006019413471222, 0.35950273275375366, -0.2503083348274231, 0.2866564989089966, 0.3960115611553192, -0.5821201801300049, -0.06557869166135788, -0.13460858166217804, 0.4082662761211395], [-0.43715980648994446, 0.2100604623556137, 0.3595033884048462, -0.2503072917461395, 0.2866542637348175, 0.39601147174835205, -0.5821223855018616, -0.06557633727788925, -0.1346072256565094, 0.40826907753944397], [-0.43715900182724, 0.21005700528621674, 0.35950344800949097, -0.2503041923046112, 0.2866544723510742, 0.39600953459739685, -0.5821220874786377, -0.0655769482254982, -0.13460755348205566, 0.40826988220214844], [-0.4371613562107086, 0.21005958318710327, 0.3595042824745178, -0.25030773878097534, 0.28665509819984436, 0.3960127532482147, -0.5821218490600586, -0.06557740271091461, -0.13460785150527954, 0.40826860070228577], [-0.4371623992919922, 0.21006353199481964, 0.35950517654418945, -0.25031110644340515, 0.2866535782814026, 0.3960156738758087, -0.5821234583854675, -0.06557589769363403, -0.13460682332515717, 0.4082692861557007], [-0.43715909123420715, 0.21005874872207642, 0.35950443148612976, -0.25030517578125, 0.28665339946746826, 0.39601102471351624, -0.5821235775947571, -0.06557561457157135, -0.13460691273212433, 0.40827178955078125], [-0.4371623396873474, 0.21006110310554504, 0.3595053553581238, -0.2503094971179962, 0.2866538465023041, 0.3960148096084595, -0.5821229815483093, -0.06557688117027283, -0.1346072256565094, 0.40826934576034546], [-0.43716490268707275, 0.21006813645362854, 0.3595069348812103, -0.2503160834312439, 0.2866518795490265, 0.3960205316543579, -0.582125186920166, -0.06557457149028778, -0.1346057653427124, 0.40826940536499023], [-0.43716660141944885, 0.2100730985403061, 0.35950878262519836, -0.2503207325935364, 0.28664788603782654, 0.3960250914096832, -0.5821287035942078, -0.06557183712720871, -0.13460330665111542, 0.4082709848880768], [-0.4371686279773712, 0.21007655560970306, 0.35951098799705505, -0.2503243684768677, 0.28664490580558777, 0.39602938294410706, -0.5821314454078674, -0.06556951254606247, -0.13460154831409454, 0.40827223658561707], [-0.4371679127216339, 0.2100752890110016, 0.35951170325279236, -0.25032252073287964, 0.2866440415382385, 0.3960290551185608, -0.5821326375007629, -0.06556835025548935, -0.13460105657577515, 0.40827450156211853], [-0.43716686964035034, 0.21007178723812103, 0.35951149463653564, -0.2503191828727722, 0.28664517402648926, 0.3960267901420593, -0.5821318030357361, -0.06556929647922516, -0.1346019059419632, 0.40827545523643494], [-0.4371695816516876, 0.21007543802261353, 0.35951244831085205, -0.2503238618373871, 0.2866455018520355, 0.3960307240486145, -0.5821317434310913, -0.0655699074268341, -0.13460208475589752, 0.40827393531799316], [-0.43716326355934143, 0.21006743609905243, 0.35951024293899536, -0.25031325221061707, 0.28664714097976685, 0.3960217535495758, -0.5821306109428406, -0.06556989997625351, -0.13460324704647064, 0.4082775115966797], [-0.4371652603149414, 0.21006610989570618, 0.35950982570648193, -0.2503143846988678, 0.2866491675376892, 0.39602211117744446, -0.5821280479431152, -0.06557338684797287, -0.13460466265678406, 0.4082741141319275], [-0.43716588616371155, 0.21006953716278076, 0.35950982570648193, -0.25031715631484985, 0.28664979338645935, 0.3960239589214325, -0.5821279287338257, -0.06557260453701019, -0.13460485637187958, 0.408273309469223], [-0.43716567754745483, 0.2100706845521927, 0.35950979590415955, -0.25031790137290955, 0.28664806485176086, 0.39602425694465637, -0.582129180431366, -0.0655718594789505, -0.13460375368595123, 0.4082739055156708], [-0.43716272711753845, 0.21006521582603455, 0.359508752822876, -0.25031185150146484, 0.28664901852607727, 0.3960193395614624, -0.58212810754776, -0.06557224690914154, -0.1346045434474945, 0.4082750380039215], [-0.43716466426849365, 0.21006585657596588, 0.359508752822876, -0.2503139078617096, 0.28665032982826233, 0.3960208594799042, -0.5821268558502197, -0.06557393074035645, -0.13460524380207062, 0.40827271342277527], [-0.4371630549430847, 0.21006503701210022, 0.3595079779624939, -0.25031206011772156, 0.2866511046886444, 0.3960188925266266, -0.5821265578269958, -0.06557351350784302, -0.13460561633110046, 0.40827345848083496], [-0.43716365098953247, 0.21006539463996887, 0.35950785875320435, -0.25031301379203796, 0.28665080666542053, 0.3960193395614624, -0.5821263790130615, -0.06557419896125793, -0.13460548222064972, 0.4082725942134857], [-0.4371614456176758, 0.21006223559379578, 0.3595069348812103, -0.2503090500831604, 0.2866518199443817, 0.3960159718990326, -0.5821255445480347, -0.06557433307170868, -0.13460615277290344, 0.40827327966690063], [-0.43716028332710266, 0.21005862951278687, 0.3595057725906372, -0.25030580163002014, 0.2866535484790802, 0.3960128128528595, -0.5821237564086914, -0.06557609140872955, -0.1346072554588318, 0.40827253460884094], [-0.4371582865715027, 0.21005471050739288, 0.3595041334629059, -0.25030168890953064, 0.2866561710834503, 0.39600870013237, -0.5821214914321899, -0.06557776033878326, -0.13460886478424072, 0.4082719385623932], [-0.43715593218803406, 0.2100500762462616, 0.35950207710266113, -0.2502969801425934, 0.28665876388549805, 0.39600372314453125, -0.5821189284324646, -0.06557999551296234, -0.13461050391197205, 0.40827104449272156], [-0.4371541142463684, 0.21004632115364075, 0.3595001697540283, -0.2502932846546173, 0.2866614758968353, 0.3959995210170746, -0.5821161866188049, -0.06558216363191605, -0.13461220264434814, 0.4082695543766022], [-0.4371541738510132, 0.21004627645015717, 0.3594990372657776, -0.2502936124801636, 0.28666290640830994, 0.3959987461566925, -0.5821146368980408, -0.06558353453874588, -0.13461296260356903, 0.4082675576210022], [-0.4371524155139923, 0.21004438400268555, 0.3594977557659149, -0.2502910792827606, 0.28666365146636963, 0.3959958553314209, -0.5821137428283691, -0.06558382511138916, -0.13461337983608246, 0.4082673192024231], [-0.4371560513973236, 0.21004964411258698, 0.3594987392425537, -0.25029775500297546, 0.2866624593734741, 0.39600101113319397, -0.5821143984794617, -0.06558377295732498, -0.13461250066757202, 0.408264696598053], [-0.43715015053749084, 0.21004250645637512, 0.35949674248695374, -0.2502879798412323, 0.2866632044315338, 0.39599287509918213, -0.5821139812469482, -0.0655827596783638, -0.13461299240589142, 0.40826815366744995], [-0.43714991211891174, 0.21003709733486176, 0.3594954013824463, -0.2502845227718353, 0.28666600584983826, 0.39598944783210754, -0.5821108818054199, -0.06558652222156525, -0.13461481034755707, 0.4082657992839813], [-0.43715229630470276, 0.21004147827625275, 0.35949552059173584, -0.2502893805503845, 0.28666749596595764, 0.3959929049015045, -0.5821099281311035, -0.06558696180582047, -0.13461551070213318, 0.4082631468772888], [-0.43715280294418335, 0.21004556119441986, 0.3594958782196045, -0.25029271841049194, 0.286665141582489, 0.395995169878006, -0.5821119546890259, -0.0655851885676384, -0.13461393117904663, 0.4082637131214142], [-0.4371508061885834, 0.21004249155521393, 0.3594955503940582, -0.25028905272483826, 0.286664217710495, 0.39599233865737915, -0.5821123719215393, -0.06558447331190109, -0.1346135288476944, 0.4082651734352112], [-0.437154084444046, 0.21004556119441986, 0.35949671268463135, -0.2502936124801636, 0.2866639792919159, 0.3959965407848358, -0.5821125507354736, -0.06558489054441452, -0.1346132606267929, 0.4082632064819336], [-0.4371558725833893, 0.21005092561244965, 0.3594980537891388, -0.25029852986335754, 0.28666210174560547, 0.3960009217262268, -0.5821147561073303, -0.06558264791965485, -0.13461191952228546, 0.40826383233070374], [-0.43715623021125793, 0.2100527435541153, 0.35949915647506714, -0.25029996037483215, 0.28665944933891296, 0.39600270986557007, -0.5821170210838318, -0.06558087468147278, -0.1346103698015213, 0.40826550126075745], [-0.4371570944786072, 0.2100534588098526, 0.3595002293586731, -0.25030091404914856, 0.286658376455307, 0.39600443840026855, -0.5821179747581482, -0.06558002531528473, -0.13460977375507355, 0.40826615691185], [-0.43715840578079224, 0.21005535125732422, 0.3595012128353119, -0.2503030300140381, 0.2866576313972473, 0.39600685238838196, -0.5821189880371094, -0.06557931005954742, -0.134609192609787, 0.4082666039466858], [-0.43715599179267883, 0.21005181968212128, 0.3595007359981537, -0.25029855966567993, 0.2866581082344055, 0.39600345492362976, -0.582118809223175, -0.06557922065258026, -0.13460959494113922, 0.40826863050460815], [-0.43715763092041016, 0.21005254983901978, 0.3595011234283447, -0.25030046701431274, 0.28665876388549805, 0.3960050642490387, -0.5821180939674377, -0.06558049470186234, -0.13461007177829742, 0.40826722979545593], [-0.4371587336063385, 0.21005600690841675, 0.35950177907943726, -0.25030362606048584, 0.2866581380367279, 0.3960077464580536, -0.5821190476417542, -0.06557944416999817, -0.13460959494113922, 0.40826722979545593], [-0.4371621012687683, 0.21006286144256592, 0.35950377583503723, -0.2503109276294708, 0.28665485978126526, 0.39601415395736694, -0.5821218490600586, -0.06557748466730118, -0.13460755348205566, 0.4082670211791992], [-0.4371601939201355, 0.21006152033805847, 0.3595042824745178, -0.25030815601348877, 0.2866530120372772, 0.3960127830505371, -0.5821236371994019, -0.0655752643942833, -0.1346065253019333, 0.40827006101608276], [-0.4371582567691803, 0.2100553959608078, 0.3595035672187805, -0.25030237436294556, 0.2866544723510742, 0.3960084617137909, -0.5821222066879272, -0.06557684391736984, -0.13460761308670044, 0.4082708954811096], [-0.43716204166412354, 0.21005979180335999, 0.3595045506954193, -0.25030839443206787, 0.2866555154323578, 0.396013468503952, -0.5821216106414795, -0.06557793915271759, -0.13460813462734222, 0.4082682132720947], [-0.437160462141037, 0.2100609540939331, 0.35950443148612976, -0.2503078281879425, 0.286654531955719, 0.3960128426551819, -0.5821228623390198, -0.06557617336511612, -0.1346074640750885, 0.40827029943466187], [-0.4371570944786072, 0.2100541889667511, 0.3595031201839447, -0.25030073523521423, 0.2866553068161011, 0.3960069417953491, -0.5821216702461243, -0.06557740271091461, -0.1346082240343094, 0.4082716405391693], [-0.4371578097343445, 0.21005234122276306, 0.35950255393981934, -0.2503000795841217, 0.2866579294204712, 0.39600619673728943, -0.5821192264556885, -0.06557967513799667, -0.1346098631620407, 0.40826934576034546], [-0.4371606409549713, 0.21005845069885254, 0.35950320959091187, -0.25030654668807983, 0.2866574823856354, 0.39601102471351624, -0.5821199417114258, -0.06557917594909668, -0.13460931181907654, 0.40826770663261414], [-0.43715736269950867, 0.2100559026002884, 0.3595024645328522, -0.2503022253513336, 0.28665634989738464, 0.3960072994232178, -0.5821208357810974, -0.06557779014110565, -0.13460873067378998, 0.40827032923698425], [-0.43715858459472656, 0.21005506813526154, 0.3595026731491089, -0.2503027617931366, 0.28665658831596375, 0.3960078954696655, -0.5821201205253601, -0.06557904928922653, -0.13460898399353027, 0.40826883912086487], [-0.43715888261795044, 0.21005623042583466, 0.35950276255607605, -0.25030359625816345, 0.2866571247577667, 0.3960086703300476, -0.5821200609207153, -0.06557860970497131, -0.1346091628074646, 0.4082687199115753], [-0.43715766072273254, 0.21005459129810333, 0.35950222611427307, -0.25030165910720825, 0.28665706515312195, 0.3960067927837372, -0.5821200609207153, -0.06557874381542206, -0.1346091628074646, 0.408269464969635], [-0.43715474009513855, 0.21004870533943176, 0.3595007658004761, -0.25029534101486206, 0.2866591215133667, 0.396001398563385, -0.5821180939674377, -0.06558021157979965, -0.13461056351661682, 0.4082699120044708], [-0.43715900182724, 0.21005387604236603, 0.35950157046318054, -0.2503024637699127, 0.2866595685482025, 0.39600685238838196, -0.5821175575256348, -0.06558135896921158, -0.13461065292358398, 0.40826642513275146], [-0.4371599555015564, 0.2100597321987152, 0.35950255393981934, -0.25030702352523804, 0.28665706515312195, 0.3960106372833252, -0.5821201205253601, -0.06557845324277878, -0.13460895419120789, 0.40826743841171265], [-0.4371618926525116, 0.2100636065006256, 0.3595043420791626, -0.2503111660480499, 0.2866533100605011, 0.3960146903991699, -0.5821230411529541, -0.06557641178369522, -0.13460670411586761, 0.4082682728767395], [-0.43716374039649963, 0.21006684005260468, 0.35950618982315063, -0.2503144443035126, 0.28665101528167725, 0.3960186541080475, -0.5821253061294556, -0.06557423621416092, -0.134605273604393, 0.4082692563533783], [-0.4371635317802429, 0.21006645262241364, 0.3595069944858551, -0.2503136992454529, 0.2866498827934265, 0.39601901173591614, -0.5821266770362854, -0.0655730739235878, -0.1346045732498169, 0.4082711935043335], [-0.43716299533843994, 0.2100643515586853, 0.35950714349746704, -0.2503117620944977, 0.28665047883987427, 0.3960179090499878, -0.5821263790130615, -0.065573550760746, -0.1346050351858139, 0.40827205777168274], [-0.4371612071990967, 0.21006061136722565, 0.3595062494277954, -0.25030776858329773, 0.2866523563861847, 0.39601457118988037, -0.5821249485015869, -0.06557479500770569, -0.13460633158683777, 0.4082725942134857], [-0.43715837597846985, 0.21005485951900482, 0.35950443148612976, -0.2503017485141754, 0.2866552472114563, 0.39600899815559387, -0.5821223258972168, -0.06557709723711014, -0.13460825383663177, 0.40827253460884094], [-0.43715816736221313, 0.21005336940288544, 0.35950323939323425, -0.25030091404914856, 0.2866577208042145, 0.39600735902786255, -0.5821199417114258, -0.06557933241128922, -0.13460980355739594, 0.4082705080509186], [-0.43715900182724, 0.21005606651306152, 0.35950297117233276, -0.25030356645584106, 0.2866578698158264, 0.39600878953933716, -0.5821197032928467, -0.06557943671941757, -0.13460977375507355, 0.40826910734176636], [-0.4371585547924042, 0.21005678176879883, 0.3595028221607208, -0.25030383467674255, 0.28665676712989807, 0.39600870013237, -0.582120418548584, -0.06557857990264893, -0.13460907340049744, 0.40826940536499023], [-0.43716108798980713, 0.21006059646606445, 0.35950401425361633, -0.25030845403671265, 0.28665509819984436, 0.3960127830505371, -0.5821216106414795, -0.06557776033878326, -0.1346079707145691, 0.4082683324813843], [-0.4371633231639862, 0.2100657969713211, 0.35950562357902527, -0.25031349062919617, 0.2866525650024414, 0.39601758122444153, -0.5821241140365601, -0.06557537615299225, -0.1346062421798706, 0.4082688093185425], [-0.43715935945510864, 0.21005988121032715, 0.35950490832328796, -0.2503061294555664, 0.28665223717689514, 0.3960120677947998, -0.5821245312690735, -0.06557460874319077, -0.1346062421798706, 0.4082722067832947], [-0.4371587932109833, 0.21005471050739288, 0.3595040738582611, -0.2503022253513336, 0.2866550385951996, 0.3960089385509491, -0.5821219086647034, -0.06557746231555939, -0.13460807502269745, 0.40827104449272156], [-0.4371594786643982, 0.21005578339099884, 0.3595035672187805, -0.2503035366535187, 0.2866572141647339, 0.3960094749927521, -0.582120418548584, -0.0655786544084549, -0.13460925221443176, 0.4082695543766022], [-0.4371596872806549, 0.2100580930709839, 0.35950344800949097, -0.2503054141998291, 0.2866564393043518, 0.3960104286670685, -0.582120954990387, -0.06557825952768326, -0.13460877537727356, 0.40826940536499023], [-0.4371607303619385, 0.2100604921579361, 0.35950416326522827, -0.25030800700187683, 0.2866548001766205, 0.3960126042366028, -0.5821220874786377, -0.06557729095220566, -0.13460785150527954, 0.4082692563533783], [-0.43716150522232056, 0.2100621908903122, 0.35950496792793274, -0.25030961632728577, 0.28665345907211304, 0.39601439237594604, -0.5821232795715332, -0.06557608395814896, -0.13460694253444672, 0.40826964378356934], [-0.4371599555015564, 0.21005944907665253, 0.3595046401023865, -0.2503063678741455, 0.2866535186767578, 0.3960120677947998, -0.582123339176178, -0.06557588279247284, -0.13460703194141388, 0.40827101469039917], [-0.43716228008270264, 0.21006165444850922, 0.35950538516044617, -0.25030970573425293, 0.28665363788604736, 0.3960149884223938, -0.5821232199668884, -0.0655764639377594, -0.13460706174373627, 0.40826958417892456], [-0.4371590316295624, 0.2100580632686615, 0.3595043420791626, -0.25030452013015747, 0.28665444254875183, 0.39601069688796997, -0.5821228623390198, -0.06557610630989075, -0.13460758328437805, 0.4082716703414917], [-0.43715494871139526, 0.21004869043827057, 0.3595019578933716, -0.2502951920032501, 0.2866576910018921, 0.3960024118423462, -0.5821196436882019, -0.06557918339967728, -0.13460980355739594, 0.4082719683647156], [-0.4371577501296997, 0.21005083620548248, 0.3595016300678253, -0.25029921531677246, 0.28666040301322937, 0.3960048258304596, -0.5821171998977661, -0.0655817836523056, -0.13461138308048248, 0.4082678556442261], [-0.43715745210647583, 0.21005423367023468, 0.35950133204460144, -0.250301331281662, 0.2866596579551697, 0.3960058093070984, -0.582118034362793, -0.06558039784431458, -0.13461071252822876, 0.4082680642604828], [-0.43715715408325195, 0.21005430817604065, 0.35950136184692383, -0.2503013610839844, 0.2866578996181488, 0.39600566029548645, -0.5821189284324646, -0.06557983160018921, -0.13460971415042877, 0.40826839208602905], [-0.43715736269950867, 0.21005374193191528, 0.35950157046318054, -0.2503010332584381, 0.2866578698158264, 0.3960057497024536, -0.5821189284324646, -0.06557954102754593, -0.13460971415042877, 0.40826818346977234], [-0.43715721368789673, 0.21005314588546753, 0.35950136184692383, -0.2503003776073456, 0.28665822744369507, 0.396005243062973, -0.5821187496185303, -0.06557969748973846, -0.13460980355739594, 0.4082682132720947], [-0.43715694546699524, 0.21005243062973022, 0.3595011234283447, -0.25029975175857544, 0.28665870428085327, 0.3960045874118805, -0.5821183323860168, -0.06558006256818771, -0.1346101015806198, 0.4082682132720947], [-0.4371587932109833, 0.2100556641817093, 0.35950183868408203, -0.2503034472465515, 0.28665804862976074, 0.3960076570510864, -0.5821189284324646, -0.06557980179786682, -0.134609654545784, 0.4082672595977783], [-0.43715837597846985, 0.21005643904209137, 0.3595021367073059, -0.2503035366535187, 0.28665691614151, 0.3960078954696655, -0.5821200013160706, -0.06557852029800415, -0.13460895419120789, 0.40826839208602905], [-0.4371564984321594, 0.21005253493785858, 0.35950151085853577, -0.2502993643283844, 0.2866573929786682, 0.39600464701652527, -0.5821194648742676, -0.06557905673980713, -0.1346093714237213, 0.40826934576034546], [-0.437156617641449, 0.21005094051361084, 0.3595011234283447, -0.2502983808517456, 0.2866591215133667, 0.39600375294685364, -0.5821179747581482, -0.06558047235012054, -0.13461044430732727, 0.4082683026790619], [-0.43715420365333557, 0.2100473791360855, 0.35949966311454773, -0.2502940893173218, 0.2866609990596771, 0.3959996700286865, -0.5821164846420288, -0.06558146327733994, -0.13461165130138397, 0.4082687199115753], [-0.43715474009513855, 0.2100471556186676, 0.35949909687042236, -0.2502947151660919, 0.2866620719432831, 0.3959994614124298, -0.5821151733398438, -0.0655830129981041, -0.1346123218536377, 0.4082670211791992], [-0.43715402483940125, 0.2100471407175064, 0.359498530626297, -0.25029417872428894, 0.2866624891757965, 0.3959985673427582, -0.5821147561073303, -0.06558288633823395, -0.1346125304698944, 0.4082667827606201], [-0.43715381622314453, 0.2100467085838318, 0.35949814319610596, -0.2502938508987427, 0.28666239976882935, 0.3959980010986328, -0.5821146368980408, -0.06558319926261902, -0.13461244106292725, 0.4082663953304291], [-0.43715670704841614, 0.21005146205425262, 0.3594993054866791, -0.2502994239330292, 0.2866612672805786, 0.3960026502609253, -0.5821155309677124, -0.06558248400688171, -0.13461162149906158, 0.4082649350166321], [-0.4371563792228699, 0.21005311608314514, 0.35949984192848206, -0.2503001093864441, 0.2866594195365906, 0.3960035443305969, -0.5821174383163452, -0.06558050215244293, -0.13461041450500488, 0.408266544342041], [-0.4371560215950012, 0.2100515365600586, 0.35950011014938354, -0.25029870867729187, 0.28665876388549805, 0.396002858877182, -0.5821177363395691, -0.06558037549257278, -0.1346101313829422, 0.4082672595977783], [-0.43715566396713257, 0.2100498229265213, 0.3594999313354492, -0.25029709935188293, 0.2866598069667816, 0.39600181579589844, -0.5821170806884766, -0.06558090448379517, -0.13461077213287354, 0.4082673192024231], [-0.4371543228626251, 0.21004718542099, 0.3594990372657776, -0.2502942383289337, 0.2866612672805786, 0.39599916338920593, -0.5821159482002258, -0.06558188796043396, -0.13461165130138397, 0.4082675576210022], [-0.43715715408325195, 0.2100515216588974, 0.35949987173080444, -0.2502996623516083, 0.28666093945503235, 0.3960033357143402, -0.5821161270141602, -0.06558224558830261, -0.13461141288280487, 0.4082655906677246], [-0.43716081976890564, 0.21006056666374207, 0.3595021069049835, -0.250308632850647, 0.2866573631763458, 0.3960111439228058, -0.5821194052696228, -0.06557922810316086, -0.13460907340049744, 0.4082654118537903], [-0.437164843082428, 0.21006980538368225, 0.35950541496276855, -0.2503178119659424, 0.28665146231651306, 0.3960200250148773, -0.582124650478363, -0.06557492166757584, -0.13460533320903778, 0.40826675295829773], [-0.4371713101863861, 0.21008190512657166, 0.3595103919506073, -0.2503306269645691, 0.2866446375846863, 0.39603281021118164, -0.5821309685707092, -0.06556972861289978, -0.13460102677345276, 0.4082680344581604], [-0.4371695816516876, 0.21008123457431793, 0.35951241850852966, -0.2503279447555542, 0.2866407334804535, 0.39603304862976074, -0.5821352005004883, -0.06556545943021774, -0.1345987170934677, 0.40827396512031555], [-0.4371635913848877, 0.2100668102502823, 0.3595106601715088, -0.25031304359436035, 0.2866440713405609, 0.3960219919681549, -0.5821325182914734, -0.06556815654039383, -0.13460120558738708, 0.4082777202129364], [-0.43715986609458923, 0.2100546956062317, 0.35950741171836853, -0.2503020167350769, 0.28665244579315186, 0.39601218700408936, -0.5821255445480347, -0.06557454913854599, -0.13460661470890045, 0.4082760214805603], [-0.43716076016426086, 0.21005578339099884, 0.3595055937767029, -0.25030404329299927, 0.2866571247577667, 0.3960118293762207, -0.5821214914321899, -0.06557858735322952, -0.1346094310283661, 0.4082719385623932], [-0.43715617060661316, 0.21005231142044067, 0.3595028817653656, -0.25029852986335754, 0.28665855526924133, 0.39600539207458496, -0.582119882106781, -0.06557921320199966, -0.13461041450500488, 0.40827256441116333], [-0.4371502697467804, 0.2100404053926468, 0.35949909687042236, -0.2502862513065338, 0.2866622507572174, 0.39599382877349854, -0.5821154117584229, -0.06558282673358917, -0.1346130222082138, 0.40827205777168274], [-0.43715012073516846, 0.21003633737564087, 0.3594965934753418, -0.250283807516098, 0.2866673469543457, 0.3959902226924896, -0.5821104645729065, -0.06558716297149658, -0.13461598753929138, 0.40826740860939026], [-0.43714967370033264, 0.21003751456737518, 0.3594948351383209, -0.2502845823764801, 0.28666919469833374, 0.3959891200065613, -0.5821087956428528, -0.06558812409639359, -0.13461683690547943, 0.4082651436328888], [-0.43715140223503113, 0.21004188060760498, 0.3594949245452881, -0.25028926134109497, 0.28666743636131287, 0.3959919810295105, -0.5821096897125244, -0.06558746844530106, -0.13461560010910034, 0.40826335549354553], [-0.4371546804904938, 0.21004906296730042, 0.35949671268463135, -0.2502967119216919, 0.2866639196872711, 0.39599835872650146, -0.5821125507354736, -0.06558472663164139, -0.1346132606267929, 0.40826258063316345], [-0.43715521693229675, 0.2100515514612198, 0.3594980537891388, -0.25029850006103516, 0.2866606116294861, 0.39600077271461487, -0.5821155309677124, -0.06558176875114441, -0.1346110999584198, 0.40826451778411865], [-0.43715783953666687, 0.21005463600158691, 0.3594999611377716, -0.2503024637699127, 0.286658376455307, 0.39600518345832825, -0.5821176767349243, -0.06558038294315338, -0.134609654545784, 0.4082648456096649], [-0.4371609091758728, 0.2100605070590973, 0.35950231552124023, -0.2503085434436798, 0.28665590286254883, 0.3960113525390625, -0.582120418548584, -0.06557800620794296, -0.13460801541805267, 0.408265620470047], [-0.43715792894363403, 0.21005679666996002, 0.35950231552124023, -0.2503032982349396, 0.2866549491882324, 0.3960079252719879, -0.5821216702461243, -0.0655767098069191, -0.13460758328437805, 0.40826937556266785], [-0.437153697013855, 0.21004623174667358, 0.35950034856796265, -0.2502927780151367, 0.2866585850715637, 0.39599937200546265, -0.5821183323860168, -0.06557978689670563, -0.1346101611852646, 0.4082704484462738], [-0.4371584951877594, 0.21005123853683472, 0.3595009744167328, -0.25030025839805603, 0.28666093945503235, 0.39600497484207153, -0.582116425037384, -0.06558234244585037, -0.13461147248744965, 0.4082659184932709], [-0.4371577799320221, 0.21005560457706451, 0.3595011234283447, -0.2503025531768799, 0.286659300327301, 0.39600643515586853, -0.5821183323860168, -0.06557987630367279, -0.13461031019687653, 0.40826746821403503], [-0.43715617060661316, 0.21005290746688843, 0.359500914812088, -0.2502996623516083, 0.2866577208042145, 0.3960041105747223, -0.5821189880371094, -0.06557959318161011, -0.13460959494113922, 0.4082687497138977], [-0.43715888261795044, 0.21005532145500183, 0.3595019578933716, -0.2503032982349396, 0.2866577208042145, 0.3960076570510864, -0.5821189284324646, -0.06557974219322205, -0.13460955023765564, 0.4082670211791992], [-0.43715786933898926, 0.21005533635616302, 0.3595018684864044, -0.2503023147583008, 0.2866573929786682, 0.3960070013999939, -0.5821197032928467, -0.06557862460613251, -0.134609192609787, 0.4082685112953186], [-0.43715590238571167, 0.21005107462406158, 0.3595010042190552, -0.25029799342155457, 0.2866581082344055, 0.3960033059120178, -0.582118809223175, -0.06557963043451309, -0.13460983335971832, 0.4082692861557007], [-0.43715471029281616, 0.2100474238395691, 0.3594999611377716, -0.25029459595680237, 0.2866605818271637, 0.3960002362728119, -0.5821166038513184, -0.06558153033256531, -0.13461141288280487, 0.4082684814929962], [-0.43715575337409973, 0.21004897356033325, 0.35949963331222534, -0.2502966523170471, 0.28666165471076965, 0.39600130915641785, -0.5821157097816467, -0.06558246910572052, -0.13461197912693024, 0.4082668721675873], [-0.4371598958969116, 0.2100578248500824, 0.3595014810562134, -0.2503061294555664, 0.2866588830947876, 0.3960089385509491, -0.5821180939674377, -0.06558067351579666, -0.1346101015806198, 0.4082653224468231], [-0.4371592402458191, 0.21006004512310028, 0.35950252413749695, -0.25030678510665894, 0.2866554260253906, 0.39601024985313416, -0.5821211934089661, -0.06557732820510864, -0.1346079409122467, 0.4082680344581604], [-0.4371609687805176, 0.2100609689950943, 0.35950395464897156, -0.250308632850647, 0.2866535484790802, 0.3960127830505371, -0.5821226239204407, -0.06557657569646835, -0.13460688292980194, 0.40826836228370667], [-0.43716034293174744, 0.21005970239639282, 0.35950425267219543, -0.2503069043159485, 0.2866538465023041, 0.3960121273994446, -0.5821229219436646, -0.06557597219944, -0.13460706174373627, 0.4082697629928589], [-0.43715816736221313, 0.21005502343177795, 0.35950329899787903, -0.2503020167350769, 0.286655455827713, 0.39600807428359985, -0.5821216702461243, -0.06557731330394745, -0.1346081644296646, 0.40827077627182007], [-0.4371618330478668, 0.21005979180335999, 0.3595043420791626, -0.2503083646297455, 0.2866557240486145, 0.39601317048072815, -0.5821214318275452, -0.06557819247245789, -0.13460828363895416, 0.40826815366744995], [-0.4371621608734131, 0.21006400883197784, 0.35950517654418945, -0.25031134486198425, 0.28665366768836975, 0.3960157632827759, -0.5821235775947571, -0.06557570397853851, -0.13460691273212433, 0.408269464969635], [-0.4371626079082489, 0.21006491780281067, 0.3595060408115387, -0.25031229853630066, 0.2866513431072235, 0.39601704478263855, -0.5821252465248108, -0.06557461619377136, -0.13460558652877808, 0.4082705080509186], [-0.4371613562107086, 0.21006199717521667, 0.3595059812068939, -0.250309020280838, 0.2866517901420593, 0.3960150480270386, -0.5821250081062317, -0.06557447463274002, -0.13460594415664673, 0.4082716405391693], [-0.4371626079082489, 0.2100624442100525, 0.3595062494277954, -0.2503103017807007, 0.28665247559547424, 0.3960161805152893, -0.5821245312690735, -0.06557539850473404, -0.13460636138916016, 0.40827080607414246], [-0.4371680021286011, 0.21007287502288818, 0.35950878262519836, -0.2503216862678528, 0.2866498529911041, 0.3960258364677429, -0.5821270942687988, -0.06557349860668182, -0.1346045434474945, 0.4082691967487335], [-0.43716832995414734, 0.21007773280143738, 0.3595106601715088, -0.25032487511634827, 0.2866452634334564, 0.39602944254875183, -0.5821313858032227, -0.06556931138038635, -0.13460169732570648, 0.408272385597229], [-0.43716830015182495, 0.21007634699344635, 0.3595119118690491, -0.25032371282577515, 0.2866431176662445, 0.3960298001766205, -0.5821331143379211, -0.06556814163923264, -0.13460059463977814, 0.40827444195747375], [-0.437172532081604, 0.21008169651031494, 0.3595142364501953, -0.2503303289413452, 0.28664201498031616, 0.3960365056991577, -0.582134485244751, -0.06556734442710876, -0.13459983468055725, 0.4082735478878021], [-0.4371718168258667, 0.2100830376148224, 0.35951513051986694, -0.2503303587436676, 0.2866404354572296, 0.3960372805595398, -0.5821366310119629, -0.06556514650583267, -0.13459880650043488, 0.4082764685153961], [-0.4371701180934906, 0.2100791037082672, 0.3595150113105774, -0.2503263056278229, 0.2866404950618744, 0.39603447914123535, -0.5821364521980286, -0.06556576490402222, -0.13459914922714233, 0.40827804803848267], [-0.4371729791164398, 0.2100820392370224, 0.35951608419418335, -0.25033053755760193, 0.28664103150367737, 0.39603832364082336, -0.5821361541748047, -0.06556643545627594, -0.1345994770526886, 0.40827637910842896], [-0.4371720254421234, 0.2100829780101776, 0.3595161736011505, -0.25033026933670044, 0.2866404056549072, 0.3960381746292114, -0.5821371078491211, -0.06556513905525208, -0.1345990151166916, 0.4082779586315155], [-0.43716543912887573, 0.21007117629051208, 0.35951343178749084, -0.2503170967102051, 0.2866429388523102, 0.3960270881652832, -0.5821346044540405, -0.06556710600852966, -0.1346009075641632, 0.408280611038208], [-0.4371669292449951, 0.2100684493780136, 0.3595123291015625, -0.2503167986869812, 0.2866472005844116, 0.396026074886322, -0.5821304321289062, -0.06557147204875946, -0.1346036046743393, 0.40827643871307373], [-0.43716609477996826, 0.21006979048252106, 0.3595110774040222, -0.2503170967102051, 0.2866489887237549, 0.396025151014328, -0.5821292996406555, -0.06557177752256393, -0.13460448384284973, 0.4082756042480469], [-0.43715566396713257, 0.21005307137966156, 0.3595059812068939, -0.2502978444099426, 0.28665295243263245, 0.396007776260376, -0.5821251273155212, -0.06557462364435196, -0.13460731506347656, 0.4082787334918976], [-0.43716198205947876, 0.21005642414093018, 0.35950586199760437, -0.2503059208393097, 0.2866566479206085, 0.3960130512714386, -0.5821207761764526, -0.06557995080947876, -0.13460952043533325, 0.40827029943466187], [-0.4371611475944519, 0.21006202697753906, 0.3595052659511566, -0.2503088712692261, 0.28665608167648315, 0.3960144519805908, -0.5821220874786377, -0.06557697802782059, -0.1346086710691452, 0.40827080607414246], [-0.4371606409549713, 0.21006180346012115, 0.35950517654418945, -0.25030872225761414, 0.286653071641922, 0.39601385593414307, -0.5821236968040466, -0.06557633727788925, -0.13460691273212433, 0.40827134251594543], [-0.4371597468852997, 0.21005879342556, 0.35950490832328796, -0.25030574202537537, 0.2866538166999817, 0.3960118591785431, -0.5821229219436646, -0.06557629257440567, -0.1346074342727661, 0.40827128291130066], [-0.43715816736221313, 0.21005462110042572, 0.3595035970211029, -0.25030162930488586, 0.2866559326648712, 0.3960081934928894, -0.5821212530136108, -0.06557776778936386, -0.13460861146450043, 0.4082711935043335], [-0.43715623021125793, 0.21005040407180786, 0.3595019578933716, -0.2502974271774292, 0.2866586744785309, 0.39600393176078796, -0.5821188688278198, -0.0655798688530922, -0.13461031019687653, 0.4082705080509186], [-0.4371545612812042, 0.2100471556186676, 0.3595002293586731, -0.2502942383289337, 0.2866611182689667, 0.39600029587745667, -0.5821164846420288, -0.06558185070753098, -0.13461188971996307, 0.40826934576034546], [-0.437156617641449, 0.21005062758922577, 0.3595002293586731, -0.25029847025871277, 0.2866613566875458, 0.39600297808647156, -0.5821160078048706, -0.0655825287103653, -0.13461191952228546, 0.4082668125629425], [-0.4371536374092102, 0.21004801988601685, 0.35949909687042236, -0.25029435753822327, 0.2866612672805786, 0.39599910378456116, -0.5821160078048706, -0.06558166444301605, -0.13461185991764069, 0.4082683324813843], [-0.437151700258255, 0.21004240214824677, 0.3594975769519806, -0.2502891719341278, 0.2866629958152771, 0.3959944546222687, -0.5821139216423035, -0.06558376550674438, -0.1346130222082138, 0.4082677364349365], [-0.43715184926986694, 0.21004118025302887, 0.3594966530799866, -0.25028860569000244, 0.2866654694080353, 0.39599335193634033, -0.5821118354797363, -0.06558547914028168, -0.13461443781852722, 0.40826573967933655], [-0.43715035915374756, 0.21003976464271545, 0.3594953417778015, -0.25028660893440247, 0.2866666316986084, 0.39599084854125977, -0.5821107625961304, -0.06558608263731003, -0.13461504876613617, 0.40826547145843506], [-0.43715110421180725, 0.21004071831703186, 0.3594951331615448, -0.25028809905052185, 0.2866666316986084, 0.3959914743900299, -0.5821104049682617, -0.06558671593666077, -0.13461504876613617, 0.40826404094696045], [-0.4371523857116699, 0.21004384756088257, 0.3594956696033478, -0.25029128789901733, 0.2866656482219696, 0.39599400758743286, -0.5821112394332886, -0.06558571755886078, -0.13461431860923767, 0.4082634150981903], [-0.4371524751186371, 0.2100449502468109, 0.35949602723121643, -0.25029200315475464, 0.2866641581058502, 0.3959948420524597, -0.5821124911308289, -0.06558447331190109, -0.13461337983608246, 0.4082641303539276], [-0.4371526539325714, 0.21004460752010345, 0.3594963848590851, -0.2502918243408203, 0.28666362166404724, 0.39599502086639404, -0.5821129083633423, -0.06558416038751602, -0.1346130222082138, 0.40826448798179626], [-0.4371539354324341, 0.2100464254617691, 0.3594970405101776, -0.2502939701080322, 0.2866632640361786, 0.3959970772266388, -0.5821134448051453, -0.06558385491371155, -0.13461273908615112, 0.4082641899585724], [-0.4371534585952759, 0.2100464552640915, 0.35949718952178955, -0.2502935826778412, 0.2866627871990204, 0.39599692821502686, -0.582114040851593, -0.06558318436145782, -0.13461247086524963, 0.4082651138305664], [-0.43715426325798035, 0.21004718542099, 0.35949763655662537, -0.25029465556144714, 0.28666236996650696, 0.3959980607032776, -0.5821143388748169, -0.06558319926261902, -0.13461223244667053, 0.40826499462127686], [-0.43715354800224304, 0.2100464254617691, 0.3594975769519806, -0.250293493270874, 0.2866624891757965, 0.3959972560405731, -0.5821143984794617, -0.06558292359113693, -0.13461235165596008, 0.4082656800746918], [-0.4371516704559326, 0.2100425511598587, 0.3594966530799866, -0.2502894401550293, 0.286663681268692, 0.39599379897117615, -0.5821133255958557, -0.06558388471603394, -0.13461314141750336, 0.40826621651649475], [-0.43715381622314453, 0.21004490554332733, 0.3594970405101776, -0.2502928376197815, 0.28666427731513977, 0.39599642157554626, -0.582112729549408, -0.06558483093976974, -0.13461346924304962, 0.4082642197608948], [-0.43715357780456543, 0.2100467085838318, 0.35949715971946716, -0.2502937912940979, 0.2866635322570801, 0.3959970772266388, -0.5821135640144348, -0.06558358669281006, -0.13461293280124664, 0.40826496481895447], [-0.4371505379676819, 0.21004149317741394, 0.35949599742889404, -0.25028786063194275, 0.2866639792919159, 0.39599210023880005, -0.5821129083633423, -0.06558419018983841, -0.13461337983608246, 0.4082663953304291], [-0.4371490776538849, 0.2100362479686737, 0.3594946265220642, -0.25028330087661743, 0.28666695952415466, 0.39598795771598816, -0.5821101069450378, -0.0655866265296936, -0.13461533188819885, 0.4082653224468231], [-0.437152236700058, 0.2100411057472229, 0.35949498414993286, -0.25028929114341736, 0.28666773438453674, 0.3959922790527344, -0.5821095705032349, -0.06558751314878464, -0.13461557030677795, 0.4082624316215515], [-0.43715131282806396, 0.2100432813167572, 0.35949498414993286, -0.25029000639915466, 0.28666603565216064, 0.39599257707595825, -0.582111120223999, -0.06558556854724884, -0.1346144825220108, 0.4082637429237366], [-0.43715253472328186, 0.21004456281661987, 0.3594958186149597, -0.25029197335243225, 0.286664217710495, 0.3959944546222687, -0.582112193107605, -0.06558498740196228, -0.13461343944072723, 0.40826356410980225], [-0.4371565282344818, 0.21005140244960785, 0.359497994184494, -0.25029951333999634, 0.2866619825363159, 0.3960014879703522, -0.5821143984794617, -0.06558308750391006, -0.13461185991764069, 0.4082627296447754], [-0.4371562898159027, 0.21005336940288544, 0.35949909687042236, -0.2503003776073456, 0.2866593301296234, 0.39600303769111633, -0.5821171998977661, -0.06558036804199219, -0.1346101313829422, 0.4082653522491455], [-0.43715590238571167, 0.21005134284496307, 0.35949966311454773, -0.25029855966567993, 0.2866586446762085, 0.3960023522377014, -0.5821177363395691, -0.06558019667863846, -0.1346098929643631, 0.40826666355133057], [-0.43715205788612366, 0.21004340052604675, 0.3594980239868164, -0.2502898871898651, 0.28666162490844727, 0.39599543809890747, -0.5821154117584229, -0.06558185070753098, -0.13461188971996307, 0.4082682132720947], [-0.4371521472930908, 0.21004071831703186, 0.3594968616962433, -0.2502883970737457, 0.2866649329662323, 0.39599350094795227, -0.5821124315261841, -0.06558508425951004, -0.1346139907836914, 0.4082660377025604], [-0.4371558129787445, 0.21004848182201385, 0.3594978451728821, -0.25029680132865906, 0.28666436672210693, 0.3959997296333313, -0.5821130275726318, -0.0655847042798996, -0.13461346924304962, 0.408263623714447], [-0.4371545910835266, 0.210050567984581, 0.35949820280075073, -0.2502971887588501, 0.28666144609451294, 0.39600008726119995, -0.5821154713630676, -0.06558205932378769, -0.13461168110370636, 0.4082658290863037], [-0.43715283274650574, 0.2100459486246109, 0.3594978451728821, -0.25029265880584717, 0.28666117787361145, 0.39599674940109253, -0.5821152329444885, -0.06558233499526978, -0.13461174070835114, 0.4082668721675873], [-0.4371548891067505, 0.21004699170589447, 0.3594982922077179, -0.25029492378234863, 0.28666239976882935, 0.39599889516830444, -0.5821143984794617, -0.06558329612016678, -0.13461235165596008, 0.408265084028244], [-0.4371558129787445, 0.21005034446716309, 0.3594987690448761, -0.25029781460762024, 0.28666168451309204, 0.39600124955177307, -0.5821154117584229, -0.06558224558830261, -0.13461171090602875, 0.4082653522491455], [-0.437153697013855, 0.21004776656627655, 0.35949835181236267, -0.2502944767475128, 0.2866611182689667, 0.3959985077381134, -0.5821157693862915, -0.06558183580636978, -0.13461150228977203, 0.4082670211791992], [-0.4371534585952759, 0.21004535257816315, 0.359497994184494, -0.2502926290035248, 0.2866622805595398, 0.3959970772266388, -0.582114577293396, -0.06558307260274887, -0.1346122920513153, 0.4082663655281067], [-0.4371550977230072, 0.2100478857755661, 0.3594983220100403, -0.2502956688404083, 0.2866626977920532, 0.3959994316101074, -0.5821143984794617, -0.0655832588672638, -0.13461241126060486, 0.4082651734352112], [-0.4371550381183624, 0.2100495994091034, 0.3594985604286194, -0.25029677152633667, 0.2866615653038025, 0.3960002660751343, -0.5821154713630676, -0.0655822604894638, -0.13461174070835114, 0.4082658588886261], [-0.43715527653694153, 0.21004988253116608, 0.3594989776611328, -0.2502971887588501, 0.2866606116294861, 0.39600083231925964, -0.5821160674095154, -0.06558182090520859, -0.13461123406887054, 0.40826615691185], [-0.4371545910835266, 0.21004843711853027, 0.35949885845184326, -0.250295490026474, 0.28666090965270996, 0.3959997594356537, -0.582115888595581, -0.06558174639940262, -0.13461141288280487, 0.40826666355133057], [-0.4371541142463684, 0.21004682779312134, 0.3594984710216522, -0.2502940893173218, 0.2866617739200592, 0.3959985077381134, -0.5821151733398438, -0.0655825138092041, -0.13461194932460785, 0.4082665741443634], [-0.4371572434902191, 0.21005195379257202, 0.35949960350990295, -0.2503001093864441, 0.2866609990596771, 0.39600345492362976, -0.582115888595581, -0.06558219343423843, -0.13461138308048248, 0.40826499462127686], [-0.4371595084667206, 0.2100585252046585, 0.35950136184692383, -0.2503061890602112, 0.28665775060653687, 0.3960089385509491, -0.5821189880371094, -0.06557939946651459, -0.13460925221443176, 0.4082656800746918], [-0.4371626675128937, 0.21006496250629425, 0.35950401425361633, -0.2503128945827484, 0.28665339946746826, 0.39601555466651917, -0.582122802734375, -0.06557635217905045, -0.1346065253019333, 0.40826672315597534], [-0.43716391921043396, 0.2100680023431778, 0.35950616002082825, -0.25031548738479614, 0.28665024042129517, 0.39601925015449524, -0.5821259617805481, -0.06557349860668182, -0.13460463285446167, 0.4082690477371216], [-0.4371640086174011, 0.2100672721862793, 0.3595072627067566, -0.2503146827220917, 0.28664907813072205, 0.396019846200943, -0.5821272730827332, -0.06557253748178482, -0.13460400700569153, 0.40827104449272156], [-0.437166303396225, 0.21006998419761658, 0.359508752822876, -0.25031816959381104, 0.28664854168891907, 0.39602354168891907, -0.58212810754776, -0.06557226926088333, -0.13460369408130646, 0.40827104449272156], [-0.43716752529144287, 0.21007362008094788, 0.3595100939273834, -0.2503213882446289, 0.2866469919681549, 0.3960268795490265, -0.582129955291748, -0.06557068973779678, -0.13460275530815125, 0.4082721769809723], [-0.4371684789657593, 0.21007584035396576, 0.3595114052295685, -0.2503235340118408, 0.28664493560791016, 0.39602935314178467, -0.5821318626403809, -0.06556934863328934, -0.13460157811641693, 0.4082734286785126], [-0.4371669292449951, 0.21007317304611206, 0.35951149463653564, -0.2503202259540558, 0.28664490580558777, 0.3960273265838623, -0.5821320414543152, -0.0655689463019371, -0.13460172712802887, 0.4082752466201782], [-0.4371623694896698, 0.21006348729133606, 0.35950931906700134, -0.2503100037574768, 0.28664830327033997, 0.3960188329219818, -0.5821290612220764, -0.06557143479585648, -0.1346040666103363, 0.4082767069339752], [-0.43716269731521606, 0.21006086468696594, 0.3595079779624939, -0.2503088116645813, 0.28665223717689514, 0.3960169553756714, -0.5821254849433899, -0.06557512283325195, -0.1346065253019333, 0.40827372670173645], [-0.4371636211872101, 0.21006447076797485, 0.35950759053230286, -0.2503121793270111, 0.2866530120372772, 0.3960186839103699, -0.5821249485015869, -0.06557535380125046, -0.13460682332515717, 0.4082721471786499], [-0.43716001510620117, 0.21006053686141968, 0.3595060110092163, -0.2503068745136261, 0.28665289282798767, 0.3960135877132416, -0.582124650478363, -0.06557519733905792, -0.13460688292980194, 0.40827369689941406], [-0.43715915083885193, 0.2100563645362854, 0.35950490832328796, -0.25030359625816345, 0.2866547107696533, 0.39601051807403564, -0.5821224451065063, -0.06557729095220566, -0.13460810482501984, 0.4082721471786499], [-0.43715718388557434, 0.2100525051355362, 0.3595031499862671, -0.25029945373535156, 0.2866576015949249, 0.39600637555122375, -0.5821200609207153, -0.0655789002776146, -0.13460974395275116, 0.40827134251594543], [-0.43715688586235046, 0.21005147695541382, 0.3595019578933716, -0.2502988278865814, 0.2866591811180115, 0.3960047960281372, -0.5821183919906616, -0.06558051705360413, -0.13461068272590637, 0.4082697033882141], [-0.4371519684791565, 0.21004393696784973, 0.3594991862773895, -0.25029000639915466, 0.28666186332702637, 0.39599648118019104, -0.5821158289909363, -0.06558206677436829, -0.13461244106292725, 0.4082704186439514], [-0.4371565282344818, 0.21004872024059296, 0.35949957370758057, -0.2502972483634949, 0.28666260838508606, 0.3960016071796417, -0.582114577293396, -0.06558411568403244, -0.13461273908615112, 0.408265620470047], [-0.43715810775756836, 0.21005597710609436, 0.3595006465911865, -0.25030332803726196, 0.2866600751876831, 0.39600637555122375, -0.5821171998977661, -0.06558085978031158, -0.1346108615398407, 0.4082658886909485], [-0.43715545535087585, 0.2100527286529541, 0.35950034856796265, -0.25029900670051575, 0.28665778040885925, 0.3960031569004059, -0.5821187496185303, -0.06557948142290115, -0.13460959494113922, 0.40826860070228577], [-0.4371584951877594, 0.21005429327487946, 0.35950154066085815, -0.25030243396759033, 0.28665781021118164, 0.39600667357444763, -0.582118570804596, -0.0655801072716713, -0.13460959494113922, 0.40826669335365295], [-0.4371575713157654, 0.21005451679229736, 0.3595014810562134, -0.2503015697002411, 0.2866579592227936, 0.39600616693496704, -0.5821191668510437, -0.06557900458574295, -0.13460949063301086, 0.4082680642604828], [-0.4371545910835266, 0.21004877984523773, 0.3595001697540283, -0.25029540061950684, 0.2866590917110443, 0.3960009217262268, -0.5821179747581482, -0.06558024883270264, -0.1346103847026825, 0.40826931595802307], [-0.4371519386768341, 0.2100418657064438, 0.3594982326030731, -0.2502887547016144, 0.28666287660598755, 0.3959948420524597, -0.5821145176887512, -0.06558317691087723, -0.13461290299892426, 0.408268541097641], [-0.4371527135372162, 0.21004217863082886, 0.35949718952178955, -0.2502898573875427, 0.2866654098033905, 0.39599472284317017, -0.582112193107605, -0.0655854344367981, -0.13461434841156006, 0.4082658886909485], [-0.43715158104896545, 0.21004246175289154, 0.35949623584747314, -0.25028935074806213, 0.28666573762893677, 0.39599335193634033, -0.5821118354797363, -0.06558538228273392, -0.1346144825220108, 0.4082656502723694], [-0.4371505081653595, 0.2100406438112259, 0.3594954311847687, -0.2502874732017517, 0.28666579723358154, 0.3959912955760956, -0.5821112394332886, -0.06558586657047272, -0.13461460173130035, 0.40826529264450073], [-0.43715205788612366, 0.21004241704940796, 0.3594956696033478, -0.25029000639915466, 0.28666582703590393, 0.3959932327270508, -0.5821110010147095, -0.06558604538440704, -0.1346145123243332, 0.4082637429237366], [-0.43714991211891174, 0.21004003286361694, 0.35949480533599854, -0.2502865493297577, 0.2866661250591278, 0.39599019289016724, -0.5821108818054199, -0.065585657954216, -0.13461463153362274, 0.4082648754119873], [-0.43714821338653564, 0.21003542840480804, 0.35949352383613586, -0.25028225779533386, 0.2866678237915039, 0.39598625898361206, -0.5821091532707214, -0.06558740139007568, -0.13461577892303467, 0.40826451778411865], [-0.43714815378189087, 0.21003423631191254, 0.3594927191734314, -0.25028154253959656, 0.28666988015174866, 0.39598509669303894, -0.5821073055267334, -0.06558892875909805, -0.13461700081825256, 0.4082629680633545], [-0.4371480941772461, 0.2100350260734558, 0.35949212312698364, -0.2502821981906891, 0.28667038679122925, 0.3959850072860718, -0.58210688829422, -0.06558925658464432, -0.1346171796321869, 0.4082622528076172], [-0.43714866042137146, 0.2100367248058319, 0.3594922721385956, -0.25028395652770996, 0.28666952252388, 0.3959861397743225, -0.5821073055267334, -0.06558883935213089, -0.1346166878938675, 0.4082617163658142], [-0.4371491074562073, 0.21003788709640503, 0.35949262976646423, -0.25028499960899353, 0.2866685390472412, 0.3959871530532837, -0.5821080207824707, -0.06558802723884583, -0.13461604714393616, 0.408261775970459], [-0.4371488392353058, 0.2100372612476349, 0.3594926595687866, -0.2502842843532562, 0.2866682708263397, 0.39598676562309265, -0.5821083188056946, -0.06558771431446075, -0.13461580872535706, 0.4082622528076172], [-0.43714597821235657, 0.21003179252147675, 0.35949134826660156, -0.2502783238887787, 0.28666993975639343, 0.39598169922828674, -0.5821069478988647, -0.06558870524168015, -0.1346169412136078, 0.40826329588890076], [-0.4371447265148163, 0.21002750098705292, 0.35948991775512695, -0.25027456879615784, 0.28667280077934265, 0.39597803354263306, -0.5821042656898499, -0.06559127569198608, -0.13461878895759583, 0.4082620441913605], [-0.43714746832847595, 0.2100321501493454, 0.3594902455806732, -0.25028011202812195, 0.286673367023468, 0.39598190784454346, -0.5821038484573364, -0.06559191644191742, -0.13461896777153015, 0.40825939178466797], [-0.43714842200279236, 0.21003706753253937, 0.3594909906387329, -0.25028425455093384, 0.28667083382606506, 0.39598512649536133, -0.5821060538291931, -0.06558961421251297, -0.13461726903915405, 0.40825989842414856], [-0.43714988231658936, 0.2100401520729065, 0.35949239134788513, -0.2502874433994293, 0.28666776418685913, 0.3959883749485016, -0.5821083784103394, -0.06558772921562195, -0.13461542129516602, 0.4082605242729187], [-0.4371543526649475, 0.21004760265350342, 0.35949522256851196, -0.2502957880496979, 0.2866644859313965, 0.39599645137786865, -0.5821114778518677, -0.06558524817228317, -0.1346132606267929, 0.40826016664505005], [-0.4371568560600281, 0.21005398035049438, 0.3594978451728821, -0.25030162930488586, 0.28666040301322937, 0.39600270986557007, -0.582115650177002, -0.06558146327733994, -0.13461056351661682, 0.4082624018192291], [-0.43715912103652954, 0.21005812287330627, 0.3595004677772522, -0.25030583143234253, 0.2866566777229309, 0.39600780606269836, -0.5821192264556885, -0.06557881087064743, -0.13460837304592133, 0.40826448798179626], [-0.43716177344322205, 0.21006254851818085, 0.3595031499862671, -0.2503105103969574, 0.28665396571159363, 0.3960132598876953, -0.5821221470832825, -0.06557651609182358, -0.13460670411586761, 0.4082660675048828], [-0.43715980648994446, 0.2100597769021988, 0.3595035672187805, -0.2503066956996918, 0.2866532802581787, 0.3960113227367401, -0.5821232795715332, -0.06557540595531464, -0.13460643589496613, 0.40826940536499023], [-0.4371573030948639, 0.2100529670715332, 0.3595026135444641, -0.25030001997947693, 0.2866557538509369, 0.39600619673728943, -0.5821211934089661, -0.06557753682136536, -0.13460825383663177, 0.4082704782485962], [-0.4371526837348938, 0.2100433111190796, 0.3594997525215149, -0.2502898871898651, 0.2866610288619995, 0.39599713683128357, -0.5821167230606079, -0.06558127701282501, -0.13461174070835114, 0.40827059745788574], [-0.43715155124664307, 0.21003937721252441, 0.35949742794036865, -0.2502868175506592, 0.28666549921035767, 0.39599302411079407, -0.5821124315261841, -0.06558536738157272, -0.13461457192897797, 0.4082677662372589], [-0.4371564984321594, 0.2100493609905243, 0.35949844121932983, -0.2502979338169098, 0.2866646647453308, 0.3960009813308716, -0.5821129679679871, -0.06558523327112198, -0.1346137523651123, 0.4082637429237366], [-0.4371550381183624, 0.21005231142044067, 0.3594987690448761, -0.25029873847961426, 0.28666093945503235, 0.39600157737731934, -0.5821161270141602, -0.06558152288198471, -0.13461144268512726, 0.4082662761211395], [-0.4371558427810669, 0.21005158126354218, 0.35949960350990295, -0.2502988576889038, 0.28665891289711, 0.3960023522377014, -0.5821171998977661, -0.06558099389076233, -0.1346103399991989, 0.40826645493507385], [-0.4371546804904938, 0.21004855632781982, 0.3594993054866791, -0.2502955198287964, 0.28666019439697266, 0.3960002064704895, -0.5821165442466736, -0.06558103114366531, -0.13461101055145264, 0.40826722979545593], [-0.437154084444046, 0.2100462168455124, 0.3594985604286194, -0.2502935528755188, 0.2866617739200592, 0.39599835872650146, -0.5821152925491333, -0.06558249890804291, -0.13461197912693024, 0.40826696157455444], [-0.43715766072273254, 0.21005231142044067, 0.35949981212615967, -0.25030067563056946, 0.2866610884666443, 0.3960040211677551, -0.582115888595581, -0.06558232009410858, -0.13461144268512726, 0.4082649052143097], [-0.43715736269950867, 0.21005523204803467, 0.359500527381897, -0.25030219554901123, 0.2866586744785309, 0.3960055708885193, -0.5821182727813721, -0.06557980179786682, -0.1346098929643631, 0.40826672315597534], [-0.437154084444046, 0.2100488692522049, 0.35949966311454773, -0.2502953112125397, 0.28665879368782043, 0.3960002064704895, -0.5821177959442139, -0.06558014452457428, -0.13461025059223175, 0.4082688093185425], [-0.43715623021125793, 0.21004903316497803, 0.3594999313354492, -0.2502971291542053, 0.2866606116294861, 0.3960018455982208, -0.5821162462234497, -0.0655820444226265, -0.13461129367351532, 0.40826642513275146], [-0.4371561110019684, 0.21005091071128845, 0.3594997525215149, -0.2502982020378113, 0.2866608500480652, 0.39600247144699097, -0.5821165442466736, -0.0655813068151474, -0.13461129367351532, 0.4082667827606201], [-0.4371587336063385, 0.21005591750144958, 0.35950109362602234, -0.25030386447906494, 0.28665846586227417, 0.39600709080696106, -0.5821182727813721, -0.06558042764663696, -0.1346098631620407, 0.4082660973072052], [-0.4371565282344818, 0.210053950548172, 0.35950106382369995, -0.25030046701431274, 0.2866576015949249, 0.39600488543510437, -0.5821192264556885, -0.06557881832122803, -0.1346094012260437, 0.40826839208602905], [-0.4371517598628998, 0.210043266415596, 0.3594987392425537, -0.2502894401550293, 0.2866606116294861, 0.39599570631980896, -0.5821163654327393, -0.06558136641979218, -0.13461147248744965, 0.40826982259750366], [-0.4371521472930908, 0.2100401222705841, 0.3594973087310791, -0.25028789043426514, 0.2866651117801666, 0.39599359035491943, -0.5821123719215393, -0.06558527052402496, -0.1346142292022705, 0.4082665741443634], [-0.43715134263038635, 0.21004074811935425, 0.35949596762657166, -0.2502879500389099, 0.2866668701171875, 0.3959923982620239, -0.5821110010147095, -0.06558609008789062, -0.13461516797542572, 0.40826553106307983], [-0.4371502995491028, 0.2100401222705841, 0.3594951033592224, -0.2502870261669159, 0.2866666615009308, 0.3959906995296478, -0.5821106433868408, -0.06558647006750107, -0.13461513817310333, 0.40826502442359924], [-0.437152624130249, 0.21004366874694824, 0.35949575901031494, -0.2502913773059845, 0.28666573762893677, 0.3959941267967224, -0.5821110606193542, -0.06558607518672943, -0.13461445271968842, 0.40826326608657837], [-0.437153697013855, 0.2100471556186676, 0.3594965934753418, -0.25029444694519043, 0.2866637706756592, 0.39599692821502686, -0.5821129679679871, -0.06558413058519363, -0.1346130520105362, 0.4082637131214142], [-0.43715497851371765, 0.2100495994091034, 0.3594977557659149, -0.25029700994491577, 0.2866615653038025, 0.39599961042404175, -0.5821148157119751, -0.06558268517255783, -0.13461168110370636, 0.4082643389701843], [-0.4371543228626251, 0.21004849672317505, 0.35949817299842834, -0.2502955198287964, 0.2866610288619995, 0.3959990441799164, -0.5821155309677124, -0.06558185815811157, -0.1346113532781601, 0.40826570987701416], [-0.4371565580368042, 0.2100510150194168, 0.3594991862773895, -0.25029894709587097, 0.28666046261787415, 0.39600229263305664, -0.5821161270141602, -0.0655818060040474, -0.13461098074913025, 0.408265084028244], [-0.43715837597846985, 0.21005557477474213, 0.35950058698654175, -0.2503032684326172, 0.28665870428085327, 0.39600637555122375, -0.582118034362793, -0.0655800923705101, -0.13460983335971832, 0.408265620470047], [-0.43715620040893555, 0.2100529670715332, 0.35950055718421936, -0.2502996623516083, 0.28665778040885925, 0.3960039019584656, -0.5821189284324646, -0.06557914614677429, -0.13460946083068848, 0.4082680642604828], [-0.4371584355831146, 0.21005429327487946, 0.3595014810562134, -0.2503023147583008, 0.28665781021118164, 0.3960065245628357, -0.582118809223175, -0.0655798688530922, -0.13460949063301086, 0.4082668721675873], [-0.43715715408325195, 0.21005365252494812, 0.35950127243995667, -0.25030067563056946, 0.2866581678390503, 0.3960053622722626, -0.5821189880371094, -0.06557914614677429, -0.1346096247434616, 0.4082682132720947], [-0.4371582567691803, 0.21005463600158691, 0.3595016896724701, -0.25030237436294556, 0.2866577208042145, 0.3960067629814148, -0.5821191668510437, -0.06557959318161011, -0.1346094310283661, 0.40826770663261414], [-0.4371594190597534, 0.2100575566291809, 0.35950252413749695, -0.25030517578125, 0.28665685653686523, 0.3960093557834625, -0.5821200609207153, -0.0655786395072937, -0.13460886478424072, 0.40826770663261414], [-0.4371586740016937, 0.2100571244955063, 0.3595026731491089, -0.25030413269996643, 0.2866559326648712, 0.39600881934165955, -0.5821208953857422, -0.06557779759168625, -0.13460831344127655, 0.4082689881324768], [-0.43715962767601013, 0.21005751192569733, 0.3595031797885895, -0.25030517578125, 0.2866556644439697, 0.39600998163223267, -0.5821211338043213, -0.065577931702137, -0.13460825383663177, 0.4082687199115753], [-0.43716031312942505, 0.21005915105342865, 0.35950377583503723, -0.2503066956996918, 0.28665533661842346, 0.39601147174835205, -0.5821216702461243, -0.06557735800743103, -0.13460798561573029, 0.40826889872550964], [-0.4371569752693176, 0.210053950548172, 0.35950252413749695, -0.25030043721199036, 0.2866562604904175, 0.39600634574890137, -0.5821208953857422, -0.06557773053646088, -0.1346086710691452, 0.40827080607414246], [-0.4371595084667206, 0.21005555987358093, 0.35950297117233276, -0.25030380487442017, 0.2866571247577667, 0.3960089087486267, -0.582119882106781, -0.0655793845653534, -0.13460922241210938, 0.4082683324813843], [-0.43716269731521606, 0.21006351709365845, 0.3595045804977417, -0.25031158328056335, 0.28665512800216675, 0.396015465259552, -0.5821220874786377, -0.06557720899581909, -0.13460776209831238, 0.40826764702796936], [-0.4371611475944519, 0.21006353199481964, 0.3595050275325775, -0.25031018257141113, 0.2866523265838623, 0.3960147500038147, -0.5821244716644287, -0.06557486951351166, -0.13460612297058105, 0.40827053785324097], [-0.4371616244316101, 0.21006187796592712, 0.35950562357902527, -0.2503093183040619, 0.2866520583629608, 0.3960148096084595, -0.5821244120597839, -0.0655752643942833, -0.13460612297058105, 0.40827062726020813], [-0.43715938925743103, 0.21005749702453613, 0.3595046401023865, -0.2503044009208679, 0.28665414452552795, 0.39601096510887146, -0.5821230411529541, -0.06557606160640717, -0.1346074342727661, 0.4082716405391693], [-0.4371595084667206, 0.21005620062351227, 0.35950401425361633, -0.25030386447906494, 0.28665584325790405, 0.39600998163223267, -0.5821214914321899, -0.06557795405387878, -0.13460849225521088, 0.4082704186439514], [-0.43716031312942505, 0.2100585550069809, 0.3595040738582611, -0.2503061890602112, 0.28665608167648315, 0.39601147174835205, -0.5821213722229004, -0.06557793915271759, -0.13460858166217804, 0.4082695543766022], [-0.4371579885482788, 0.21005593240261078, 0.3595031499862671, -0.25030261278152466, 0.28665605187416077, 0.3960082232952118, -0.5821211934089661, -0.06557775288820267, -0.13460861146450043, 0.4082707464694977], [-0.4371548295021057, 0.21004873514175415, 0.35950133204460144, -0.25029534101486206, 0.28665855526924133, 0.3960018754005432, -0.5821186900138855, -0.06557991355657578, -0.1346103399991989, 0.40827077627182007], [-0.43715494871139526, 0.21004676818847656, 0.35950008034706116, -0.2502943277359009, 0.2866615951061249, 0.3960002660751343, -0.582115888595581, -0.06558240950107574, -0.13461211323738098, 0.40826836228370667], [-0.43715256452560425, 0.21004408597946167, 0.35949820280075073, -0.25029081106185913, 0.2866635024547577, 0.3959962725639343, -0.5821142196655273, -0.06558346003293991, -0.1346132606267929, 0.4082680940628052], [-0.43715667724609375, 0.21005043387413025, 0.3594992160797119, -0.25029876828193665, 0.28666236996650696, 0.3960021138191223, -0.5821146368980408, -0.065583735704422, -0.13461244106292725, 0.4082648754119873], [-0.43715906143188477, 0.21005821228027344, 0.3595010042190552, -0.250305712223053, 0.2866586148738861, 0.3960082232952118, -0.5821181535720825, -0.06558005511760712, -0.1346098929643631, 0.40826547145843506], [-0.4371591806411743, 0.2100594937801361, 0.35950231552124023, -0.25030648708343506, 0.2866550385951996, 0.3960098326206207, -0.5821211338043213, -0.06557752192020416, -0.13460776209831238, 0.40826767683029175], [-0.43716076016426086, 0.21006029844284058, 0.35950374603271484, -0.25030797719955444, 0.28665393590927124, 0.39601224660873413, -0.5821223258972168, -0.06557666510343552, -0.13460709154605865, 0.40826818346977234], [-0.43716245889663696, 0.21006307005882263, 0.3595049977302551, -0.25031089782714844, 0.2866531312465668, 0.3960154354572296, -0.5821235775947571, -0.06557564437389374, -0.1346064656972885, 0.4082687795162201], [-0.43716198205947876, 0.2100631296634674, 0.3595055341720581, -0.2503104507923126, 0.28665226697921753, 0.3960155248641968, -0.582124650478363, -0.06557483226060867, -0.1346060335636139, 0.4082704186439514], [-0.43716150522232056, 0.21006163954734802, 0.35950565338134766, -0.2503089904785156, 0.28665244579315186, 0.3960146903991699, -0.5821244716644287, -0.06557515263557434, -0.134606271982193, 0.40827104449272156], [-0.4371613562107086, 0.21006077527999878, 0.3595055937767029, -0.2503082752227783, 0.2866532802581787, 0.3960142135620117, -0.582123875617981, -0.06557570397853851, -0.13460682332515717, 0.4082709848880768], [-0.43715986609458923, 0.21005840599536896, 0.3595047891139984, -0.25030553340911865, 0.28665438294410706, 0.39601171016693115, -0.5821229815483093, -0.06557641923427582, -0.13460755348205566, 0.4082714021205902], [-0.43715932965278625, 0.21005678176879883, 0.3595041334629059, -0.25030410289764404, 0.2866555154323578, 0.3960101902484894, -0.5821217894554138, -0.06557762622833252, -0.13460834324359894, 0.4082707464694977], [-0.4371604919433594, 0.2100587785243988, 0.35950422286987305, -0.25030648708343506, 0.2866556942462921, 0.3960118293762207, -0.5821216106414795, -0.06557779759168625, -0.1346084028482437, 0.40826961398124695], [-0.4371650516986847, 0.21006786823272705, 0.35950639843940735, -0.2503162920475006, 0.2866525650024414, 0.3960200846195221, -0.5821242928504944, -0.06557575613260269, -0.13460630178451538, 0.4082682728767395], [-0.4371645152568817, 0.21007025241851807, 0.35950767993927, -0.25031715631484985, 0.28664901852607727, 0.39602169394493103, -0.582127571105957, -0.06557225435972214, -0.1346040964126587, 0.40827128291130066], [-0.43715837597846985, 0.2100578397512436, 0.35950568318367004, -0.2503036856651306, 0.2866508662700653, 0.39601123332977295, -0.5821257829666138, -0.06557357311248779, -0.1346055269241333, 0.40827471017837524], [-0.4371604323387146, 0.210055410861969, 0.3595050275325775, -0.25030386447906494, 0.28665536642074585, 0.3960110545158386, -0.5821219086647034, -0.06557789444923401, -0.13460828363895416, 0.40827080607414246], [-0.43715932965278625, 0.21005657315254211, 0.35950392484664917, -0.25030383467674255, 0.2866572141647339, 0.39601004123687744, -0.5821208953857422, -0.06557812541723251, -0.13460925221443176, 0.40827053785324097], [-0.43715816736221313, 0.21005555987358093, 0.3595030903816223, -0.2503025531768799, 0.28665679693222046, 0.39600813388824463, -0.5821206569671631, -0.06557867676019669, -0.13460910320281982, 0.4082704484462738], [-0.43715935945510864, 0.21005700528621674, 0.3595033288002014, -0.25030460953712463, 0.28665661811828613, 0.3960096836090088, -0.5821204781532288, -0.06557869911193848, -0.13460901379585266, 0.40826910734176636], [-0.4371601343154907, 0.2100592404603958, 0.35950371623039246, -0.250306636095047, 0.28665560483932495, 0.3960114121437073, -0.5821214318275452, -0.0655776783823967, -0.13460828363895416, 0.40826910734176636], [-0.43715959787368774, 0.21005862951278687, 0.35950377583503723, -0.25030577182769775, 0.28665482997894287, 0.3960108757019043, -0.5821220278739929, -0.06557710468769073, -0.13460785150527954, 0.40826988220214844], [-0.43715882301330566, 0.21005640923976898, 0.35950347781181335, -0.25030356645584106, 0.2866555154323578, 0.3960091769695282, -0.5821213722229004, -0.06557761877775192, -0.13460831344127655, 0.40827006101608276], [-0.4371570646762848, 0.21005266904830933, 0.3595023453235626, -0.2502996623516083, 0.2866573929786682, 0.3960057199001312, -0.582119882106781, -0.0655788779258728, -0.13460949063301086, 0.4082701802253723], [-0.4371595084667206, 0.2100558876991272, 0.35950273275375366, -0.2503039836883545, 0.28665778040885925, 0.39600884914398193, -0.5821194648742676, -0.06557969003915787, -0.1346096247434616, 0.408268004655838], [-0.4371541738510132, 0.21004942059516907, 0.3595007061958313, -0.2502953112125397, 0.28665903210639954, 0.39600124955177307, -0.5821184515953064, -0.06557947397232056, -0.13461050391197205, 0.4082707464694977], [-0.43715739250183105, 0.2100510597229004, 0.3595009446144104, -0.2502993941307068, 0.28665977716445923, 0.39600417017936707, -0.5821170806884766, -0.06558195501565933, -0.13461098074913025, 0.40826714038848877], [-0.4371590316295624, 0.2100568413734436, 0.35950183868408203, -0.2503044009208679, 0.28665873408317566, 0.39600831270217896, -0.582118570804596, -0.06557978689670563, -0.13461007177829742, 0.4082668721675873], [-0.43715912103652954, 0.2100585550069809, 0.35950252413749695, -0.2503056526184082, 0.28665584325790405, 0.39600950479507446, -0.5821207761764526, -0.06557805836200714, -0.13460831344127655, 0.4082683026790619], [-0.4371601343154907, 0.21005932986736298, 0.35950350761413574, -0.2503068447113037, 0.2866547405719757, 0.39601126313209534, -0.582121729850769, -0.06557726114988327, -0.13460767269134521, 0.4082685708999634], [-0.437162309885025, 0.21006284654140472, 0.3595048785209656, -0.2503107190132141, 0.2866535186767578, 0.39601513743400574, -0.5821231603622437, -0.06557615101337433, -0.13460682332515717, 0.408268541097641], [-0.43716517090797424, 0.21006886661052704, 0.35950690507888794, -0.25031688809394836, 0.28665077686309814, 0.39602094888687134, -0.5821259021759033, -0.0655740350484848, -0.1346050351858139, 0.40826910734176636], [-0.43716588616371155, 0.21007157862186432, 0.35950854420661926, -0.25031906366348267, 0.2866479754447937, 0.3960237205028534, -0.5821285843849182, -0.065571628510952, -0.1346033662557602, 0.4082712233066559], [-0.43716347217559814, 0.21006685495376587, 0.3595083951950073, -0.2503136396408081, 0.28664806485176086, 0.39602014422416687, -0.582128643989563, -0.06557147204875946, -0.1346036046743393, 0.4082736074924469], [-0.4371648132801056, 0.2100662738084793, 0.35950857400894165, -0.2503143548965454, 0.28664955496788025, 0.3960210084915161, -0.5821274518966675, -0.06557309627532959, -0.1346045732498169, 0.4082724153995514], [-0.4371629059314728, 0.2100643813610077, 0.35950779914855957, -0.2503114640712738, 0.2866508960723877, 0.396018385887146, -0.5821266174316406, -0.06557335704565048, -0.13460542261600494, 0.4082733690738678], [-0.43716153502464294, 0.21006126701831818, 0.3595067858695984, -0.25030842423439026, 0.286652147769928, 0.3960154056549072, -0.5821252465248108, -0.06557495146989822, -0.13460636138916016, 0.4082731306552887], [-0.4371640980243683, 0.2100650817155838, 0.35950738191604614, -0.2503132224082947, 0.2866522967815399, 0.3960190713405609, -0.5821250081062317, -0.06557533144950867, -0.13460637629032135, 0.4082709848880768], [-0.4371589422225952, 0.21005889773368835, 0.35950544476509094, -0.25030484795570374, 0.28665316104888916, 0.3960118293762207, -0.5821243524551392, -0.06557491421699524, -0.13460694253444672, 0.4082738161087036], [-0.43715861439704895, 0.2100543975830078, 0.35950425267219543, -0.25030189752578735, 0.28665557503700256, 0.39600884914398193, -0.5821216106414795, -0.06557818502187729, -0.13460858166217804, 0.4082716405391693], [-0.4371612071990967, 0.21005907654762268, 0.3595045506954193, -0.25030717253685, 0.28665652871131897, 0.39601263403892517, -0.5821210145950317, -0.06557837873697281, -0.1346089243888855, 0.40826910734176636], [-0.43716269731521606, 0.2100648283958435, 0.35950541496276855, -0.25031235814094543, 0.286653608083725, 0.3960166275501251, -0.5821235179901123, -0.06557615101337433, -0.1346069723367691, 0.408269464969635], [-0.4371614456176758, 0.210063636302948, 0.359505832195282, -0.25031042098999023, 0.286651611328125, 0.39601561427116394, -0.5821250081062317, -0.06557457149028778, -0.13460588455200195, 0.40827128291130066], [-0.437161386013031, 0.21006126701831818, 0.35950586199760437, -0.2503086030483246, 0.28665223717689514, 0.39601466059684753, -0.5821244716644287, -0.06557517498731613, -0.134606271982193, 0.40827128291130066], [-0.4371631443500519, 0.21006350219249725, 0.35950636863708496, -0.2503114640712738, 0.28665265440940857, 0.3960171043872833, -0.5821244120597839, -0.06557535380125046, -0.13460640609264374, 0.4082704186439514], [-0.43716588616371155, 0.2100699245929718, 0.3595079779624939, -0.2503179609775543, 0.28665032982826233, 0.39602264761924744, -0.5821266174316406, -0.06557370722293854, -0.13460488617420197, 0.4082702696323395], [-0.437166303396225, 0.21007274091243744, 0.35950931906700134, -0.25032004714012146, 0.28664740920066833, 0.3960251212120056, -0.5821292996406555, -0.06557119637727737, -0.13460315763950348, 0.4082720875740051], [-0.4371645152568817, 0.21006879210472107, 0.35950931906700134, -0.25031569600105286, 0.28664711117744446, 0.39602237939834595, -0.5821295380592346, -0.0655708834528923, -0.1346031129360199, 0.4082741439342499], [-0.43716302514076233, 0.21006369590759277, 0.3595084249973297, -0.2503109872341156, 0.2866497039794922, 0.3960186243057251, -0.5821274518966675, -0.06557287275791168, -0.13460476696491241, 0.40827417373657227], [-0.4371581971645355, 0.2100546658039093, 0.35950547456741333, -0.25030115246772766, 0.2866543233394623, 0.3960097134113312, -0.5821235775947571, -0.06557588279247284, -0.13460773229599, 0.40827465057373047], [-0.4371574819087982, 0.21005110442638397, 0.3595033884048462, -0.2502986490726471, 0.28665822744369507, 0.39600610733032227, -0.5821197032928467, -0.0655798390507698, -0.13461025059223175, 0.4082716703414917], [-0.43715542554855347, 0.2100491225719452, 0.3595013916492462, -0.250296026468277, 0.28666073083877563, 0.39600247144699097, -0.5821173787117004, -0.06558123975992203, -0.13461174070835114, 0.40827032923698425], [-0.4371553063392639, 0.21004904806613922, 0.35950031876564026, -0.25029629468917847, 0.28666117787361145, 0.39600154757499695, -0.5821163654327393, -0.06558230519294739, -0.13461197912693024, 0.4082685112953186], [-0.4371574819087982, 0.210053488612175, 0.35950085520744324, -0.25030115246772766, 0.2866600751876831, 0.39600518345832825, -0.5821170210838318, -0.06558147072792053, -0.1346111297607422, 0.4082667827606201], [-0.43715816736221313, 0.21005640923976898, 0.35950154066085815, -0.25030356645584106, 0.28665778040885925, 0.39600732922554016, -0.5821190476417542, -0.06557944416999817, -0.13460955023765564, 0.40826740860939026], [-0.43716004490852356, 0.2100593000650406, 0.3595028817653656, -0.2503069341182709, 0.28665560483932495, 0.39601069688796997, -0.5821208953857422, -0.06557806581258774, -0.13460813462734222, 0.4082675576210022], [-0.4371587634086609, 0.21005751192569733, 0.35950297117233276, -0.2503044009208679, 0.28665515780448914, 0.39600929617881775, -0.5821215510368347, -0.06557705998420715, -0.13460788130760193, 0.40826937556266785], [-0.4371580183506012, 0.21005436778068542, 0.3595026135444641, -0.25030165910720825, 0.28665629029273987, 0.3960072100162506, -0.5821205377578735, -0.06557823717594147, -0.1346086710691452, 0.4082695543766022], [-0.4371582269668579, 0.21005405485630035, 0.359502375125885, -0.25030165910720825, 0.2866576910018921, 0.3960070013999939, -0.5821195244789124, -0.06557920575141907, -0.13460949063301086, 0.4082688093185425], [-0.437158465385437, 0.2100553810596466, 0.35950231552124023, -0.25030282139778137, 0.2866576611995697, 0.3960076868534088, -0.5821196436882019, -0.06557919085025787, -0.13460949063301086, 0.408268541097641], [-0.43715783953666687, 0.2100549340248108, 0.3595021665096283, -0.2503020763397217, 0.28665730357170105, 0.3960069417953491, -0.5821197628974915, -0.06557895988225937, -0.13460934162139893, 0.4082689583301544], [-0.4371561110019684, 0.21005141735076904, 0.35950133204460144, -0.25029832124710083, 0.28665828704833984, 0.3960038125514984, -0.582118809223175, -0.06557967513799667, -0.13460998237133026, 0.40826934576034546], [-0.4371589124202728, 0.21005484461784363, 0.3595019578933716, -0.2503029704093933, 0.28665846586227417, 0.3960075080394745, -0.582118570804596, -0.06558029353618622, -0.13460995256900787, 0.40826719999313354], [-0.43715956807136536, 0.21005858480930328, 0.3595026731491089, -0.2503059208393097, 0.28665676712989807, 0.39600998163223267, -0.5821202993392944, -0.06557837873697281, -0.13460883498191833, 0.40826791524887085], [-0.4371607303619385, 0.21006090939044952, 0.35950377583503723, -0.2503083646297455, 0.28665444254875183, 0.39601245522499084, -0.5821221470832825, -0.06557707488536835, -0.1346074640750885, 0.408268541097641], [-0.43716102838516235, 0.21006132662296295, 0.3595045506954193, -0.25030866265296936, 0.28665345907211304, 0.39601340889930725, -0.5821231603622437, -0.0655759945511818, -0.13460685312747955, 0.408269464969635], [-0.43716439604759216, 0.21006646752357483, 0.35950636863708496, -0.2503146827220917, 0.28665176033973694, 0.3960190713405609, -0.5821248292922974, -0.0655750185251236, -0.13460567593574524, 0.40826892852783203], [-0.4371662735939026, 0.21007180213928223, 0.3595082759857178, -0.25031954050064087, 0.28664883971214294, 0.3960239589214325, -0.5821278691291809, -0.06557229161262512, -0.1346038430929184, 0.40827032923698425], [-0.43716368079185486, 0.21006792783737183, 0.35950833559036255, -0.2503145933151245, 0.28664782643318176, 0.39602071046829224, -0.5821288228034973, -0.06557127088308334, -0.13460342586040497, 0.40827348828315735], [-0.43716323375701904, 0.2100639045238495, 0.35950803756713867, -0.2503114938735962, 0.28664979338645935, 0.3960185647010803, -0.5821270942687988, -0.06557321548461914, -0.1346047967672348, 0.4082731604576111], [-0.43716487288475037, 0.21006639301776886, 0.3595082759857178, -0.25031447410583496, 0.2866509258747101, 0.3960208296775818, -0.5821264982223511, -0.06557388603687286, -0.13460542261600494, 0.408271849155426], [-0.4371632933616638, 0.21006588637828827, 0.35950782895088196, -0.2503128945827484, 0.28665056824684143, 0.39601925015449524, -0.5821268558502197, -0.06557333469390869, -0.13460524380207062, 0.4082731008529663], [-0.43716031312942505, 0.21005988121032715, 0.35950639843940735, -0.2503065764904022, 0.2866520285606384, 0.3960137963294983, -0.582125186920166, -0.06557474285364151, -0.13460636138916016, 0.40827375650405884], [-0.43715378642082214, 0.2100464552640915, 0.35950252413749695, -0.2502923905849457, 0.28665778040885925, 0.3960012197494507, -0.5821200013160706, -0.06557872146368027, -0.1346101015806198, 0.40827420353889465], [-0.43714967370033264, 0.2100355476140976, 0.35949814319610596, -0.250282347202301, 0.28666532039642334, 0.39599084854125977, -0.5821129679679871, -0.06558503955602646, -0.13461478054523468, 0.40827104449272156], [-0.43714722990989685, 0.21003100275993347, 0.3594944179058075, -0.25027796626091003, 0.2866710126399994, 0.39598456025123596, -0.582107663154602, -0.06558936834335327, -0.13461817800998688, 0.4082672894001007], [-0.4371469020843506, 0.21003194153308868, 0.35949239134788513, -0.2502789795398712, 0.28667259216308594, 0.39598312973976135, -0.5821055173873901, -0.06559115648269653, -0.13461902737617493, 0.40826401114463806], [-0.4371471405029297, 0.21003411710262299, 0.3594916760921478, -0.2502810060977936, 0.2866717576980591, 0.39598363637924194, -0.5821055769920349, -0.06559060513973236, -0.1346183866262436, 0.40826231241226196], [-0.4371480941772461, 0.2100362628698349, 0.35949188470840454, -0.2502833306789398, 0.286670058965683, 0.39598530530929565, -0.5821065306663513, -0.0655895248055458, -0.1346171796321869, 0.4082615077495575], [-0.43714573979377747, 0.21003231406211853, 0.3594909608364105, -0.2502785623073578, 0.28667035698890686, 0.39598146080970764, -0.5821062922477722, -0.06558915972709656, -0.13461726903915405, 0.40826261043548584], [-0.4371516704559326, 0.2100399136543274, 0.3594929277896881, -0.25028863549232483, 0.2866691052913666, 0.3959898352622986, -0.5821073055267334, -0.06558932363986969, -0.13461630046367645, 0.40825921297073364], [-0.4371519088745117, 0.21004490554332733, 0.3594942092895508, -0.2502918243408203, 0.2866660952568054, 0.39599308371543884, -0.582110583782196, -0.06558544933795929, -0.1346142292022705, 0.40826159715652466], [-0.43715232610702515, 0.21004508435726166, 0.3594953417778015, -0.25029224157333374, 0.2866634428501129, 0.3959941864013672, -0.5821126103401184, -0.06558431684970856, -0.13461273908615112, 0.4082631468772888], [-0.43715551495552063, 0.21004930138587952, 0.3594973683357239, -0.25029733777046204, 0.28666213154792786, 0.3959995210170746, -0.5821141004562378, -0.06558317691087723, -0.13461191952228546, 0.408262699842453], [-0.43715599179267883, 0.21005171537399292, 0.359498530626297, -0.2502990663051605, 0.286660373210907, 0.3960017263889313, -0.5821162462234497, -0.06558116525411606, -0.13461071252822876, 0.4082646369934082], [-0.43715760111808777, 0.21005412936210632, 0.359499990940094, -0.25030186772346497, 0.28665852546691895, 0.3960048258304596, -0.5821178555488586, -0.06558022648096085, -0.13460968434810638, 0.4082653820514679], [-0.4371579587459564, 0.2100551873445511, 0.3595009744167328, -0.25030258297920227, 0.28665754199028015, 0.3960062861442566, -0.5821190476417542, -0.06557910144329071, -0.1346091330051422, 0.40826672315597534], [-0.4371595084667206, 0.21005748212337494, 0.3595021665096283, -0.2503052353858948, 0.2866564095020294, 0.39600905776023865, -0.5821201801300049, -0.06557849049568176, -0.13460849225521088, 0.408267080783844], [-0.4371587336063385, 0.21005694568157196, 0.35950252413749695, -0.25030410289764404, 0.2866559624671936, 0.3960086405277252, -0.5821208953857422, -0.06557772308588028, -0.13460825383663177, 0.40826860070228577], [-0.4371553659439087, 0.21005024015903473, 0.3595011532306671, -0.25029686093330383, 0.28665778040885925, 0.39600276947021484, -0.5821192860603333, -0.06557904928922653, -0.13460959494113922, 0.40827006101608276], [-0.4371580183506012, 0.21005205810070038, 0.3595013916492462, -0.2503003478050232, 0.2866594195365906, 0.3960053622722626, -0.5821177363395691, -0.06558100879192352, -0.13461056351661682, 0.4082672595977783], [-0.4371575117111206, 0.21005423367023468, 0.35950130224227905, -0.25030139088630676, 0.28665903210639954, 0.3960058093070984, -0.5821184515953064, -0.06557987630367279, -0.13461022078990936, 0.40826794505119324], [-0.4371577799320221, 0.2100549042224884, 0.35950157046318054, -0.2503022253513336, 0.2866576313972473, 0.3960064947605133, -0.5821192264556885, -0.06557955592870712, -0.13460946083068848, 0.4082680642604828], [-0.4371580183506012, 0.21005505323410034, 0.3595019578933716, -0.25030240416526794, 0.2866573631763458, 0.3960069715976715, -0.5821194648742676, -0.06557904183864594, -0.13460928201675415, 0.40826818346977234], [-0.4371592104434967, 0.2100568562746048, 0.35950252413749695, -0.25030452013015747, 0.2866567373275757, 0.3960089385509491, -0.5821201801300049, -0.06557869166135788, -0.13460880517959595, 0.408268004655838], [-0.43715593218803406, 0.2100520133972168, 0.3595014214515686, -0.25029850006103516, 0.2866576313972473, 0.3960040211677551, -0.5821195244789124, -0.06557877361774445, -0.13460949063301086, 0.4082699716091156], [-0.4371560215950012, 0.21004951000213623, 0.3595007658004761, -0.25029703974723816, 0.28665950894355774, 0.39600253105163574, -0.5821175575256348, -0.06558103114366531, -0.13461071252822876, 0.40826842188835144], [-0.4371572434902191, 0.21005214750766754, 0.35950079560279846, -0.2502998411655426, 0.28666019439697266, 0.39600443840026855, -0.5821171998977661, -0.06558112055063248, -0.13461101055145264, 0.40826717019081116], [-0.43715646862983704, 0.21005260944366455, 0.35950058698654175, -0.2502996325492859, 0.28665924072265625, 0.39600396156311035, -0.5821178555488586, -0.06558042019605637, -0.13461044430732727, 0.40826788544654846], [-0.43715640902519226, 0.21005193889141083, 0.3595006465911865, -0.2502991557121277, 0.2866589426994324, 0.3960036635398865, -0.5821178555488586, -0.06558053195476532, -0.1346103399991989, 0.4082677662372589], [-0.43715900182724, 0.2100558876991272, 0.3595016896724701, -0.25030386447906494, 0.2866581082344055, 0.3960077464580536, -0.5821186900138855, -0.06557990610599518, -0.13460968434810638, 0.40826666355133057], [-0.4371618926525116, 0.21006277203559875, 0.3595036268234253, -0.25031065940856934, 0.286655068397522, 0.39601388573646545, -0.5821216106414795, -0.065577432513237, -0.13460764288902283, 0.40826696157455444], [-0.437165766954422, 0.2100708931684494, 0.35950663685798645, -0.2503190040588379, 0.28665030002593994, 0.3960219621658325, -0.5821259021759033, -0.06557391583919525, -0.13460463285446167, 0.40826791524887085], [-0.43717244267463684, 0.21008366346359253, 0.35951149463653564, -0.2503325045108795, 0.2866438031196594, 0.3960351347923279, -0.5821319818496704, -0.06556905061006546, -0.13460050523281097, 0.4082687795162201], [-0.4371756613254547, 0.21009206771850586, 0.3595157563686371, -0.2503400146961212, 0.2866371273994446, 0.3960438668727875, -0.5821385979652405, -0.06556318700313568, -0.13459637761116028, 0.40827295184135437], [-0.43717160820961, 0.21008466184139252, 0.3595163822174072, -0.2503311038017273, 0.28663578629493713, 0.3960387706756592, -0.582140326499939, -0.06556160748004913, -0.1345958709716797, 0.40827876329421997], [-0.4371679425239563, 0.21007275581359863, 0.35951465368270874, -0.2503199577331543, 0.28664103150367737, 0.3960303068161011, -0.5821360349655151, -0.0655658170580864, -0.1345994770526886, 0.4082797169685364], [-0.43716222047805786, 0.21006038784980774, 0.3595105707645416, -0.25030717253685, 0.2866491675376892, 0.39601844549179077, -0.5821293592453003, -0.06557154655456543, -0.13460472226142883, 0.4082792103290558], [-0.4371635317802429, 0.21006111800670624, 0.3595086932182312, -0.2503095269203186, 0.2866535186767578, 0.3960181176662445, -0.5821250677108765, -0.06557610630989075, -0.1346074342727661, 0.4082743227481842], [-0.43716397881507874, 0.21006636321544647, 0.3595081865787506, -0.25031381845474243, 0.2866528034210205, 0.39602014422416687, -0.5821254253387451, -0.06557516008615494, -0.13460685312747955, 0.4082728624343872], [-0.43715572357177734, 0.21005423367023468, 0.3595046401023865, -0.2502991855144501, 0.2866540253162384, 0.396007239818573, -0.5821235179901123, -0.06557578593492508, -0.13460788130760193, 0.4082759618759155], [-0.4371556341648102, 0.2100471556186676, 0.3595024645328522, -0.2502947151660919, 0.2866589426994324, 0.3960026204586029, -0.5821183323860168, -0.06558104604482651, -0.13461101055145264, 0.4082714915275574], [-0.43715396523475647, 0.2100452333688736, 0.3595000207424164, -0.25029224157333374, 0.28666311502456665, 0.3959989845752716, -0.582115113735199, -0.06558292359113693, -0.13461323082447052, 0.408269464969635], [-0.4371524453163147, 0.21004360914230347, 0.35949811339378357, -0.25029051303863525, 0.2866641581058502, 0.3959958255290985, -0.5821135640144348, -0.0655844658613205, -0.13461381196975708, 0.4082680940628052], [-0.4371492266654968, 0.2100382149219513, 0.3594958782196045, -0.2502845823764801, 0.28666621446609497, 0.39598986506462097, -0.5821112394332886, -0.06558585911989212, -0.13461513817310333, 0.40826746821403503], [-0.43714839220046997, 0.21003493666648865, 0.359494149684906, -0.2502819895744324, 0.28666868805885315, 0.3959866762161255, -0.5821086168289185, -0.06558821350336075, -0.13461650907993317, 0.40826520323753357], [-0.43714988231658936, 0.2100376933813095, 0.3594937324523926, -0.25028520822525024, 0.28666937351226807, 0.39598846435546875, -0.5821079611778259, -0.06558862328529358, -0.13461674749851227, 0.40826287865638733], [-0.43714943528175354, 0.21003900468349457, 0.3594934940338135, -0.2502858638763428, 0.28666821122169495, 0.39598849415779114, -0.5821087956428528, -0.0655876100063324, -0.1346159279346466, 0.40826308727264404], [-0.43714815378189087, 0.21003639698028564, 0.3594929277896881, -0.2502831220626831, 0.2866681218147278, 0.3959861993789673, -0.5821085572242737, -0.06558766961097717, -0.1346159279346466, 0.4082634150981903], [-0.43715083599090576, 0.2100394368171692, 0.3594937026500702, -0.25028735399246216, 0.28666797280311584, 0.39598971605300903, -0.5821086764335632, -0.0655878558754921, -0.1346157193183899, 0.40826159715652466], [-0.43715545535087585, 0.21004946529865265, 0.359496146440506, -0.2502976357936859, 0.28666460514068604, 0.39599862694740295, -0.5821119546890259, -0.06558506190776825, -0.13461332023143768, 0.40826091170310974], [-0.4371514916419983, 0.2100459188222885, 0.3594960570335388, -0.2502917945384979, 0.286662220954895, 0.3959945738315582, -0.5821142792701721, -0.06558240205049515, -0.13461199402809143, 0.40826553106307983], [-0.4371536374092102, 0.21004486083984375, 0.35949695110321045, -0.2502928376197815, 0.28666257858276367, 0.39599618315696716, -0.5821135640144348, -0.06558392941951752, -0.13461238145828247, 0.4082641005516052], [-0.43715575337409973, 0.2100493460893631, 0.3594980537891388, -0.2502972483634949, 0.2866625189781189, 0.3960002660751343, -0.5821143984794617, -0.06558283418416977, -0.13461211323738098, 0.4082638621330261], [-0.437152624130249, 0.2100459784269333, 0.3594973087310791, -0.25029242038726807, 0.2866619825363159, 0.3959962725639343, -0.5821149945259094, -0.06558229774236679, -0.13461194932460785, 0.40826666355133057], [-0.43714940547943115, 0.21003781259059906, 0.359495609998703, -0.25028446316719055, 0.2866649031639099, 0.3959895670413971, -0.5821120738983154, -0.06558492034673691, -0.1346140205860138, 0.4082668125629425], [-0.43714639544487, 0.21003037691116333, 0.3594929277896881, -0.25027719140052795, 0.28666993975639343, 0.39598265290260315, -0.582107663154602, -0.0655885711312294, -0.13461720943450928, 0.40826553106307983], [-0.4371476471424103, 0.21003182232379913, 0.35949185490608215, -0.25027960538864136, 0.28667235374450684, 0.39598315954208374, -0.5821053385734558, -0.0655909925699234, -0.13461852073669434, 0.4082622230052948], [-0.43714839220046997, 0.21003618836402893, 0.35949182510375977, -0.2502833902835846, 0.2866712510585785, 0.3959853947162628, -0.5821061134338379, -0.06558992713689804, -0.13461773097515106, 0.40826135873794556], [-0.43714746832847595, 0.21003587543964386, 0.3594917058944702, -0.25028249621391296, 0.2866694927215576, 0.39598459005355835, -0.5821071863174438, -0.0655888020992279, -0.13461671769618988, 0.40826210379600525], [-0.4371478855609894, 0.21003508567810059, 0.35949185490608215, -0.25028228759765625, 0.28666943311691284, 0.39598461985588074, -0.5821070671081543, -0.06558886170387268, -0.1346166580915451, 0.40826165676116943], [-0.43715181946754456, 0.2100415676832199, 0.3594934940338135, -0.2502897083759308, 0.28666800260543823, 0.3959910571575165, -0.5821085572242737, -0.06558786332607269, -0.13461551070213318, 0.4082601070404053], [-0.4371499717235565, 0.210041344165802, 0.3594937026500702, -0.25028783082962036, 0.28666624426841736, 0.3959899842739105, -0.5821104645729065, -0.06558559834957123, -0.13461440801620483, 0.4082629680633545], [-0.4371494948863983, 0.2100382298231125, 0.3594937026500702, -0.25028538703918457, 0.2866663932800293, 0.3959883749485016, -0.5821099877357483, -0.06558649986982346, -0.13461469113826752, 0.40826326608657837], [-0.43715164065361023, 0.2100408524274826, 0.3594944179058075, -0.250288724899292, 0.28666698932647705, 0.39599138498306274, -0.5821098685264587, -0.06558670103549957, -0.13461492955684662, 0.4082620441913605], [-0.4371534585952759, 0.21004587411880493, 0.3594955503940582, -0.2502935826778412, 0.28666505217552185, 0.39599546790122986, -0.5821118354797363, -0.06558509916067123, -0.13461363315582275, 0.4082624018192291], [-0.43715301156044006, 0.21004652976989746, 0.3594963550567627, -0.2502935230731964, 0.2866630554199219, 0.39599597454071045, -0.58211350440979, -0.06558346748352051, -0.1346125304698944, 0.4082641005516052], [-0.43715426325798035, 0.2100474238395691, 0.3594972789287567, -0.2502949833869934, 0.28666213154792786, 0.39599794149398804, -0.5821142792701721, -0.06558314710855484, -0.13461202383041382, 0.4082642197608948], [-0.43715500831604004, 0.2100488841533661, 0.3594980835914612, -0.25029638409614563, 0.28666165471076965, 0.39599961042404175, -0.5821150541305542, -0.06558232009410858, -0.13461168110370636, 0.40826478600502014], [-0.4371548295021057, 0.2100488543510437, 0.35949838161468506, -0.25029611587524414, 0.28666114807128906, 0.3959996998310089, -0.582115650177002, -0.06558196991682053, -0.13461138308048248, 0.40826570987701416], [-0.4371548295021057, 0.21004849672317505, 0.35949862003326416, -0.25029587745666504, 0.28666117787361145, 0.3959996998310089, -0.582115650177002, -0.06558205187320709, -0.13461147248744965, 0.40826597809791565], [-0.43715596199035645, 0.21005037426948547, 0.35949915647506714, -0.25029799342155457, 0.2866608500480652, 0.3960016369819641, -0.5821160078048706, -0.06558185815811157, -0.13461123406887054, 0.40826570987701416], [-0.43715545535087585, 0.21005037426948547, 0.3594992756843567, -0.25029751658439636, 0.2866603434085846, 0.3960014283657074, -0.5821166038513184, -0.06558123975992203, -0.13461098074913025, 0.4082666039466858], [-0.43715545535087585, 0.2100497931241989, 0.35949939489364624, -0.2502971291542053, 0.28666025400161743, 0.39600124955177307, -0.5821165442466736, -0.06558145582675934, -0.13461104035377502, 0.40826672315597534], [-0.4371534585952759, 0.21004612743854523, 0.359498530626297, -0.25029298663139343, 0.2866615951061249, 0.3959977924823761, -0.5821154117584229, -0.06558211147785187, -0.13461191952228546, 0.40826743841171265], [-0.4371543824672699, 0.21004633605480194, 0.3594983220100403, -0.2502939701080322, 0.28666266798973083, 0.3959982991218567, -0.5821143984794617, -0.06558343768119812, -0.1346125304698944, 0.40826597809791565], [-0.4371529519557953, 0.2100452333688736, 0.3594975471496582, -0.2502921223640442, 0.28666332364082336, 0.39599642157554626, -0.5821139216423035, -0.06558340787887573, -0.13461296260356903, 0.40826642513275146], [-0.4371514618396759, 0.2100420594215393, 0.359496533870697, -0.2502889633178711, 0.28666427731513977, 0.3959933817386627, -0.5821127891540527, -0.06558455526828766, -0.13461363315582275, 0.4082662761211395], [-0.437153697013855, 0.21004490554332733, 0.35949695110321045, -0.2502928078174591, 0.28666454553604126, 0.3959962725639343, -0.5821124315261841, -0.06558505445718765, -0.13461369276046753, 0.4082641899585724], [-0.43715542554855347, 0.2100500762462616, 0.359497994184494, -0.2502976059913635, 0.2866625487804413, 0.3960002660751343, -0.5821143388748169, -0.06558315455913544, -0.1346123218536377, 0.4082641899585724], [-0.4371499717235565, 0.21004199981689453, 0.3594963252544403, -0.2502877116203308, 0.2866628170013428, 0.3959922194480896, -0.5821139812469482, -0.06558289378881454, -0.13461270928382874, 0.408267617225647], [-0.43714967370033264, 0.21003636717796326, 0.3594951033592224, -0.250283807516098, 0.2866663634777069, 0.3959887623786926, -0.5821105241775513, -0.06558657437562943, -0.1346149891614914, 0.4082653820514679], [-0.43714913725852966, 0.21003574132919312, 0.35949379205703735, -0.25028300285339355, 0.28666937351226807, 0.3959871828556061, -0.5821083188056946, -0.06558803468942642, -0.13461662828922272, 0.4082639217376709], [-0.4371454119682312, 0.2100307196378708, 0.3594915270805359, -0.250277042388916, 0.28667107224464417, 0.3959810435771942, -0.5821064710617065, -0.06558950990438461, -0.13461779057979584, 0.4082643687725067], [-0.43714261054992676, 0.2100241482257843, 0.3594891428947449, -0.25027069449424744, 0.2866743206977844, 0.3959747552871704, -0.5821030735969543, -0.06559239327907562, -0.13461993634700775, 0.4082629978656769], [-0.43714508414268494, 0.21002711355686188, 0.35948872566223145, -0.25027498602867126, 0.2866758406162262, 0.3959771990776062, -0.5821014046669006, -0.06559400260448456, -0.13462066650390625, 0.4082592725753784], [-0.4371425211429596, 0.2100260704755783, 0.3594874441623688, -0.250272274017334, 0.28667575120925903, 0.39597418904304504, -0.5821014642715454, -0.06559307873249054, -0.13462048768997192, 0.4082602560520172], [-0.4371470808982849, 0.2100321501493454, 0.35948890447616577, -0.25028032064437866, 0.2866736054420471, 0.39598071575164795, -0.5821027159690857, -0.06559295207262039, -0.1346190869808197, 0.40825748443603516], [-0.43714848160743713, 0.2100377380847931, 0.3594905436038971, -0.2502848207950592, 0.2866706848144531, 0.39598506689071655, -0.5821057558059692, -0.06558936834335327, -0.13461706042289734, 0.40825873613357544], [-0.43715187907218933, 0.21004365384578705, 0.3594930171966553, -0.2502914369106293, 0.2866664528846741, 0.3959915339946747, -0.5821093916893005, -0.06558693200349808, -0.13461440801620483, 0.40825942158699036], [-0.4371579885482788, 0.21005502343177795, 0.3594972789287567, -0.25030356645584106, 0.2866613268852234, 0.3960033357143402, -0.5821143984794617, -0.06558270752429962, -0.1346110999584198, 0.40825971961021423], [-0.4371558427810669, 0.21005424857139587, 0.3594987094402313, -0.25030067563056946, 0.28665778040885925, 0.39600279927253723, -0.5821182131767273, -0.0655788853764534, -0.13460895419120789, 0.40826523303985596], [-0.4371562898159027, 0.210051029920578, 0.35949966311454773, -0.2502986192703247, 0.2866579592227936, 0.39600250124931335, -0.5821180939674377, -0.06557989120483398, -0.13460934162139893, 0.4082661271095276], [-0.43716001510620117, 0.21005648374557495, 0.3595014810562134, -0.25030502676963806, 0.28665807843208313, 0.3960084915161133, -0.5821187496185303, -0.06557954847812653, -0.13460931181907654, 0.4082651734352112], [-0.43715646862983704, 0.2100536972284317, 0.3595009446144104, -0.2503001391887665, 0.28665751218795776, 0.39600464701652527, -0.5821197032928467, -0.06557834893465042, -0.13460910320281982, 0.4082688093185425], [-0.43715566396713257, 0.21004952490329742, 0.3595004379749298, -0.2502968907356262, 0.2866588234901428, 0.39600202441215515, -0.5821179747581482, -0.06558052450418472, -0.13461025059223175, 0.40826839208602905], [-0.4371591806411743, 0.2100549042224884, 0.35950154066085815, -0.2503032684326172, 0.2866591811180115, 0.39600732922554016, -0.5821179747581482, -0.06558062881231308, -0.1346103399991989, 0.4082660973072052], [-0.43715783953666687, 0.2100561261177063, 0.35950157046318054, -0.25030291080474854, 0.2866574823856354, 0.3960070312023163, -0.5821196436882019, -0.06557875126600266, -0.13460925221443176, 0.4082682430744171], [-0.4371599555015564, 0.21005845069885254, 0.3595028519630432, -0.25030627846717834, 0.2866557538509369, 0.39601022005081177, -0.5821207761764526, -0.0655783861875534, -0.13460828363895416, 0.40826767683029175], [-0.43716081976890564, 0.2100607454776764, 0.3595038950443268, -0.25030821561813354, 0.28665462136268616, 0.3960125744342804, -0.5821220874786377, -0.06557679921388626, -0.1346074938774109, 0.4082685112953186], [-0.4371638000011444, 0.21006588637828827, 0.35950571298599243, -0.2503139078617096, 0.28665217757225037, 0.3960179388523102, -0.5821243524551392, -0.06557536870241165, -0.13460594415664673, 0.408268541097641], [-0.4371640384197235, 0.21006785333156586, 0.3595069646835327, -0.2503151595592499, 0.2866501212120056, 0.396019846200943, -0.5821265578269958, -0.06557318568229675, -0.13460469245910645, 0.40827056765556335], [-0.43715938925743103, 0.21005913615226746, 0.35950562357902527, -0.2503054141998291, 0.28665146231651306, 0.3960123062133789, -0.5821253657341003, -0.0655740275979042, -0.1346057951450348, 0.40827345848083496], [-0.4371599853038788, 0.21005584299564362, 0.3595048487186432, -0.25030383467674255, 0.2866550087928772, 0.39601075649261475, -0.582122266292572, -0.065577432513237, -0.13460804522037506, 0.40827110409736633], [-0.4371595084667206, 0.2100566029548645, 0.35950398445129395, -0.25030404329299927, 0.28665682673454285, 0.3960101008415222, -0.5821210145950317, -0.06557811796665192, -0.13460904359817505, 0.40827038884162903], [-0.4371598958969116, 0.21005845069885254, 0.3595038652420044, -0.2503058910369873, 0.286655992269516, 0.39601102471351624, -0.5821213722229004, -0.06557810306549072, -0.13460858166217804, 0.40826982259750366], [-0.4371568560600281, 0.21005398035049438, 0.3595027029514313, -0.25030043721199036, 0.28665658831596375, 0.39600640535354614, -0.5821205973625183, -0.0655781626701355, -0.13460907340049744, 0.4082709848880768], [-0.4371548295021057, 0.21004793047904968, 0.3595010042190552, -0.25029489398002625, 0.2866593599319458, 0.3960013687610626, -0.5821178555488586, -0.06558062881231308, -0.1346108317375183, 0.40827012062072754], [-0.4371567666530609, 0.21005010604858398, 0.3595006465911865, -0.25029808282852173, 0.2866610884666443, 0.39600321650505066, -0.5821163654327393, -0.06558211147785187, -0.13461168110370636, 0.4082673490047455], [-0.43715858459472656, 0.21005594730377197, 0.35950136184692383, -0.25030356645584106, 0.28665921092033386, 0.396007239818573, -0.5821180939674377, -0.06558053940534592, -0.1346103698015213, 0.4082667827606201], [-0.4371574819087982, 0.2100558578968048, 0.3595016300678253, -0.25030261278152466, 0.28665706515312195, 0.39600670337677, -0.5821197032928467, -0.06557884812355042, -0.1346091330051422, 0.40826845169067383], [-0.43715667724609375, 0.21005262434482574, 0.3595014214515686, -0.2502996623516083, 0.286657452583313, 0.3960047662258148, -0.5821191668510437, -0.06557925045490265, -0.13460946083068848, 0.4082687795162201], [-0.43715596199035645, 0.21004994213581085, 0.3595007061958313, -0.2502971887588501, 0.2866593897342682, 0.3960026204586029, -0.5821177363395691, -0.06558050215244293, -0.13461053371429443, 0.40826845169067383], [-0.43716028332710266, 0.21005718410015106, 0.3595021069049835, -0.25030574202537537, 0.28665846586227417, 0.3960094153881073, -0.5821186900138855, -0.0655803233385086, -0.13460980355739594, 0.4082660973072052], [-0.4371618926525116, 0.21006396412849426, 0.35950392484664917, -0.2503114342689514, 0.28665465116500854, 0.396014541387558, -0.5821222066879272, -0.06557677686214447, -0.13460740447044373, 0.4082675874233246], [-0.4371569752693176, 0.21005608141422272, 0.35950297117233276, -0.25030192732810974, 0.28665393590927124, 0.3960075080394745, -0.5821226239204407, -0.06557602435350418, -0.1346072554588318, 0.4082714915275574], [-0.43716153502464294, 0.210058331489563, 0.35950422286987305, -0.25030717253685, 0.2866551876068115, 0.3960123062133789, -0.5821213722229004, -0.06557823717594147, -0.13460801541805267, 0.4082680344581604], [-0.4371592402458191, 0.21005816757678986, 0.3595036566257477, -0.2503049075603485, 0.2866557836532593, 0.3960103988647461, -0.582121729850769, -0.06557682156562805, -0.134608194231987, 0.4082701802253723], [-0.4371547996997833, 0.2100493609905243, 0.3595014810562134, -0.2502957284450531, 0.28665757179260254, 0.39600226283073425, -0.5821196436882019, -0.0655791163444519, -0.13460959494113922, 0.40827152132987976], [-0.4371565580368042, 0.21004903316497803, 0.3595009744167328, -0.25029709935188293, 0.2866605818271637, 0.3960028290748596, -0.5821167826652527, -0.06558191776275635, -0.13461150228977203, 0.4082680344581604], [-0.43715420365333557, 0.21004770696163177, 0.359499454498291, -0.2502943277359009, 0.28666195273399353, 0.3959996700286865, -0.5821158289909363, -0.0655820220708847, -0.13461223244667053, 0.4082684814929962], [-0.43715354800224304, 0.21004581451416016, 0.359498530626297, -0.25029295682907104, 0.28666239976882935, 0.39599770307540894, -0.5821147561073303, -0.06558334082365036, -0.13461261987686157, 0.40826746821403503], [-0.43715474009513855, 0.21004773676395416, 0.35949862003326416, -0.2502952814102173, 0.28666266798973083, 0.39599934220314026, -0.5821144580841064, -0.06558337062597275, -0.13461264967918396, 0.4082658886909485], [-0.4371514320373535, 0.21004334092140198, 0.3594971299171448, -0.2502896189689636, 0.2866634130477905, 0.3959943652153015, -0.5821138024330139, -0.06558337062597275, -0.1346130520105362, 0.40826737880706787], [-0.4371514320373535, 0.21004080772399902, 0.3594962954521179, -0.250288188457489, 0.28666505217552185, 0.3959926962852478, -0.5821119546890259, -0.06558545678853989, -0.13461416959762573, 0.4082656800746918], [-0.43715253472328186, 0.21004310250282288, 0.35949623584747314, -0.2502906620502472, 0.28666576743125916, 0.3959942162036896, -0.5821114778518677, -0.06558560580015182, -0.13461440801620483, 0.40826424956321716], [-0.43715283274650574, 0.2100452035665512, 0.3594963550567627, -0.2502923905849457, 0.2866644561290741, 0.3959954082965851, -0.5821125507354736, -0.0655846893787384, -0.1346135288476944, 0.4082644283771515], [-0.43715181946754456, 0.21004366874694824, 0.35949623584747314, -0.25029054284095764, 0.2866639494895935, 0.39599400758743286, -0.5821127891540527, -0.06558431684970856, -0.13461335003376007, 0.4082651138305664], [-0.4371511936187744, 0.2100413292646408, 0.35949575901031494, -0.2502883970737457, 0.2866649329662323, 0.39599230885505676, -0.5821118950843811, -0.06558503210544586, -0.13461393117904663, 0.40826496481895447], [-0.43715333938598633, 0.21004436910152435, 0.3594962954521179, -0.25029224157333374, 0.2866649627685547, 0.3959953188896179, -0.5821119546890259, -0.06558527052402496, -0.13461381196975708, 0.40826356410980225], [-0.43715453147888184, 0.21004848182201385, 0.35949721932411194, -0.25029587745666504, 0.28666311502456665, 0.395998477935791, -0.5821137428283691, -0.06558356434106827, -0.13461261987686157, 0.4082639813423157], [-0.43715283274650574, 0.21004626154899597, 0.35949715971946716, -0.25029292702674866, 0.28666210174560547, 0.39599642157554626, -0.5821145176887512, -0.06558273732662201, -0.13461211323738098, 0.4082657992839813], [-0.43715155124664307, 0.2100418657064438, 0.35949650406837463, -0.2502889037132263, 0.2866637408733368, 0.39599326252937317, -0.5821129679679871, -0.06558411568403244, -0.13461323082447052, 0.4082659184932709], [-0.4371500611305237, 0.21003831923007965, 0.3594951927661896, -0.2502853572368622, 0.2866664528846741, 0.39598989486694336, -0.5821108222007751, -0.06558600068092346, -0.13461486995220184, 0.4082653820514679], [-0.43715089559555054, 0.21003949642181396, 0.35949477553367615, -0.2502870559692383, 0.28666749596595764, 0.3959905803203583, -0.582109808921814, -0.0655871331691742, -0.1346154808998108, 0.4082637131214142], [-0.4371529221534729, 0.21004465222358704, 0.3594955801963806, -0.2502923011779785, 0.2866659164428711, 0.3959946036338806, -0.582111120223999, -0.06558597087860107, -0.13461440801620483, 0.40826284885406494], [-0.4371541142463684, 0.21004848182201385, 0.3594968318939209, -0.2502957284450531, 0.2866630256175995, 0.3959978520870209, -0.58211350440979, -0.0655837133526802, -0.13461259007453918, 0.408263623714447], [-0.4371553063392639, 0.21005044877529144, 0.35949811339378357, -0.25029778480529785, 0.2866608500480652, 0.3960004448890686, -0.5821154117584229, -0.06558210402727127, -0.13461126387119293, 0.40826448798179626], [-0.43715840578079224, 0.21005535125732422, 0.35950013995170593, -0.25030335783958435, 0.2866586744785309, 0.3960059583187103, -0.5821176171302795, -0.06558044254779816, -0.13460983335971832, 0.4082645773887634], [-0.4371587038040161, 0.2100573182106018, 0.3595013916492462, -0.25030454993247986, 0.2866566479206085, 0.3960078954696655, -0.582119882106781, -0.06557833403348923, -0.13460855185985565, 0.40826669335365295], [-0.4371589422225952, 0.21005688607692719, 0.35950225591659546, -0.25030434131622314, 0.2866557836532593, 0.3960084915161133, -0.5821207165718079, -0.0655779242515564, -0.13460813462734222, 0.40826788544654846], [-0.4371611177921295, 0.21006010472774506, 0.3595035970211029, -0.250308096408844, 0.28665512800216675, 0.3960122764110565, -0.5821216106414795, -0.06557738780975342, -0.1346077024936676, 0.40826767683029175], [-0.4371577799320221, 0.21005593240261078, 0.3595028221607208, -0.25030240416526794, 0.286655455827713, 0.39600786566734314, -0.5821216702461243, -0.065576933324337, -0.13460801541805267, 0.4082704186439514], [-0.43715816736221313, 0.2100536823272705, 0.35950255393981934, -0.25030139088630676, 0.2866568863391876, 0.3960069715976715, -0.5821200609207153, -0.06557899713516235, -0.13460907340049744, 0.4082692265510559], [-0.4371611475944519, 0.21005938947200775, 0.3595035970211029, -0.2503075897693634, 0.2866566479206085, 0.3960120379924774, -0.5821205377578735, -0.06557852029800415, -0.13460876047611237, 0.40826764702796936], [-0.43716081976890564, 0.21006187796592712, 0.35950416326522827, -0.25030893087387085, 0.2866542935371399, 0.3960132598876953, -0.5821227431297302, -0.06557641923427582, -0.13460728526115417, 0.40826940536499023], [-0.4371607303619385, 0.21006092429161072, 0.35950472950935364, -0.25030821561813354, 0.2866531312465668, 0.39601320028305054, -0.5821234583854675, -0.0655759871006012, -0.1346067637205124, 0.4082701504230499], [-0.4371592104434967, 0.2100573182106018, 0.35950419306755066, -0.25030437111854553, 0.28665444254875183, 0.3960103988647461, -0.5821225047111511, -0.06557653099298477, -0.13460761308670044, 0.40827083587646484], [-0.43716225028038025, 0.21006104350090027, 0.35950496792793274, -0.2503093481063843, 0.2866545617580414, 0.3960144519805908, -0.5821225047111511, -0.06557720899581909, -0.13460758328437805, 0.4082689583301544], [-0.43716683983802795, 0.21007172763347626, 0.35950765013694763, -0.250320166349411, 0.2866508960723877, 0.3960237205028534, -0.5821260213851929, -0.06557418406009674, -0.13460512459278107, 0.4082685112953186], [-0.4371669590473175, 0.2100752592086792, 0.35950949788093567, -0.2503223121166229, 0.2866462171077728, 0.3960266709327698, -0.5821301937103271, -0.06557022035121918, -0.13460230827331543, 0.408271849155426], [-0.4371664524078369, 0.2100725769996643, 0.3595104515552521, -0.25031983852386475, 0.28664496541023254, 0.39602598547935486, -0.5821312665939331, -0.06556953489780426, -0.13460172712802887, 0.4082738161087036], [-0.4371698498725891, 0.210076242685318, 0.35951218008995056, -0.2503247559070587, 0.286644846200943, 0.396030992269516, -0.5821318626403809, -0.06556947529315948, -0.13460154831409454, 0.4082728624343872], [-0.43717339634895325, 0.2100846916437149, 0.35951459407806396, -0.2503330707550049, 0.28664183616638184, 0.39603856205940247, -0.5821351408958435, -0.06556673347949982, -0.13459953665733337, 0.4082735776901245], [-0.43717125058174133, 0.21008341014385223, 0.35951530933380127, -0.25033020973205566, 0.2866392135620117, 0.39603716135025024, -0.5821375250816345, -0.06556440889835358, -0.13459813594818115, 0.40827739238739014], [-0.4371658265590668, 0.21007102727890015, 0.3595132529735565, -0.2503173351287842, 0.2866424322128296, 0.3960271179676056, -0.5821346044540405, -0.06556689739227295, -0.13460050523281097, 0.408279687166214], [-0.4371640384197235, 0.21006323397159576, 0.35951077938079834, -0.25031083822250366, 0.28664878010749817, 0.39602094888687134, -0.582129180431366, -0.06557206064462662, -0.13460448384284973, 0.4082772135734558], [-0.4371604919433594, 0.2100578248500824, 0.35950756072998047, -0.2503047585487366, 0.2866538465023041, 0.3960139751434326, -0.5821248292922974, -0.06557547301054001, -0.13460761308670044, 0.4082758128643036], [-0.4371611475944519, 0.21005910634994507, 0.359506219625473, -0.2503068149089813, 0.2866553068161011, 0.39601388573646545, -0.5821227431297302, -0.06557770073413849, -0.13460852205753326, 0.40827253460884094], [-0.43716055154800415, 0.2100604623556137, 0.3595055043697357, -0.25030744075775146, 0.28665488958358765, 0.3960135281085968, -0.5821227431297302, -0.06557701528072357, -0.134608194231987, 0.40827178955078125], [-0.43715712428092957, 0.21005463600158691, 0.35950371623039246, -0.25030094385147095, 0.2866556644439697, 0.39600762724876404, -0.5821215510368347, -0.06557761132717133, -0.1346087008714676, 0.40827247500419617], [-0.437157541513443, 0.21005238592624664, 0.35950276255607605, -0.250299870967865, 0.2866578698158264, 0.3960062265396118, -0.582119345664978, -0.06557980179786682, -0.13460998237133026, 0.40827006101608276], [-0.4371597170829773, 0.21005691587924957, 0.35950300097465515, -0.2503047585487366, 0.2866578996181488, 0.3960096538066864, -0.5821195244789124, -0.06557950377464294, -0.13460977375507355, 0.4082682728767395], [-0.437153160572052, 0.2100481390953064, 0.3595004379749298, -0.2502936124801636, 0.2866589426994324, 0.3959999084472656, -0.5821184515953064, -0.06557957082986832, -0.13461056351661682, 0.4082714915275574], [-0.4371509253978729, 0.21003907918930054, 0.35949796438217163, -0.2502860724925995, 0.2866635322570801, 0.39599281549453735, -0.5821136832237244, -0.06558427214622498, -0.1346135288476944, 0.40826910734176636], [-0.4371602535247803, 0.21005423367023468, 0.35950034856796265, -0.25030404329299927, 0.28666311502456665, 0.39600685238838196, -0.5821142792701721, -0.06558441370725632, -0.1346127688884735, 0.40826255083084106], [-0.4371596574783325, 0.2100624144077301, 0.35950180888175964, -0.2503088712692261, 0.2866568863391876, 0.39601096510887146, -0.5821201801300049, -0.06557802110910416, -0.13460873067378998, 0.40826666355133057], [-0.4371592700481415, 0.21006006002426147, 0.3595030903816223, -0.25030696392059326, 0.2866530120372772, 0.39601069688796997, -0.5821226835250854, -0.06557647138834, -0.13460664451122284, 0.40826892852783203], [-0.4371574819087982, 0.21005386114120483, 0.35950276255607605, -0.250300794839859, 0.286655455827713, 0.3960067629814148, -0.5821210145950317, -0.06557727605104446, -0.1346081644296646, 0.40826988220214844], [-0.4371577799320221, 0.21005214750766754, 0.35950198769569397, -0.250299870967865, 0.2866581082344055, 0.3960057497024536, -0.5821191668510437, -0.06557958573102951, -0.13460968434810638, 0.40826886892318726], [-0.43716150522232056, 0.2100597620010376, 0.3595033884048462, -0.25030824542045593, 0.2866571247577667, 0.39601218700408936, -0.5821201801300049, -0.06557902693748474, -0.13460898399353027, 0.4082670211791992], [-0.4371642470359802, 0.21006837487220764, 0.35950565338134766, -0.25031614303588867, 0.28665241599082947, 0.39601922035217285, -0.5821242928504944, -0.06557532399892807, -0.1346060335636139, 0.4082680642604828], [-0.43716374039649963, 0.2100687474012375, 0.35950708389282227, -0.25031569600105286, 0.2866488993167877, 0.3960201144218445, -0.5821272730827332, -0.06557250767946243, -0.13460403680801392, 0.4082709550857544], [-0.4371625483036041, 0.21006421744823456, 0.3595072031021118, -0.25031131505966187, 0.2866494953632355, 0.39601758122444153, -0.5821269154548645, -0.06557288765907288, -0.13460451364517212, 0.408272385597229], [-0.4371645748615265, 0.21006561815738678, 0.3595077693462372, -0.25031378865242004, 0.28665077686309814, 0.39601996541023254, -0.582126259803772, -0.06557396054267883, -0.13460521399974823, 0.40827125310897827], [-0.4371657371520996, 0.2100696563720703, 0.35950860381126404, -0.25031742453575134, 0.2866497337818146, 0.3960229456424713, -0.5821275115013123, -0.0655728131532669, -0.13460451364517212, 0.4082716405391693], [-0.4371662139892578, 0.21007174253463745, 0.35950952768325806, -0.2503192126750946, 0.28664761781692505, 0.39602479338645935, -0.5821292996406555, -0.06557149440050125, -0.1346033364534378, 0.4082726836204529], [-0.4371654987335205, 0.21007028222084045, 0.3595098555088043, -0.2503175139427185, 0.28664714097976685, 0.3960239887237549, -0.582129716873169, -0.06557094305753708, -0.13460315763950348, 0.4082737863063812], [-0.43716317415237427, 0.21006500720977783, 0.35950878262519836, -0.250311940908432, 0.2866489887237549, 0.3960195481777191, -0.5821282267570496, -0.06557217240333557, -0.1346043348312378, 0.40827468037605286], [-0.4371626675128937, 0.21006232500076294, 0.3595077693462372, -0.25030985474586487, 0.28665152192115784, 0.3960173726081848, -0.5821259617805481, -0.06557437777519226, -0.13460597395896912, 0.4082734286785126], [-0.437165230512619, 0.2100672572851181, 0.35950830578804016, -0.25031542778015137, 0.2866514325141907, 0.39602136611938477, -0.5821260809898376, -0.06557449698448181, -0.1346057951450348, 0.4082714915275574], [-0.43716102838516235, 0.21006308495998383, 0.3595069348812103, -0.2503092288970947, 0.28665128350257874, 0.396016001701355, -0.5821261405944824, -0.06557364761829376, -0.1346057951450348, 0.4082740843296051], [-0.43715789914131165, 0.21005432307720184, 0.3595048487186432, -0.2503010332584381, 0.2866542339324951, 0.39600881934165955, -0.5821229219436646, -0.06557675451040268, -0.13460785150527954, 0.4082735776901245], [-0.4371536672115326, 0.21004480123519897, 0.3595014214515686, -0.2502913773059845, 0.28666022419929504, 0.3959996700286865, -0.5821177363395691, -0.06558071076869965, -0.1346115618944168, 0.4082723557949066], [-0.43715062737464905, 0.21003815531730652, 0.35949790477752686, -0.2502850294113159, 0.28666549921035767, 0.3959922790527344, -0.5821127891540527, -0.06558520346879959, -0.13461478054523468, 0.4082697033882141], [-0.4371506869792938, 0.21003857254981995, 0.3594960868358612, -0.25028595328330994, 0.286668062210083, 0.3959910571575165, -0.5821100473403931, -0.06558750569820404, -0.13461624085903168, 0.40826618671417236], [-0.4371492862701416, 0.21003840863704681, 0.3594946265220642, -0.2502850890159607, 0.28666818141937256, 0.3959890604019165, -0.5821093916893005, -0.06558751314878464, -0.13461624085903168, 0.40826523303985596], [-0.4371494650840759, 0.21003834903240204, 0.3594941198825836, -0.25028538703918457, 0.2866678535938263, 0.39598870277404785, -0.5821090340614319, -0.06558771431446075, -0.134615957736969, 0.4082638919353485], [-0.4371485412120819, 0.21003670990467072, 0.35949331521987915, -0.25028347969055176, 0.2866683602333069, 0.3959868848323822, -0.5821085572242737, -0.06558771431446075, -0.13461612164974213, 0.4082636535167694], [-0.4371481239795685, 0.21003511548042297, 0.35949262976646423, -0.2502821683883667, 0.28666922450065613, 0.39598536491394043, -0.582107663154602, -0.0655885562300682, -0.13461656868457794, 0.4082629978656769], [-0.43715283274650574, 0.2100430279970169, 0.35949432849884033, -0.2502914071083069, 0.2866676449775696, 0.3959929049015045, -0.5821090340614319, -0.06558774411678314, -0.13461539149284363, 0.4082605242729187], [-0.437154084444046, 0.210049107670784, 0.35949602723121643, -0.25029629468917847, 0.2866637110710144, 0.395997554063797, -0.5821128487586975, -0.0655839666724205, -0.1346128284931183, 0.40826237201690674], [-0.43715161085128784, 0.2100447565317154, 0.359496146440506, -0.2502911686897278, 0.28666216135025024, 0.3959942162036896, -0.582114040851593, -0.06558286398649216, -0.1346120536327362, 0.40826529264450073], [-0.4371485114097595, 0.21003583073616028, 0.35949453711509705, -0.2502824664115906, 0.28666576743125916, 0.3959873914718628, -0.5821110010147095, -0.0655854344367981, -0.13461445271968842, 0.4082658290863037], [-0.43714672327041626, 0.21003033220767975, 0.35949239134788513, -0.2502775490283966, 0.2866705656051636, 0.39598241448402405, -0.5821070075035095, -0.06558915227651596, -0.1346173882484436, 0.4082641899585724], [-0.43715131282806396, 0.2100387066602707, 0.3594931662082672, -0.2502872943878174, 0.28667059540748596, 0.39598938822746277, -0.5821069478988647, -0.06558985263109207, -0.13461720943450928, 0.4082604646682739], [-0.4371510446071625, 0.21004359424114227, 0.3594939708709717, -0.2502903640270233, 0.28666701912879944, 0.3959917426109314, -0.5821099877357483, -0.06558632850646973, -0.13461501896381378, 0.4082622528076172], [-0.4371514320373535, 0.2100435346364975, 0.3594948947429657, -0.25029051303863525, 0.28666436672210693, 0.39599257707595825, -0.5821117162704468, -0.06558520346879959, -0.134613499045372, 0.4082631468772888], [-0.43715551495552063, 0.2100490927696228, 0.3594970703125, -0.25029727816581726, 0.2866627871990204, 0.3959992229938507, -0.5821133852005005, -0.06558381766080856, -0.13461235165596008, 0.40826213359832764], [-0.4371598958969116, 0.2100587785243988, 0.35950008034706116, -0.25030699372291565, 0.28665855526924133, 0.39600831270217896, -0.5821177363395691, -0.06558017432689667, -0.13460949063301086, 0.4082629978656769], [-0.4371631443500519, 0.21006663143634796, 0.3595035672187805, -0.25031450390815735, 0.28665289282798767, 0.3960161507129669, -0.5821229815483093, -0.06557586044073105, -0.1346060335636139, 0.40826550126075745], [-0.4371647238731384, 0.21006973087787628, 0.3595063388347626, -0.2503173053264618, 0.28664901852607727, 0.3960205316543579, -0.582126796245575, -0.06557265669107437, -0.13460375368595123, 0.4082685112953186], [-0.4371568560600281, 0.21005523204803467, 0.35950422286987305, -0.25030073523521423, 0.2866518199443817, 0.39600804448127747, -0.5821248292922974, -0.06557366997003555, -0.13460588455200195, 0.4082738757133484], [-0.43715253472328186, 0.2100406289100647, 0.35950055718421936, -0.2502876818180084, 0.2866601347923279, 0.3959965407848358, -0.5821174383163452, -0.06558103114366531, -0.13461129367351532, 0.4082721173763275], [-0.43715018033981323, 0.2100352644920349, 0.35949695110321045, -0.2502826750278473, 0.28666776418685913, 0.39599013328552246, -0.5821110010147095, -0.06558647751808167, -0.134615957736969, 0.408268541097641], [-0.43714639544487, 0.21003106236457825, 0.3594933748245239, -0.250277578830719, 0.28667140007019043, 0.39598318934440613, -0.5821072459220886, -0.06558957695960999, -0.13461826741695404, 0.40826675295829773], [-0.4371456801891327, 0.21002992987632751, 0.3594914674758911, -0.25027695298194885, 0.2866729199886322, 0.3959808349609375, -0.5821048021316528, -0.06559162586927414, -0.13461926579475403, 0.40826359391212463], [-0.43714800477027893, 0.2100348174571991, 0.3594915270805359, -0.25028225779533386, 0.28667208552360535, 0.39598438143730164, -0.5821051001548767, -0.06559103727340698, -0.13461844623088837, 0.40826088190078735], [-0.43714866042137146, 0.21003809571266174, 0.3594919741153717, -0.25028499960899353, 0.28666952252388, 0.39598649740219116, -0.5821071267127991, -0.0655888244509697, -0.1346166878938675, 0.4082612097263336], [-0.4371468722820282, 0.21003471314907074, 0.35949164628982544, -0.2502811551094055, 0.28666889667510986, 0.39598366618156433, -0.5821074843406677, -0.06558822840452194, -0.13461630046367645, 0.4082625210285187], [-0.43714410066604614, 0.21002748608589172, 0.35948994755744934, -0.25027400255203247, 0.28667178750038147, 0.3959776759147644, -0.5821049809455872, -0.0655902847647667, -0.1346181482076645, 0.408262699842453], [-0.43714776635169983, 0.21003158390522003, 0.35949036478996277, -0.25027990341186523, 0.2866731882095337, 0.39598196744918823, -0.5821038484573364, -0.06559200584888458, -0.1346188187599182, 0.40825924277305603], [-0.4371469020843506, 0.21003425121307373, 0.3594903349876404, -0.25028106570243835, 0.2866719365119934, 0.3959825038909912, -0.5821052193641663, -0.06559006124734879, -0.13461796939373016, 0.4082604646682739], [-0.43714597821235657, 0.2100323587656021, 0.35949015617370605, -0.25027915835380554, 0.28667083382606506, 0.3959810137748718, -0.5821056365966797, -0.06559000164270401, -0.134617418050766, 0.40826115012168884], [-0.4371436536312103, 0.21002697944641113, 0.3594890236854553, -0.25027358531951904, 0.2866729199886322, 0.3959764838218689, -0.5821037888526917, -0.06559115648269653, -0.13461878895759583, 0.4082614481449127], [-0.4371448755264282, 0.210027277469635, 0.3594886064529419, -0.2502748966217041, 0.2866746187210083, 0.39597710967063904, -0.582102358341217, -0.06559287011623383, -0.13461966812610626, 0.40825942158699036], [-0.4371458888053894, 0.21003076434135437, 0.3594888746738434, -0.25027814507484436, 0.2866740822792053, 0.3959793746471405, -0.5821030139923096, -0.06559211015701294, -0.13461923599243164, 0.40825891494750977], [-0.43714410066604614, 0.21002906560897827, 0.35948845744132996, -0.2502756118774414, 0.28667324781417847, 0.3959771692752838, -0.5821035504341125, -0.06559146195650101, -0.1346188187599182, 0.40826019644737244], [-0.43714475631713867, 0.21002836525440216, 0.35948848724365234, -0.2502756416797638, 0.2866736054420471, 0.39597731828689575, -0.5821029543876648, -0.06559218466281891, -0.1346191167831421, 0.4082593321800232], [-0.43714067339897156, 0.21002162992954254, 0.35948657989501953, -0.25026774406433105, 0.2866760492324829, 0.39597052335739136, -0.5821009874343872, -0.0655931755900383, -0.13462066650390625, 0.4082607328891754], [-0.43713945150375366, 0.21001681685447693, 0.35948479175567627, -0.25026383996009827, 0.2866792678833008, 0.39596641063690186, -0.5820977687835693, -0.06559652090072632, -0.1346227079629898, 0.4082588851451874], [-0.437142550945282, 0.21002230048179626, 0.35948508977890015, -0.250270277261734, 0.2866799235343933, 0.3959708511829376, -0.5820972323417664, -0.06559702754020691, -0.13462288677692413, 0.40825584530830383], [-0.437141090631485, 0.21002361178398132, 0.35948482155799866, -0.2502700388431549, 0.28667810559272766, 0.39597025513648987, -0.5820987820625305, -0.06559514254331589, -0.13462170958518982, 0.4082573354244232], [-0.4371426999568939, 0.21002505719661713, 0.3594856560230255, -0.25027239322662354, 0.2866765260696411, 0.39597246050834656, -0.5820996761322021, -0.06559480726718903, -0.1346208155155182, 0.4082565903663635], [-0.43714284896850586, 0.21002565324306488, 0.35948610305786133, -0.25027263164520264, 0.2866760790348053, 0.39597317576408386, -0.5821003317832947, -0.06559375673532486, -0.13462045788764954, 0.4082571864128113], [-0.43714436888694763, 0.21002788841724396, 0.3594869077205658, -0.2502753734588623, 0.28667503595352173, 0.39597564935684204, -0.5821013450622559, -0.06559328734874725, -0.13461972773075104, 0.4082570970058441], [-0.4371432662010193, 0.2100268304347992, 0.3594869375228882, -0.25027361512184143, 0.28667476773262024, 0.3959745764732361, -0.5821018218994141, -0.06559255719184875, -0.1346196085214615, 0.40825843811035156], [-0.43714624643325806, 0.2100307047367096, 0.35948824882507324, -0.25027862191200256, 0.28667372465133667, 0.39597901701927185, -0.5821026563644409, -0.06559247523546219, -0.13461890816688538, 0.40825724601745605], [-0.4371511936187744, 0.21004123985767365, 0.3594912588596344, -0.2502894699573517, 0.28666990995407104, 0.3959887623786926, -0.582106351852417, -0.06558924913406372, -0.13461638987064362, 0.40825700759887695], [-0.43715232610702515, 0.21004639565944672, 0.3594936430454254, -0.2502935230731964, 0.28666484355926514, 0.3959934711456299, -0.5821110606193542, -0.06558504700660706, -0.1346132904291153, 0.40826019644737244], [-0.4371533989906311, 0.21004702150821686, 0.3594956696033478, -0.25029438734054565, 0.286662220954895, 0.3959958851337433, -0.5821134448051453, -0.06558326631784439, -0.1346118301153183, 0.4082622528076172], [-0.4371568560600281, 0.2100517451763153, 0.3594980835914612, -0.25029999017715454, 0.28666070103645325, 0.3960019052028656, -0.5821154117584229, -0.06558194756507874, -0.13461080193519592, 0.40826255083084106], [-0.43715620040893555, 0.21005243062973022, 0.3594990074634552, -0.2502995431423187, 0.28665927052497864, 0.39600253105163574, -0.5821173191070557, -0.0655800998210907, -0.13460998237133026, 0.4082654118537903], [-0.43715718388557434, 0.21005280315876007, 0.3595000207424164, -0.2503005266189575, 0.28665849566459656, 0.3960040211677551, -0.5821179747581482, -0.06558015942573547, -0.134609654545784, 0.4082660377025604], [-0.4371589422225952, 0.21005606651306152, 0.35950136184692383, -0.2503039538860321, 0.2866577208042145, 0.3960075080394745, -0.5821190476417542, -0.06557932496070862, -0.13460922241210938, 0.40826624631881714], [-0.43715861439704895, 0.21005681157112122, 0.3595019578933716, -0.25030407309532166, 0.2866564989089966, 0.39600810408592224, -0.5821202993392944, -0.06557821482419968, -0.13460858166217804, 0.4082678258419037], [-0.4371616840362549, 0.21006134152412415, 0.35950377583503723, -0.25030946731567383, 0.2866547405719757, 0.39601320028305054, -0.5821218490600586, -0.06557740271091461, -0.1346074938774109, 0.4082673192024231], [-0.43716785311698914, 0.21007364988327026, 0.3595075309276581, -0.25032249093055725, 0.28665006160736084, 0.3960251212120056, -0.5821263790130615, -0.06557374447584152, -0.13460442423820496, 0.4082670211791992], [-0.4371700584888458, 0.21008118987083435, 0.3595108687877655, -0.25032883882522583, 0.2866438627243042, 0.3960321545600891, -0.5821322202682495, -0.06556840986013412, -0.13460059463977814, 0.4082707166671753], [-0.43716850876808167, 0.21007788181304932, 0.35951220989227295, -0.2503248155117035, 0.2866414785385132, 0.39603081345558167, -0.582134485244751, -0.06556655466556549, -0.13459941744804382, 0.40827476978302], [-0.4371661841869354, 0.21007020771503448, 0.3595116138458252, -0.25031742453575134, 0.28664442896842957, 0.39602574706077576, -0.5821323394775391, -0.06556858122348785, -0.1346014142036438, 0.40827620029449463], [-0.4371664226055145, 0.2100684493780136, 0.3595108687877655, -0.2503165006637573, 0.28664785623550415, 0.3960246443748474, -0.5821298360824585, -0.06557129323482513, -0.13460354506969452, 0.4082748591899872], [-0.4371664226055145, 0.21007025241851807, 0.35951051115989685, -0.25031793117523193, 0.28664857149124146, 0.39602506160736084, -0.5821292996406555, -0.06557179242372513, -0.13460403680801392, 0.4082743227481842], [-0.43716344237327576, 0.21006657183170319, 0.35950925946235657, -0.2503132224082947, 0.2866489887237549, 0.39602071046829224, -0.5821285843849182, -0.06557214260101318, -0.13460448384284973, 0.40827539563179016], [-0.43716374039649963, 0.21006491780281067, 0.3595086932182312, -0.2503125071525574, 0.28665030002593994, 0.3960198163986206, -0.582127034664154, -0.06557376682758331, -0.13460533320903778, 0.40827375650405884], [-0.43716347217559814, 0.21006503701210022, 0.35950812697410583, -0.2503124177455902, 0.28665122389793396, 0.39601930975914, -0.5821263194084167, -0.06557397544384003, -0.1346057951450348, 0.4082731604576111], [-0.43716558814048767, 0.21006906032562256, 0.35950878262519836, -0.25031694769859314, 0.2866499423980713, 0.396022766828537, -0.5821272134780884, -0.06557352095842361, -0.13460488617420197, 0.40827199816703796], [-0.4371628761291504, 0.21006615459918976, 0.3595081865787506, -0.2503127157688141, 0.28664958477020264, 0.3960193395614624, -0.582127571105957, -0.06557250767946243, -0.13460475206375122, 0.40827396512031555], [-0.4371563196182251, 0.21005234122276306, 0.3595047891139984, -0.2502982020378113, 0.2866538166999817, 0.3960069715976715, -0.5821235179901123, -0.06557586789131165, -0.13460761308670044, 0.40827542543411255], [-0.43715527653694153, 0.2100456953048706, 0.35950204730033875, -0.2502932846546173, 0.2866602838039398, 0.3960014879703522, -0.5821176767349243, -0.06558136641979218, -0.1346115916967392, 0.408271461725235], [-0.43715569376945496, 0.21004796028137207, 0.3595004379749298, -0.25029557943344116, 0.28666290640830994, 0.39600151777267456, -0.5821154117584229, -0.06558309495449066, -0.13461293280124664, 0.4082685112953186], [-0.4371579587459564, 0.21005472540855408, 0.3595009446144104, -0.25030240416526794, 0.286660373210907, 0.3960060477256775, -0.5821170210838318, -0.06558181345462799, -0.13461129367351532, 0.4082668423652649], [-0.4371604025363922, 0.21006116271018982, 0.35950279235839844, -0.2503086030483246, 0.28665614128112793, 0.3960115909576416, -0.582120418548584, -0.06557852774858475, -0.13460861146450043, 0.40826699137687683], [-0.43716105818748474, 0.21006275713443756, 0.35950416326522827, -0.25030988454818726, 0.286653071641922, 0.3960137367248535, -0.5821231007575989, -0.06557594239711761, -0.13460667431354523, 0.4082687497138977], [-0.43716225028038025, 0.21006327867507935, 0.3595053553581238, -0.25031089782714844, 0.2866520583629608, 0.39601564407348633, -0.5821242928504944, -0.06557516008615494, -0.13460591435432434, 0.4082695245742798], [-0.4371620714664459, 0.21006278693675995, 0.3595057725906372, -0.25031015276908875, 0.286652147769928, 0.3960156738758087, -0.582124650478363, -0.0655747503042221, -0.1346060037612915, 0.40827059745788574], [-0.43716517090797424, 0.2100675106048584, 0.359507292509079, -0.2503158152103424, 0.2866509258747101, 0.39602068066596985, -0.5821259021759033, -0.06557431071996689, -0.13460524380207062, 0.40826988220214844], [-0.4371618926525116, 0.21006426215171814, 0.3595068156719208, -0.2503107786178589, 0.286650687456131, 0.396016925573349, -0.5821264982223511, -0.06557311117649078, -0.13460521399974823, 0.408272922039032], [-0.4371606409549713, 0.2100592851638794, 0.3595059812068939, -0.2503065764904022, 0.28665241599082947, 0.39601343870162964, -0.5821245908737183, -0.06557539850473404, -0.1346064656972885, 0.40827256441116333], [-0.4371594190597534, 0.210056334733963, 0.359504759311676, -0.25030362606048584, 0.2866554260253906, 0.3960105776786804, -0.5821222066879272, -0.06557712703943253, -0.13460828363895416, 0.4082717001438141], [-0.43715935945510864, 0.21005640923976898, 0.35950392484664917, -0.25030386447906494, 0.2866564989089966, 0.3960099220275879, -0.5821211338043213, -0.06557835638523102, -0.1346089243888855, 0.40827053785324097], [-0.43715888261795044, 0.2100566029548645, 0.35950347781181335, -0.25030383467674255, 0.28665661811828613, 0.39600932598114014, -0.5821207761764526, -0.0655783861875534, -0.13460904359817505, 0.40827009081840515], [-0.4371567368507385, 0.21005307137966156, 0.35950231552124023, -0.25029975175857544, 0.2866573929786682, 0.39600563049316406, -0.582119882106781, -0.06557896733283997, -0.13460955023765564, 0.4082704484462738], [-0.43715861439704895, 0.21005463600158691, 0.3595024645328522, -0.2503025233745575, 0.2866579294204712, 0.39600759744644165, -0.5821191668510437, -0.0655798465013504, -0.13460983335971832, 0.40826836228370667], [-0.43716222047805786, 0.21006254851818085, 0.3595041334629059, -0.25031065940856934, 0.28665560483932495, 0.39601439237594604, -0.5821213722229004, -0.06557787954807281, -0.13460810482501984, 0.4082673490047455]]], 'fractal_dimension': 4.25} 2025-07-29 01:19:06,392 - DEBUG - Sending response: { "message": "File uploaded successfully", "filename": "S001R01.edf", "shape": [ 64, 9760 ], "sampling_rate": 160.0, "channel_names": [ "Fc5.", "Fc3.", "Fc1.", "Fcz.", "Fc2.", "Fc4.", "Fc6.", "C5..", "C3..", "C1..", "Cz..", "C2..", "C4..", "C6..", "Cp5.", "Cp3.", "Cp1.", "Cpz.", "Cp2.", "Cp4.", "Cp6.", "Fp1.", "Fpz.", "Fp2.", "Af7.", "Af3.", "Afz.", "Af4.", "Af8.", "F7..", "F5..", "F3..", "F1..", "Fz..", "F2..", "F4..", "F6..", "F8..", "Ft7.", "Ft8.", "T7..", "T8..", "T9..", "T10.", "Tp7.", "Tp8.", "P7..", "P5..", "P3..", "P1..", "Pz..", "P2..", "P4..", "P6..", "P8..", "Po7.", "Po3.", "Poz.", "Po4.", "Po8.", "O1..", "Oz..", "O2..", "Iz.." ], "metrics": [ { "mean_amplitude": -0.7604508196721314, "mu_psd": 32.96217130036497, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.0400614754098365, "mu_psd": 42.208361534205906, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.0797131147540973, "mu_psd": 39.75499892768321, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.8452868852459003, "mu_psd": 38.731687895830035, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.4572745901639337, "mu_psd": 36.45671846636971, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 3.0593237704918033, "mu_psd": 33.12253401258297, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.7516393442622946, "mu_psd": 20.383899986541035, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.8946721311475412, "mu_psd": 36.13147005560294, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.358299180327869, "mu_psd": 42.707443489824996, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.18688524590164052, "mu_psd": 35.83879768589472, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.3882172131147534, "mu_psd": 32.816917407410266, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 2.692213114754098, "mu_psd": 31.95003385558746, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.224282786885246, "mu_psd": 28.29165483101699, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.628790983606558, "mu_psd": 17.01563826863389, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.463422131147541, "mu_psd": 36.32390309607568, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.16557377049180302, "mu_psd": 38.3608098936832, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.777049180327868, "mu_psd": 35.58889841907527, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6493852459016396, "mu_psd": 32.76094623423135, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.11547131147541033, "mu_psd": 30.293224827502296, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.5043032786885251, "mu_psd": 29.00179204029715, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.3472336065573767, "mu_psd": 21.313346303950205, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -8.763217213114755, "mu_psd": 30.889085201415394, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -7.782786885245901, "mu_psd": 27.436530092968738, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -8.68954918032787, "mu_psd": 26.901803396603853, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -10.696823770491802, "mu_psd": 31.79732985272577, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -9.142418032786885, "mu_psd": 30.979407517628683, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.964241803278689, "mu_psd": 33.534322865086395, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -4.732991803278689, "mu_psd": 28.50425245527458, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -6.505122950819672, "mu_psd": 23.90336767313496, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.3546106557377042, "mu_psd": 27.836928662869006, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -5.617827868852459, "mu_psd": 35.33012840136983, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.6713114754098355, "mu_psd": 32.67831622400885, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.14334016393442614, "mu_psd": 38.17433457556781, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8379098360655738, "mu_psd": 38.28653350595802, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.4547131147540994, "mu_psd": 35.04637279580251, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8713114754098362, "mu_psd": 31.850613664878395, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.163422131147541, "mu_psd": 25.829493870582244, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.7753073770491805, "mu_psd": 17.6736917924352, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.3829918032786885, "mu_psd": 28.17966031322613, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8619877049180324, "mu_psd": 11.291750159105318, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.9428278688524583, "mu_psd": 27.626524911435336, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.750409836065573, "mu_psd": 9.30286324704405, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.7112704918032788, "mu_psd": 26.482776617605577, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.09641393442622959, "mu_psd": 2.533695442731044, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.14477459016393418, "mu_psd": 30.068746868094838, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6962090163934423, "mu_psd": 11.550468816632018, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.8612704918032791, "mu_psd": 37.79443489890606, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.0809426229508203, "mu_psd": 40.656749513463446, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.3059426229508198, "mu_psd": 41.330996096642515, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.5913934426229513, "mu_psd": 41.42380498373986, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.18893442622950787, "mu_psd": 38.186882884316766, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.7969262295081971, "mu_psd": 37.650624175942006, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.1698770491803276, "mu_psd": 33.958598201727426, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.8021516393442623, "mu_psd": 27.053105215942246, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.02530737704918, "mu_psd": 19.503264664200966, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 0.7867827868852455, "mu_psd": 47.11752538431089, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -2.0236680327868863, "mu_psd": 48.43728070052847, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.284118852459016, "mu_psd": 46.34457088667734, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.0335040983606556, "mu_psd": 41.35467641899583, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": 1.2284836065573768, "mu_psd": 39.659832169131796, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.6304303278688523, "mu_psd": 55.50730913514963, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -1.154713114754098, "mu_psd": 49.149252934165, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.3248975409836069, "mu_psd": 50.32309919576436, "erd_amplitude": 0.0, "event_latency": 0.0 }, { "mean_amplitude": -0.56875, "mu_psd": 44.79530326491978, "erd_amplitude": 0.0, "event_latency": 0.0 } ] } 2025-07-29 01:19:06,394 - INFO - 127.0.0.1 - - [29/Jul/2025 01:19:06] "POST /upload HTTP/1.1" 200 - 2025-07-29 18:53:07,916 - INFO - 192.168.3.155 - - [29/Jul/2025 18:53:07] "[33mGET / HTTP/1.1[0m" 404 - 2025-07-29 18:53:18,583 - INFO - 192.168.3.155 - - [29/Jul/2025 18:53:18] "[33mGET / HTTP/1.1[0m" 404 - 2025-07-29 18:53:18,588 - INFO - 192.168.3.155 - - [29/Jul/2025 18:53:18] "[33mGET /loginMsg.js HTTP/1.1[0m" 404 - 2025-07-29 18:53:18,593 - INFO - 192.168.3.155 - - [29/Jul/2025 18:53:18] "[33mGET /cgi/get.cgi?cmd=home_login HTTP/1.1[0m" 404 - 2025-07-29 18:53:21,240 - INFO - 192.168.3.155 - - [29/Jul/2025 18:53:21] "[33mGET /rootDesc.xml HTTP/1.1[0m" 404 - { "name": "hfnc_frontend", "version": "0.1.0", "private": true, "dependencies": { "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "^6.4.0", "react-plotly.js": "^2.6.0", "plotly.js": "^2.27.0", "react-scripts": "5.0.1" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } } { "name": "hfnc_frontend", "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hfnc_frontend", "version": "0.1.0", "dependencies": { "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^6.6.4", "@testing-library/react": "^16.3.0", "@testing-library/user-event": "^13.5.0", "plotly.js": "^3.0.3", "react": "^19.1.0", "react-dom": "^19.1.0", "react-plotly.js": "^2.6.0", "react-router-dom": "^7.7.1", "react-scripts": "5.0.1", "web-vitals": "^2.1.4" } }, "node_modules/@adobe/css-tools": { "version": "4.4.3", "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.3.tgz", "integrity": "sha512-VQKMkwriZbaOgVCby1UDY/LDk5fIjhQicCvVPFqfe+69fWaPWydbWJ3wRt59/YzIwda1I81loas3oCoHxnqvdA==", "license": "MIT" }, "node_modules/@alloc/quick-lru": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@ampproject/remapping": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "license": "Apache-2.0", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@babel/code-frame": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.27.1", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz", "integrity": "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.0.tgz", "integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==", "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.0", "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-module-transforms": "^7.27.3", "@babel/helpers": "^7.27.6", "@babel/parser": "^7.28.0", "@babel/template": "^7.27.2", "@babel/traverse": "^7.28.0", "@babel/types": "^7.28.0", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/babel" } }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/eslint-parser": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.28.0.tgz", "integrity": "sha512-N4ntErOlKvcbTt01rr5wj3y55xnIdx1ymrfIr8C2WnM1Y9glFgWaGDEULJIazOX3XM9NRzhfJ6zZnQ1sBNWU+w==", "license": "MIT", "dependencies": { "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", "semver": "^6.3.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || >=14.0.0" }, "peerDependencies": { "@babel/core": "^7.11.0", "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" } }, "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "license": "Apache-2.0", "engines": { "node": ">=10" } }, "node_modules/@babel/eslint-parser/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/generator": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz", "integrity": "sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==", "license": "MIT", "dependencies": { "@babel/parser": "^7.28.0", "@babel/types": "^7.28.0", "@jridgewell/gen-mapping": "^0.3.12", "@jridgewell/trace-mapping": "^0.3.28", "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-annotate-as-pure": { "version": "7.27.3", "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", "license": "MIT", "dependencies": { "@babel/types": "^7.27.3" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { "version": "7.27.2", "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", "license": "MIT", "dependencies": { "@babel/compat-data": "^7.27.2", "@babel/helper-validator-option": "^7.27.1", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-class-features-plugin": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.1.tgz", "integrity": "sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==", "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-member-expression-to-functions": "^7.27.1", "@babel/helper-optimise-call-expression": "^7.27.1", "@babel/helper-replace-supers": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", "@babel/traverse": "^7.27.1", "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-regexp-features-plugin": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.27.1.tgz", "integrity": "sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==", "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-define-polyfill-provider": { "version": "0.6.5", "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz", "integrity": "sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==", "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-plugin-utils": "^7.27.1", "debug": "^4.4.1", "lodash.debounce": "^4.0.8", "resolve": "^1.22.10" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/helper-globals": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz", "integrity": "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==", "license": "MIT", "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", "license": "MIT", "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { "version": "7.27.3", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz", "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==", "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1", "@babel/traverse": "^7.27.3" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-optimise-call-expression": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", "license": "MIT", "dependencies": { "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-wrap-function": "^7.27.1", "@babel/traverse": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-replace-supers": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", "license": "MIT", "dependencies": { "@babel/helper-member-expression-to-functions": "^7.27.1", "@babel/helper-optimise-call-expression": "^7.27.1", "@babel/traverse": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", "license": "MIT", "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.27.1.tgz", "integrity": "sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==", "license": "MIT", "dependencies": { "@babel/template": "^7.27.1", "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { "version": "7.28.2", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.2.tgz", "integrity": "sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==", "license": "MIT", "dependencies": { "@babel/template": "^7.27.2", "@babel/types": "^7.28.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz", "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==", "license": "MIT", "dependencies": { "@babel/types": "^7.28.0" }, "bin": { "parser": "bin/babel-parser.js" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.27.1.tgz", "integrity": "sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/traverse": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz", "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", "@babel/plugin-transform-optional-chaining": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.13.0" } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.27.1.tgz", "integrity": "sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/traverse": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-proposal-class-properties": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-proposal-decorators": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.28.0.tgz", "integrity": "sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==", "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/plugin-syntax-decorators": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-proposal-numeric-separator": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-proposal-optional-chaining": { "version": "7.21.0", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-proposal-private-methods": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-proposal-private-property-in-object": { "version": "7.21.0-placeholder-for-preset-env.2", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "license": "MIT", "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-class-static-block": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-decorators": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.27.1.tgz", "integrity": "sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-flow": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.27.1.tgz", "integrity": "sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-import-assertions": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz", "integrity": "sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-import-attributes": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-jsx": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz", "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-typescript": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz", "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-unicode-sets-regex": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-transform-arrow-functions": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-async-generator-functions": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz", "integrity": "sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-remap-async-to-generator": "^7.27.1", "@babel/traverse": "^7.28.0" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-async-to-generator": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz", "integrity": "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==", "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-remap-async-to-generator": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-block-scoping": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.0.tgz", "integrity": "sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-class-properties": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz", "integrity": "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==", "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-class-static-block": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.27.1.tgz", "integrity": "sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==", "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.12.0" } }, "node_modules/@babel/plugin-transform-classes": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.0.tgz", "integrity": "sha512-IjM1IoJNw72AZFlj33Cu8X0q2XK/6AaVC3jQu+cgQ5lThWD5ajnuUAml80dqRmOhmPkTH8uAwnpMu9Rvj0LTRA==", "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.3", "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-globals": "^7.28.0", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-replace-supers": "^7.27.1", "@babel/traverse": "^7.28.0" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-computed-properties": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz", "integrity": "sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/template": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-destructuring": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.0.tgz", "integrity": "sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/traverse": "^7.28.0" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-dotall-regex": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz", "integrity": "sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==", "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-duplicate-keys": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz", "integrity": "sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==", "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-transform-dynamic-import": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-explicit-resource-management": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz", "integrity": "sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/plugin-transform-destructuring": "^7.28.0" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.27.1.tgz", "integrity": "sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-export-namespace-from": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-flow-strip-types": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.27.1.tgz", "integrity": "sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/plugin-syntax-flow": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-for-of": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-function-name": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/traverse": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-json-strings": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz", "integrity": "sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-literals": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.27.1.tgz", "integrity": "sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-member-expression-literals": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-modules-amd": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-modules-commonjs": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz", "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==", "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-modules-systemjs": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.27.1.tgz", "integrity": "sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==", "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1", "@babel/traverse": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-modules-umd": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz", "integrity": "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==", "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-transform-new-target": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz", "integrity": "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-numeric-separator": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz", "integrity": "sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-object-rest-spread": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.0.tgz", "integrity": "sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==", "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-plugin-utils": "^7.27.1", "@babel/plugin-transform-destructuring": "^7.28.0", "@babel/plugin-transform-parameters": "^7.27.7", "@babel/traverse": "^7.28.0" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-object-super": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-replace-supers": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz", "integrity": "sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-optional-chaining": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.27.1.tgz", "integrity": "sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-parameters": { "version": "7.27.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz", "integrity": "sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-private-methods": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz", "integrity": "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==", "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-private-property-in-object": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz", "integrity": "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==", "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-property-literals": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-react-constant-elements": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.27.1.tgz", "integrity": "sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-react-display-name": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.28.0.tgz", "integrity": "sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-react-jsx": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.27.1.tgz", "integrity": "sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==", "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-module-imports": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/plugin-syntax-jsx": "^7.27.1", "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-react-jsx-development": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.27.1.tgz", "integrity": "sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==", "license": "MIT", "dependencies": { "@babel/plugin-transform-react-jsx": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-react-pure-annotations": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.27.1.tgz", "integrity": "sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==", "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-regenerator": { "version": "7.28.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.1.tgz", "integrity": "sha512-P0QiV/taaa3kXpLY+sXla5zec4E+4t4Aqc9ggHlfZ7a2cp8/x/Gv08jfwEtn9gnnYIMvHx6aoOZ8XJL8eU71Dg==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-regexp-modifiers": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz", "integrity": "sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==", "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-transform-reserved-words": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-runtime": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.28.0.tgz", "integrity": "sha512-dGopk9nZrtCs2+nfIem25UuHyt5moSJamArzIoh9/vezUQPmYDOzjaHDCkAzuGJibCIkPup8rMT2+wYB6S73cA==", "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "babel-plugin-polyfill-corejs2": "^0.4.14", "babel-plugin-polyfill-corejs3": "^0.13.0", "babel-plugin-polyfill-regenerator": "^0.6.5", "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/plugin-transform-shorthand-properties": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-spread": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz", "integrity": "sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-sticky-regex": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-template-literals": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-typeof-symbol": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-typescript": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.0.tgz", "integrity": "sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==", "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.3", "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", "@babel/plugin-syntax-typescript": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-unicode-escapes": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz", "integrity": "sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==", "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-unicode-regex": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz", "integrity": "sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==", "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/preset-env": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.28.0.tgz", "integrity": "sha512-VmaxeGOwuDqzLl5JUkIRM1X2Qu2uKGxHEQWh+cvvbl7JuJRgKGJSfsEF/bUaxFhJl/XAyxBe7q7qSuTbKFuCyg==", "license": "MIT", "dependencies": { "@babel/compat-data": "^7.28.0", "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-validator-option": "^7.27.1", "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.27.1", "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.27.1", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-import-assertions": "^7.27.1", "@babel/plugin-syntax-import-attributes": "^7.27.1", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.27.1", "@babel/plugin-transform-async-generator-functions": "^7.28.0", "@babel/plugin-transform-async-to-generator": "^7.27.1", "@babel/plugin-transform-block-scoped-functions": "^7.27.1", "@babel/plugin-transform-block-scoping": "^7.28.0", "@babel/plugin-transform-class-properties": "^7.27.1", "@babel/plugin-transform-class-static-block": "^7.27.1", "@babel/plugin-transform-classes": "^7.28.0", "@babel/plugin-transform-computed-properties": "^7.27.1", "@babel/plugin-transform-destructuring": "^7.28.0", "@babel/plugin-transform-dotall-regex": "^7.27.1", "@babel/plugin-transform-duplicate-keys": "^7.27.1", "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.27.1", "@babel/plugin-transform-dynamic-import": "^7.27.1", "@babel/plugin-transform-explicit-resource-management": "^7.28.0", "@babel/plugin-transform-exponentiation-operator": "^7.27.1", "@babel/plugin-transform-export-namespace-from": "^7.27.1", "@babel/plugin-transform-for-of": "^7.27.1", "@babel/plugin-transform-function-name": "^7.27.1", "@babel/plugin-transform-json-strings": "^7.27.1", "@babel/plugin-transform-literals": "^7.27.1", "@babel/plugin-transform-logical-assignment-operators": "^7.27.1", "@babel/plugin-transform-member-expression-literals": "^7.27.1", "@babel/plugin-transform-modules-amd": "^7.27.1", "@babel/plugin-transform-modules-commonjs": "^7.27.1", "@babel/plugin-transform-modules-systemjs": "^7.27.1", "@babel/plugin-transform-modules-umd": "^7.27.1", "@babel/plugin-transform-named-capturing-groups-regex": "^7.27.1", "@babel/plugin-transform-new-target": "^7.27.1", "@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1", "@babel/plugin-transform-numeric-separator": "^7.27.1", "@babel/plugin-transform-object-rest-spread": "^7.28.0", "@babel/plugin-transform-object-super": "^7.27.1", "@babel/plugin-transform-optional-catch-binding": "^7.27.1", "@babel/plugin-transform-optional-chaining": "^7.27.1", "@babel/plugin-transform-parameters": "^7.27.7", "@babel/plugin-transform-private-methods": "^7.27.1", "@babel/plugin-transform-private-property-in-object": "^7.27.1", "@babel/plugin-transform-property-literals": "^7.27.1", "@babel/plugin-transform-regenerator": "^7.28.0", "@babel/plugin-transform-regexp-modifiers": "^7.27.1", "@babel/plugin-transform-reserved-words": "^7.27.1", "@babel/plugin-transform-shorthand-properties": "^7.27.1", "@babel/plugin-transform-spread": "^7.27.1", "@babel/plugin-transform-sticky-regex": "^7.27.1", "@babel/plugin-transform-template-literals": "^7.27.1", "@babel/plugin-transform-typeof-symbol": "^7.27.1", "@babel/plugin-transform-unicode-escapes": "^7.27.1", "@babel/plugin-transform-unicode-property-regex": "^7.27.1", "@babel/plugin-transform-unicode-regex": "^7.27.1", "@babel/plugin-transform-unicode-sets-regex": "^7.27.1", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.14", "babel-plugin-polyfill-corejs3": "^0.13.0", "babel-plugin-polyfill-regenerator": "^0.6.5", "core-js-compat": "^3.43.0", "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/preset-env/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/preset-modules": { "version": "0.1.6-no-external-plugins", "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/types": "^7.4.4", "esutils": "^2.0.2" }, "peerDependencies": { "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/preset-react": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.27.1.tgz", "integrity": "sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-validator-option": "^7.27.1", "@babel/plugin-transform-react-display-name": "^7.27.1", "@babel/plugin-transform-react-jsx": "^7.27.1", "@babel/plugin-transform-react-jsx-development": "^7.27.1", "@babel/plugin-transform-react-pure-annotations": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/preset-typescript": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.27.1.tgz", "integrity": "sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-validator-option": "^7.27.1", "@babel/plugin-syntax-jsx": "^7.27.1", "@babel/plugin-transform-modules-commonjs": "^7.27.1", "@babel/plugin-transform-typescript": "^7.27.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/runtime": { "version": "7.28.2", "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.2.tgz", "integrity": "sha512-KHp2IflsnGywDjBWDkR9iEqiWSpc8GIi0lgTT3mOElT0PP1tG26P4tmFI2YvAdzgq9RGyoHZQEIEdZy6Ec5xCA==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { "version": "7.27.2", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/parser": "^7.27.2", "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.0.tgz", "integrity": "sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.0", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.0", "@babel/template": "^7.27.2", "@babel/types": "^7.28.0", "debug": "^4.3.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/types": { "version": "7.28.2", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz", "integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==", "license": "MIT", "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "license": "MIT" }, "node_modules/@choojs/findup": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/@choojs/findup/-/findup-0.2.1.tgz", "integrity": "sha512-YstAqNb0MCN8PjdLCDfRsBcGVRN41f3vgLvaI0IrIcBp4AqILRSS0DeWNGkicC+f/zRIPJLc+9RURVSepwvfBw==", "license": "MIT", "dependencies": { "commander": "^2.15.1" }, "bin": { "findup": "bin/findup.js" } }, "node_modules/@choojs/findup/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "license": "MIT" }, "node_modules/@csstools/normalize.css": { "version": "12.1.1", "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.1.1.tgz", "integrity": "sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==", "license": "CC0-1.0" }, "node_modules/@csstools/postcss-cascade-layers": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", "license": "CC0-1.0", "dependencies": { "@csstools/selector-specificity": "^2.0.2", "postcss-selector-parser": "^6.0.10" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/postcss-color-function": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", "license": "CC0-1.0", "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/postcss-font-format-keywords": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/postcss-hwb-function": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/postcss-ic-unit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", "license": "CC0-1.0", "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/postcss-is-pseudo-class": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", "license": "CC0-1.0", "dependencies": { "@csstools/selector-specificity": "^2.0.0", "postcss-selector-parser": "^6.0.10" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/postcss-nested-calc": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/postcss-normalize-display-values": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/postcss-oklab-function": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", "license": "CC0-1.0", "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/postcss-progressive-custom-properties": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "peerDependencies": { "postcss": "^8.3" } }, "node_modules/@csstools/postcss-stepped-value-functions": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/postcss-text-decoration-shorthand": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/postcss-trigonometric-functions": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/postcss-unset-value": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", "license": "CC0-1.0", "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/@csstools/selector-specificity": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", "license": "CC0-1.0", "engines": { "node": "^14 || ^16 || >=18" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss-selector-parser": "^6.0.10" } }, "node_modules/@eslint-community/eslint-utils": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "license": "MIT", "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "node_modules/@eslint-community/regexpp": { "version": "4.12.1", "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", "license": "MIT", "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, "node_modules/@eslint/eslintrc": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "license": "MIT", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.6.0", "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/@eslint/eslintrc/node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "license": "Python-2.0" }, "node_modules/@eslint/eslintrc/node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "node_modules/@eslint/js": { "version": "8.57.1", "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/@humanwhocodes/config-array": { "version": "0.13.0", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", "deprecated": "Use @eslint/config-array instead", "license": "Apache-2.0", "dependencies": { "@humanwhocodes/object-schema": "^2.0.3", "debug": "^4.3.1", "minimatch": "^3.0.5" }, "engines": { "node": ">=10.10.0" } }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "license": "Apache-2.0", "engines": { "node": ">=12.22" }, "funding": { "type": "github", "url": "https://github.com/sponsors/nzakas" } }, "node_modules/@humanwhocodes/object-schema": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", "deprecated": "Use @eslint/object-schema instead", "license": "BSD-3-Clause" }, "node_modules/@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "license": "ISC", "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", "strip-ansi": "^7.0.1", "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", "wrap-ansi": "^8.1.0", "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" }, "engines": { "node": ">=12" } }, "node_modules/@isaacs/cliui/node_modules/ansi-regex": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, "node_modules/@isaacs/cliui/node_modules/ansi-styles": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/@isaacs/cliui/node_modules/string-width": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "license": "MIT", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@isaacs/cliui/node_modules/strip-ansi": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "license": "MIT", "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "license": "ISC", "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", "get-package-type": "^0.1.0", "js-yaml": "^3.13.1", "resolve-from": "^5.0.0" }, "engines": { "node": ">=8" } }, "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/console": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "jest-message-util": "^27.5.1", "jest-util": "^27.5.1", "slash": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/core": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", "license": "MIT", "dependencies": { "@jest/console": "^27.5.1", "@jest/reporters": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.8.1", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "jest-changed-files": "^27.5.1", "jest-config": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-message-util": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-resolve-dependencies": "^27.5.1", "jest-runner": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "jest-watcher": "^27.5.1", "micromatch": "^4.0.4", "rimraf": "^3.0.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { "node-notifier": { "optional": true } } }, "node_modules/@jest/environment": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", "license": "MIT", "dependencies": { "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/fake-timers": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "@sinonjs/fake-timers": "^8.0.1", "@types/node": "*", "jest-message-util": "^27.5.1", "jest-mock": "^27.5.1", "jest-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/globals": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", "@jest/types": "^27.5.1", "expect": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/reporters": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", "license": "MIT", "dependencies": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", "exit": "^0.1.2", "glob": "^7.1.2", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", "istanbul-lib-instrument": "^5.1.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", "jest-haste-map": "^27.5.1", "jest-resolve": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "slash": "^3.0.0", "source-map": "^0.6.0", "string-length": "^4.0.1", "terminal-link": "^2.0.0", "v8-to-istanbul": "^8.1.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { "node-notifier": { "optional": true } } }, "node_modules/@jest/reporters/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/@jest/schemas": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/@jest/source-map": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", "license": "MIT", "dependencies": { "callsites": "^3.0.0", "graceful-fs": "^4.2.9", "source-map": "^0.6.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/source-map/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/@jest/test-result": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", "license": "MIT", "dependencies": { "@jest/console": "^27.5.1", "@jest/types": "^27.5.1", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/test-sequencer": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", "license": "MIT", "dependencies": { "@jest/test-result": "^27.5.1", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-runtime": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/transform": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", "license": "MIT", "dependencies": { "@babel/core": "^7.1.0", "@jest/types": "^27.5.1", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^1.4.0", "fast-json-stable-stringify": "^2.0.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-util": "^27.5.1", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", "source-map": "^0.6.1", "write-file-atomic": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/transform/node_modules/convert-source-map": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "license": "MIT" }, "node_modules/@jest/transform/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", "@types/yargs": "^16.0.0", "chalk": "^4.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.12", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", "license": "MIT", "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" } }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "license": "MIT", "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/source-map": { "version": "0.3.10", "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.29", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@leichtgewicht/ip-codec": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", "license": "MIT" }, "node_modules/@mapbox/geojson-rewind": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz", "integrity": "sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==", "license": "ISC", "dependencies": { "get-stream": "^6.0.1", "minimist": "^1.2.6" }, "bin": { "geojson-rewind": "geojson-rewind" } }, "node_modules/@mapbox/geojson-types": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz", "integrity": "sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw==", "license": "ISC" }, "node_modules/@mapbox/jsonlint-lines-primitives": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz", "integrity": "sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==", "engines": { "node": ">= 0.6" } }, "node_modules/@mapbox/mapbox-gl-supported": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.5.0.tgz", "integrity": "sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg==", "license": "BSD-3-Clause", "peerDependencies": { "mapbox-gl": ">=0.32.1 <2.0.0" } }, "node_modules/@mapbox/point-geometry": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz", "integrity": "sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==", "license": "ISC" }, "node_modules/@mapbox/tiny-sdf": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-1.2.5.tgz", "integrity": "sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw==", "license": "BSD-2-Clause" }, "node_modules/@mapbox/unitbezier": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz", "integrity": "sha512-HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA==", "license": "BSD-2-Clause" }, "node_modules/@mapbox/vector-tile": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz", "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==", "license": "BSD-3-Clause", "dependencies": { "@mapbox/point-geometry": "~0.1.0" } }, "node_modules/@mapbox/whoots-js": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz", "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==", "license": "ISC", "engines": { "node": ">=6.0.0" } }, "node_modules/@maplibre/maplibre-gl-style-spec": { "version": "20.4.0", "resolved": "https://registry.npmjs.org/@maplibre/maplibre-gl-style-spec/-/maplibre-gl-style-spec-20.4.0.tgz", "integrity": "sha512-AzBy3095fTFPjDjmWpR2w6HVRAZJ6hQZUCwk5Plz6EyfnfuQW1odeW5i2Ai47Y6TBA2hQnC+azscjBSALpaWgw==", "license": "ISC", "dependencies": { "@mapbox/jsonlint-lines-primitives": "~2.0.2", "@mapbox/unitbezier": "^0.0.1", "json-stringify-pretty-compact": "^4.0.0", "minimist": "^1.2.8", "quickselect": "^2.0.0", "rw": "^1.3.3", "tinyqueue": "^3.0.0" }, "bin": { "gl-style-format": "dist/gl-style-format.mjs", "gl-style-migrate": "dist/gl-style-migrate.mjs", "gl-style-validate": "dist/gl-style-validate.mjs" } }, "node_modules/@maplibre/maplibre-gl-style-spec/node_modules/@mapbox/unitbezier": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==", "license": "BSD-2-Clause" }, "node_modules/@maplibre/maplibre-gl-style-spec/node_modules/tinyqueue": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-3.0.0.tgz", "integrity": "sha512-gRa9gwYU3ECmQYv3lslts5hxuIa90veaEcxDYuu3QGOIAEM2mOZkVHp48ANJuu1CURtRdHKUBY5Lm1tHV+sD4g==", "license": "ISC" }, "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { "version": "5.1.1-v1", "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", "license": "MIT", "dependencies": { "eslint-scope": "5.1.1" } }, "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" }, "engines": { "node": ">=8.0.0" } }, "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" }, "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" }, "engines": { "node": ">= 8" } }, "node_modules/@pkgjs/parseargs": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "license": "MIT", "optional": true, "engines": { "node": ">=14" } }, "node_modules/@plotly/d3": { "version": "3.8.2", "resolved": "https://registry.npmjs.org/@plotly/d3/-/d3-3.8.2.tgz", "integrity": "sha512-wvsNmh1GYjyJfyEBPKJLTMzgf2c2bEbSIL50lmqVUi+o1NHaLPi1Lb4v7VxXXJn043BhNyrxUrWI85Q+zmjOVA==", "license": "BSD-3-Clause" }, "node_modules/@plotly/d3-sankey": { "version": "0.7.2", "resolved": "https://registry.npmjs.org/@plotly/d3-sankey/-/d3-sankey-0.7.2.tgz", "integrity": "sha512-2jdVos1N3mMp3QW0k2q1ph7Gd6j5PY1YihBrwpkFnKqO+cqtZq3AdEYUeSGXMeLsBDQYiqTVcihYfk8vr5tqhw==", "license": "BSD-3-Clause", "dependencies": { "d3-array": "1", "d3-collection": "1", "d3-shape": "^1.2.0" } }, "node_modules/@plotly/d3-sankey-circular": { "version": "0.33.1", "resolved": "https://registry.npmjs.org/@plotly/d3-sankey-circular/-/d3-sankey-circular-0.33.1.tgz", "integrity": "sha512-FgBV1HEvCr3DV7RHhDsPXyryknucxtfnLwPtCKKxdolKyTFYoLX/ibEfX39iFYIL7DYbVeRtP43dbFcrHNE+KQ==", "license": "MIT", "dependencies": { "d3-array": "^1.2.1", "d3-collection": "^1.0.4", "d3-shape": "^1.2.0", "elementary-circuits-directed-graph": "^1.0.4" } }, "node_modules/@plotly/mapbox-gl": { "version": "1.13.4", "resolved": "https://registry.npmjs.org/@plotly/mapbox-gl/-/mapbox-gl-1.13.4.tgz", "integrity": "sha512-sR3/Pe5LqT/fhYgp4rT4aSFf1rTsxMbGiH6Hojc7PH36ny5Bn17iVFUjpzycafETURuFbLZUfjODO8LvSI+5zQ==", "license": "SEE LICENSE IN LICENSE.txt", "dependencies": { "@mapbox/geojson-rewind": "^0.5.2", "@mapbox/geojson-types": "^1.0.2", "@mapbox/jsonlint-lines-primitives": "^2.0.2", "@mapbox/mapbox-gl-supported": "^1.5.0", "@mapbox/point-geometry": "^0.1.0", "@mapbox/tiny-sdf": "^1.1.1", "@mapbox/unitbezier": "^0.0.0", "@mapbox/vector-tile": "^1.3.1", "@mapbox/whoots-js": "^3.1.0", "csscolorparser": "~1.0.3", "earcut": "^2.2.2", "geojson-vt": "^3.2.1", "gl-matrix": "^3.2.1", "grid-index": "^1.1.0", "murmurhash-js": "^1.0.0", "pbf": "^3.2.1", "potpack": "^1.0.1", "quickselect": "^2.0.0", "rw": "^1.3.3", "supercluster": "^7.1.0", "tinyqueue": "^2.0.3", "vt-pbf": "^3.1.1" }, "engines": { "node": ">=6.4.0" } }, "node_modules/@plotly/point-cluster": { "version": "3.1.9", "resolved": "https://registry.npmjs.org/@plotly/point-cluster/-/point-cluster-3.1.9.tgz", "integrity": "sha512-MwaI6g9scKf68Orpr1pHZ597pYx9uP8UEFXLPbsCmuw3a84obwz6pnMXGc90VhgDNeNiLEdlmuK7CPo+5PIxXw==", "license": "MIT", "dependencies": { "array-bounds": "^1.0.1", "binary-search-bounds": "^2.0.4", "clamp": "^1.0.1", "defined": "^1.0.0", "dtype": "^2.0.0", "flatten-vertex-data": "^1.0.2", "is-obj": "^1.0.1", "math-log2": "^1.0.1", "parse-rect": "^1.2.0", "pick-by-alias": "^1.2.0" } }, "node_modules/@plotly/regl": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/@plotly/regl/-/regl-2.1.2.tgz", "integrity": "sha512-Mdk+vUACbQvjd0m/1JJjOOafmkp/EpmHjISsopEz5Av44CBq7rPC05HHNbYGKVyNUF2zmEoBS/TT0pd0SPFFyw==", "license": "MIT" }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.17", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.17.tgz", "integrity": "sha512-tXDyE1/jzFsHXjhRZQ3hMl0IVhYe5qula43LDWIhVfjp9G/nT5OQY5AORVOrkEGAUltBJOfOWeETbmhm6kHhuQ==", "license": "MIT", "dependencies": { "ansi-html": "^0.0.9", "core-js-pure": "^3.23.3", "error-stack-parser": "^2.0.6", "html-entities": "^2.1.0", "loader-utils": "^2.0.4", "schema-utils": "^4.2.0", "source-map": "^0.7.3" }, "engines": { "node": ">= 10.13" }, "peerDependencies": { "@types/webpack": "4.x || 5.x", "react-refresh": ">=0.10.0 <1.0.0", "sockjs-client": "^1.4.0", "type-fest": ">=0.17.0 <5.0.0", "webpack": ">=4.43.0 <6.0.0", "webpack-dev-server": "3.x || 4.x || 5.x", "webpack-hot-middleware": "2.x", "webpack-plugin-serve": "0.x || 1.x" }, "peerDependenciesMeta": { "@types/webpack": { "optional": true }, "sockjs-client": { "optional": true }, "type-fest": { "optional": true }, "webpack-dev-server": { "optional": true }, "webpack-hot-middleware": { "optional": true }, "webpack-plugin-serve": { "optional": true } } }, "node_modules/@rollup/plugin-babel": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.10.4", "@rollup/pluginutils": "^3.1.0" }, "engines": { "node": ">= 10.0.0" }, "peerDependencies": { "@babel/core": "^7.0.0", "@types/babel__core": "^7.1.9", "rollup": "^1.20.0||^2.0.0" }, "peerDependenciesMeta": { "@types/babel__core": { "optional": true } } }, "node_modules/@rollup/plugin-node-resolve": { "version": "11.2.1", "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", "license": "MIT", "dependencies": { "@rollup/pluginutils": "^3.1.0", "@types/resolve": "1.17.1", "builtin-modules": "^3.1.0", "deepmerge": "^4.2.2", "is-module": "^1.0.0", "resolve": "^1.19.0" }, "engines": { "node": ">= 10.0.0" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0" } }, "node_modules/@rollup/plugin-replace": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", "license": "MIT", "dependencies": { "@rollup/pluginutils": "^3.1.0", "magic-string": "^0.25.7" }, "peerDependencies": { "rollup": "^1.20.0 || ^2.0.0" } }, "node_modules/@rollup/pluginutils": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", "license": "MIT", "dependencies": { "@types/estree": "0.0.39", "estree-walker": "^1.0.1", "picomatch": "^2.2.2" }, "engines": { "node": ">= 8.0.0" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0" } }, "node_modules/@rollup/pluginutils/node_modules/@types/estree": { "version": "0.0.39", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", "license": "MIT" }, "node_modules/@rtsao/scc": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", "license": "MIT" }, "node_modules/@rushstack/eslint-patch": { "version": "1.12.0", "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.12.0.tgz", "integrity": "sha512-5EwMtOqvJMMa3HbmxLlF74e+3/HhwBTMcvt3nqVJgGCozO6hzIPOBlwm8mGVNR9SN2IJpxSnlxczyDjcn7qIyw==", "license": "MIT" }, "node_modules/@sinclair/typebox": { "version": "0.24.51", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", "license": "MIT" }, "node_modules/@sinonjs/commons": { "version": "1.8.6", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" } }, "node_modules/@sinonjs/fake-timers": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^1.7.0" } }, "node_modules/@surma/rollup-plugin-off-main-thread": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", "license": "Apache-2.0", "dependencies": { "ejs": "^3.1.6", "json5": "^2.2.0", "magic-string": "^0.25.0", "string.prototype.matchall": "^4.0.6" } }, "node_modules/@svgr/babel-plugin-add-jsx-attribute": { "version": "5.4.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { "version": "5.4.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-svg-dynamic-title": { "version": "5.4.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-svg-em-dimensions": { "version": "5.4.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-transform-react-native-svg": { "version": "5.4.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-transform-svg-component": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-preset": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", "license": "MIT", "dependencies": { "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", "@svgr/babel-plugin-transform-svg-component": "^5.5.0" }, "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/core": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", "license": "MIT", "dependencies": { "@svgr/plugin-jsx": "^5.5.0", "camelcase": "^6.2.0", "cosmiconfig": "^7.0.0" }, "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/hast-util-to-babel-ast": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", "license": "MIT", "dependencies": { "@babel/types": "^7.12.6" }, "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/plugin-jsx": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", "license": "MIT", "dependencies": { "@babel/core": "^7.12.3", "@svgr/babel-preset": "^5.5.0", "@svgr/hast-util-to-babel-ast": "^5.5.0", "svg-parser": "^2.0.2" }, "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/plugin-svgo": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", "license": "MIT", "dependencies": { "cosmiconfig": "^7.0.0", "deepmerge": "^4.2.2", "svgo": "^1.2.2" }, "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/webpack": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", "license": "MIT", "dependencies": { "@babel/core": "^7.12.3", "@babel/plugin-transform-react-constant-elements": "^7.12.1", "@babel/preset-env": "^7.12.1", "@babel/preset-react": "^7.12.5", "@svgr/core": "^5.5.0", "@svgr/plugin-jsx": "^5.5.0", "@svgr/plugin-svgo": "^5.5.0", "loader-utils": "^2.0.0" }, "engines": { "node": ">=10" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@testing-library/dom": { "version": "10.4.1", "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.1.tgz", "integrity": "sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", "@types/aria-query": "^5.0.1", "aria-query": "5.3.0", "dom-accessibility-api": "^0.5.9", "lz-string": "^1.5.0", "picocolors": "1.1.1", "pretty-format": "^27.0.2" }, "engines": { "node": ">=18" } }, "node_modules/@testing-library/dom/node_modules/aria-query": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", "license": "Apache-2.0", "dependencies": { "dequal": "^2.0.3" } }, "node_modules/@testing-library/jest-dom": { "version": "6.6.4", "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.6.4.tgz", "integrity": "sha512-xDXgLjVunjHqczScfkCJ9iyjdNOVHvvCdqHSSxwM9L0l/wHkTRum67SDc020uAlCoqktJplgO2AAQeLP1wgqDQ==", "license": "MIT", "dependencies": { "@adobe/css-tools": "^4.4.0", "aria-query": "^5.0.0", "css.escape": "^1.5.1", "dom-accessibility-api": "^0.6.3", "lodash": "^4.17.21", "picocolors": "^1.1.1", "redent": "^3.0.0" }, "engines": { "node": ">=14", "npm": ">=6", "yarn": ">=1" } }, "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", "license": "MIT" }, "node_modules/@testing-library/react": { "version": "16.3.0", "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.3.0.tgz", "integrity": "sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.5" }, "engines": { "node": ">=18" }, "peerDependencies": { "@testing-library/dom": "^10.0.0", "@types/react": "^18.0.0 || ^19.0.0", "@types/react-dom": "^18.0.0 || ^19.0.0", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "peerDependenciesMeta": { "@types/react": { "optional": true }, "@types/react-dom": { "optional": true } } }, "node_modules/@testing-library/user-event": { "version": "13.5.0", "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.5" }, "engines": { "node": ">=10", "npm": ">=6" }, "peerDependencies": { "@testing-library/dom": ">=7.21.4" } }, "node_modules/@tootallnate/once": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/@trysound/sax": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", "license": "ISC", "engines": { "node": ">=10.13.0" } }, "node_modules/@turf/area": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/@turf/area/-/area-7.2.0.tgz", "integrity": "sha512-zuTTdQ4eoTI9nSSjerIy4QwgvxqwJVciQJ8tOPuMHbXJ9N/dNjI7bU8tasjhxas/Cx3NE9NxVHtNpYHL0FSzoA==", "license": "MIT", "dependencies": { "@turf/helpers": "^7.2.0", "@turf/meta": "^7.2.0", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" }, "funding": { "url": "https://opencollective.com/turf" } }, "node_modules/@turf/bbox": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-7.2.0.tgz", "integrity": "sha512-wzHEjCXlYZiDludDbXkpBSmv8Zu6tPGLmJ1sXQ6qDwpLE1Ew3mcWqt8AaxfTP5QwDNQa3sf2vvgTEzNbPQkCiA==", "license": "MIT", "dependencies": { "@turf/helpers": "^7.2.0", "@turf/meta": "^7.2.0", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" }, "funding": { "url": "https://opencollective.com/turf" } }, "node_modules/@turf/centroid": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/@turf/centroid/-/centroid-7.2.0.tgz", "integrity": "sha512-yJqDSw25T7P48au5KjvYqbDVZ7qVnipziVfZ9aSo7P2/jTE7d4BP21w0/XLi3T/9bry/t9PR1GDDDQljN4KfDw==", "license": "MIT", "dependencies": { "@turf/helpers": "^7.2.0", "@turf/meta": "^7.2.0", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" }, "funding": { "url": "https://opencollective.com/turf" } }, "node_modules/@turf/helpers": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-7.2.0.tgz", "integrity": "sha512-cXo7bKNZoa7aC7ydLmUR02oB3IgDe7MxiPuRz3cCtYQHn+BJ6h1tihmamYDWWUlPHgSNF0i3ATc4WmDECZafKw==", "license": "MIT", "dependencies": { "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" }, "funding": { "url": "https://opencollective.com/turf" } }, "node_modules/@turf/meta": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-7.2.0.tgz", "integrity": "sha512-igzTdHsQc8TV1RhPuOLVo74Px/hyPrVgVOTgjWQZzt3J9BVseCdpfY/0cJBdlSRI4S/yTmmHl7gAqjhpYH5Yaw==", "license": "MIT", "dependencies": { "@turf/helpers": "^7.2.0", "@types/geojson": "^7946.0.10" }, "funding": { "url": "https://opencollective.com/turf" } }, "node_modules/@types/aria-query": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", "license": "MIT" }, "node_modules/@types/babel__core": { "version": "7.20.5", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "license": "MIT", "dependencies": { "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "node_modules/@types/babel__generator": { "version": "7.27.0", "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", "license": "MIT", "dependencies": { "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__template": { "version": "7.4.4", "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__traverse": { "version": "7.20.7", "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.7.tgz", "integrity": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==", "license": "MIT", "dependencies": { "@babel/types": "^7.20.7" } }, "node_modules/@types/body-parser": { "version": "1.19.6", "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz", "integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==", "license": "MIT", "dependencies": { "@types/connect": "*", "@types/node": "*" } }, "node_modules/@types/bonjour": { "version": "3.5.13", "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect": { "version": "3.4.38", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect-history-api-fallback": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", "license": "MIT", "dependencies": { "@types/express-serve-static-core": "*", "@types/node": "*" } }, "node_modules/@types/eslint": { "version": "8.56.12", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.12.tgz", "integrity": "sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==", "license": "MIT", "dependencies": { "@types/estree": "*", "@types/json-schema": "*" } }, "node_modules/@types/eslint-scope": { "version": "3.7.7", "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "license": "MIT", "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, "node_modules/@types/estree": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", "license": "MIT" }, "node_modules/@types/express": { "version": "4.17.23", "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.23.tgz", "integrity": "sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ==", "license": "MIT", "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" } }, "node_modules/@types/express-serve-static-core": { "version": "5.0.7", "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.7.tgz", "integrity": "sha512-R+33OsgWw7rOhD1emjU7dzCDHucJrgJXMA5PYCzJxVil0dsyx5iBEPHqpPfiKNJQb7lZ1vxwoLR4Z87bBUpeGQ==", "license": "MIT", "dependencies": { "@types/node": "*", "@types/qs": "*", "@types/range-parser": "*", "@types/send": "*" } }, "node_modules/@types/express/node_modules/@types/express-serve-static-core": { "version": "4.19.6", "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", "license": "MIT", "dependencies": { "@types/node": "*", "@types/qs": "*", "@types/range-parser": "*", "@types/send": "*" } }, "node_modules/@types/geojson": { "version": "7946.0.16", "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz", "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", "license": "MIT" }, "node_modules/@types/geojson-vt": { "version": "3.2.5", "resolved": "https://registry.npmjs.org/@types/geojson-vt/-/geojson-vt-3.2.5.tgz", "integrity": "sha512-qDO7wqtprzlpe8FfQ//ClPV9xiuoh2nkIgiouIptON9w5jvD/fA4szvP9GBlDVdJ5dldAl0kX/sy3URbWwLx0g==", "license": "MIT", "dependencies": { "@types/geojson": "*" } }, "node_modules/@types/graceful-fs": { "version": "4.1.9", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/html-minifier-terser": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", "license": "MIT" }, "node_modules/@types/http-errors": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz", "integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==", "license": "MIT" }, "node_modules/@types/http-proxy": { "version": "1.17.16", "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.16.tgz", "integrity": "sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", "license": "MIT" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "*" } }, "node_modules/@types/istanbul-reports": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "license": "MIT", "dependencies": { "@types/istanbul-lib-report": "*" } }, "node_modules/@types/json-schema": { "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "license": "MIT" }, "node_modules/@types/json5": { "version": "0.0.29", "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", "license": "MIT" }, "node_modules/@types/mapbox__point-geometry": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.4.tgz", "integrity": "sha512-mUWlSxAmYLfwnRBmgYV86tgYmMIICX4kza8YnE/eIlywGe2XoOxlpVnXWwir92xRLjwyarqwpu2EJKD2pk0IUA==", "license": "MIT" }, "node_modules/@types/mapbox__vector-tile": { "version": "1.3.4", "resolved": "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.4.tgz", "integrity": "sha512-bpd8dRn9pr6xKvuEBQup8pwQfD4VUyqO/2deGjfpe6AwC8YRlyEipvefyRJUSiCJTZuCb8Pl1ciVV5ekqJ96Bg==", "license": "MIT", "dependencies": { "@types/geojson": "*", "@types/mapbox__point-geometry": "*", "@types/pbf": "*" } }, "node_modules/@types/mime": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "license": "MIT" }, "node_modules/@types/node": { "version": "24.1.0", "resolved": "https://registry.npmjs.org/@types/node/-/node-24.1.0.tgz", "integrity": "sha512-ut5FthK5moxFKH2T1CUOC6ctR67rQRvvHdFLCD2Ql6KXmMuCrjsSsRI9UsLCm9M18BMwClv4pn327UvB7eeO1w==", "license": "MIT", "dependencies": { "undici-types": "~7.8.0" } }, "node_modules/@types/node-forge": { "version": "1.3.13", "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.13.tgz", "integrity": "sha512-zePQJSW5QkwSHKRApqWCVKeKoSOt4xvEnLENZPjyvm9Ezdf/EyDeJM7jqLzOwjVICQQzvLZ63T55MKdJB5H6ww==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/parse-json": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", "license": "MIT" }, "node_modules/@types/pbf": { "version": "3.0.5", "resolved": "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.5.tgz", "integrity": "sha512-j3pOPiEcWZ34R6a6mN07mUkM4o4Lwf6hPNt8eilOeZhTFbxFXmKhvXl9Y28jotFPaI1bpPDJsbCprUoNke6OrA==", "license": "MIT" }, "node_modules/@types/prettier": { "version": "2.7.3", "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", "license": "MIT" }, "node_modules/@types/q": { "version": "1.5.8", "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==", "license": "MIT" }, "node_modules/@types/qs": { "version": "6.14.0", "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz", "integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==", "license": "MIT" }, "node_modules/@types/range-parser": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", "license": "MIT" }, "node_modules/@types/resolve": { "version": "1.17.1", "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/retry": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", "license": "MIT" }, "node_modules/@types/semver": { "version": "7.7.0", "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.0.tgz", "integrity": "sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==", "license": "MIT" }, "node_modules/@types/send": { "version": "0.17.5", "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.5.tgz", "integrity": "sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==", "license": "MIT", "dependencies": { "@types/mime": "^1", "@types/node": "*" } }, "node_modules/@types/serve-index": { "version": "1.9.4", "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", "license": "MIT", "dependencies": { "@types/express": "*" } }, "node_modules/@types/serve-static": { "version": "1.15.8", "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.8.tgz", "integrity": "sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg==", "license": "MIT", "dependencies": { "@types/http-errors": "*", "@types/node": "*", "@types/send": "*" } }, "node_modules/@types/sockjs": { "version": "0.3.36", "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/stack-utils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "license": "MIT" }, "node_modules/@types/supercluster": { "version": "7.1.3", "resolved": "https://registry.npmjs.org/@types/supercluster/-/supercluster-7.1.3.tgz", "integrity": "sha512-Z0pOY34GDFl3Q6hUFYf3HkTwKEE02e7QgtJppBt+beEAxnyOpJua+voGFvxINBHa06GwLFFym7gRPY2SiKIfIA==", "license": "MIT", "dependencies": { "@types/geojson": "*" } }, "node_modules/@types/trusted-types": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", "license": "MIT" }, "node_modules/@types/ws": { "version": "8.18.1", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz", "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/yargs": { "version": "16.0.9", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", "license": "MIT", "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { "version": "21.0.3", "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.4.0", "@typescript-eslint/scope-manager": "5.62.0", "@typescript-eslint/type-utils": "5.62.0", "@typescript-eslint/utils": "5.62.0", "debug": "^4.3.4", "graphemer": "^1.4.0", "ignore": "^5.2.0", "natural-compare-lite": "^1.4.0", "semver": "^7.3.7", "tsutils": "^3.21.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "@typescript-eslint/parser": "^5.0.0", "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/@typescript-eslint/experimental-utils": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", "license": "MIT", "dependencies": { "@typescript-eslint/utils": "5.62.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/@typescript-eslint/parser": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", "license": "BSD-2-Clause", "dependencies": { "@typescript-eslint/scope-manager": "5.62.0", "@typescript-eslint/types": "5.62.0", "@typescript-eslint/typescript-estree": "5.62.0", "debug": "^4.3.4" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/@typescript-eslint/scope-manager": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", "license": "MIT", "dependencies": { "@typescript-eslint/types": "5.62.0", "@typescript-eslint/visitor-keys": "5.62.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, "node_modules/@typescript-eslint/type-utils": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", "license": "MIT", "dependencies": { "@typescript-eslint/typescript-estree": "5.62.0", "@typescript-eslint/utils": "5.62.0", "debug": "^4.3.4", "tsutils": "^3.21.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "eslint": "*" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/@typescript-eslint/types": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, "node_modules/@typescript-eslint/typescript-estree": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", "license": "BSD-2-Clause", "dependencies": { "@typescript-eslint/types": "5.62.0", "@typescript-eslint/visitor-keys": "5.62.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", "semver": "^7.3.7", "tsutils": "^3.21.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/@typescript-eslint/utils": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", "@typescript-eslint/scope-manager": "5.62.0", "@typescript-eslint/types": "5.62.0", "@typescript-eslint/typescript-estree": "5.62.0", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" }, "engines": { "node": ">=8.0.0" } }, "node_modules/@typescript-eslint/utils/node_modules/estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, "node_modules/@typescript-eslint/visitor-keys": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", "license": "MIT", "dependencies": { "@typescript-eslint/types": "5.62.0", "eslint-visitor-keys": "^3.3.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, "node_modules/@ungap/structured-clone": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", "license": "ISC" }, "node_modules/@webassemblyjs/ast": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "license": "MIT", "dependencies": { "@webassemblyjs/helper-numbers": "1.13.2", "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "license": "MIT", "dependencies": { "@webassemblyjs/floating-point-hex-parser": "1.13.2", "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-buffer": "1.14.1", "@webassemblyjs/helper-wasm-bytecode": "1.13.2", "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-buffer": "1.14.1", "@webassemblyjs/helper-wasm-bytecode": "1.13.2", "@webassemblyjs/helper-wasm-section": "1.14.1", "@webassemblyjs/wasm-gen": "1.14.1", "@webassemblyjs/wasm-opt": "1.14.1", "@webassemblyjs/wasm-parser": "1.14.1", "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-wasm-bytecode": "1.13.2", "@webassemblyjs/ieee754": "1.13.2", "@webassemblyjs/leb128": "1.13.2", "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-buffer": "1.14.1", "@webassemblyjs/wasm-gen": "1.14.1", "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-api-error": "1.13.2", "@webassemblyjs/helper-wasm-bytecode": "1.13.2", "@webassemblyjs/ieee754": "1.13.2", "@webassemblyjs/leb128": "1.13.2", "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "license": "Apache-2.0" }, "node_modules/abab": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", "deprecated": "Use your platform's native atob() and btoa() methods instead", "license": "BSD-3-Clause" }, "node_modules/abs-svg-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/abs-svg-path/-/abs-svg-path-0.1.1.tgz", "integrity": "sha512-d8XPSGjfyzlXC3Xx891DJRyZfqk5JU0BJrDQcsWomFIV1/BIzPW5HDH5iDdWpqWaav0YVIEzT1RHTwWr0FFshA==", "license": "MIT" }, "node_modules/accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "license": "MIT", "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" }, "engines": { "node": ">= 0.6" } }, "node_modules/accepts/node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/acorn": { "version": "8.15.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "license": "MIT", "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/acorn-globals": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", "license": "MIT", "dependencies": { "acorn": "^7.1.1", "acorn-walk": "^7.1.1" } }, "node_modules/acorn-globals/node_modules/acorn": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "license": "MIT", "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/acorn-import-phases": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz", "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==", "license": "MIT", "engines": { "node": ">=10.13.0" }, "peerDependencies": { "acorn": "^8.14.0" } }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/acorn-walk": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/address": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", "license": "MIT", "engines": { "node": ">= 10.0.0" } }, "node_modules/adjust-sourcemap-loader": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", "regex-parser": "^2.2.11" }, "engines": { "node": ">=8.9" } }, "node_modules/agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "license": "MIT", "dependencies": { "debug": "4" }, "engines": { "node": ">= 6.0.0" } }, "node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/ajv-formats": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "license": "MIT", "dependencies": { "ajv": "^8.0.0" }, "peerDependencies": { "ajv": "^8.0.0" }, "peerDependenciesMeta": { "ajv": { "optional": true } } }, "node_modules/ajv-formats/node_modules/ajv": { "version": "8.17.1", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/ajv-formats/node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "license": "MIT" }, "node_modules/ajv-keywords": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "license": "MIT", "peerDependencies": { "ajv": "^6.9.1" } }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "license": "MIT", "dependencies": { "type-fest": "^0.21.3" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/ansi-escapes/node_modules/type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/ansi-html": { "version": "0.0.9", "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==", "engines": [ "node >= 0.8.0" ], "license": "Apache-2.0", "bin": { "ansi-html": "bin/ansi-html" } }, "node_modules/ansi-html-community": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "engines": [ "node >= 0.8.0" ], "license": "Apache-2.0", "bin": { "ansi-html": "bin/ansi-html" } }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/any-promise": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", "license": "MIT" }, "node_modules/anymatch": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" }, "engines": { "node": ">= 8" } }, "node_modules/arg": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", "license": "MIT" }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/aria-query": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", "license": "Apache-2.0", "engines": { "node": ">= 0.4" } }, "node_modules/array-bounds": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/array-bounds/-/array-bounds-1.0.1.tgz", "integrity": "sha512-8wdW3ZGk6UjMPJx/glyEt0sLzzwAE1bhToPsO1W2pbpR2gULyxe3BjSiuJFheP50T/GgODVPz2fuMUmIywt8cQ==", "license": "MIT" }, "node_modules/array-buffer-byte-length": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "is-array-buffer": "^3.0.5" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array-find-index": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "license": "MIT" }, "node_modules/array-includes": { "version": "3.1.9", "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.4", "define-properties": "^1.2.1", "es-abstract": "^1.24.0", "es-object-atoms": "^1.1.1", "get-intrinsic": "^1.3.0", "is-string": "^1.1.1", "math-intrinsics": "^1.1.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array-normalize": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/array-normalize/-/array-normalize-1.1.4.tgz", "integrity": "sha512-fCp0wKFLjvSPmCn4F5Tiw4M3lpMZoHlCjfcs7nNzuj3vqQQ1/a8cgB9DXcpDSn18c+coLnaW7rqfcYCvKbyJXg==", "license": "MIT", "dependencies": { "array-bounds": "^1.0.0" } }, "node_modules/array-range": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/array-range/-/array-range-1.0.1.tgz", "integrity": "sha512-shdaI1zT3CVNL2hnx9c0JMc0ZogGaxDs5e85akgHWKYa0yVbIyp06Ind3dVkTj/uuFrzaHBOyqFzo+VV6aXgtA==", "license": "MIT" }, "node_modules/array-rearrange": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/array-rearrange/-/array-rearrange-2.2.2.tgz", "integrity": "sha512-UfobP5N12Qm4Qu4fwLDIi2v6+wZsSf6snYSxAMeKhrh37YGnNWZPRmVEKc/2wfms53TLQnzfpG8wCx2Y/6NG1w==", "license": "MIT" }, "node_modules/array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/array.prototype.findlast": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array.prototype.findlastindex": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.4", "define-properties": "^1.2.1", "es-abstract": "^1.23.9", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "es-shim-unscopables": "^1.1.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array.prototype.flat": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array.prototype.flatmap": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array.prototype.reduce": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.8.tgz", "integrity": "sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.4", "define-properties": "^1.2.1", "es-abstract": "^1.23.9", "es-array-method-boxes-properly": "^1.0.0", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "is-string": "^1.1.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array.prototype.tosorted": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.3", "es-errors": "^1.3.0", "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/arraybuffer.prototype.slice": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "is-array-buffer": "^3.0.4" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/asap": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", "license": "MIT" }, "node_modules/ast-types-flow": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", "license": "MIT" }, "node_modules/async": { "version": "3.2.6", "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", "license": "MIT" }, "node_modules/async-function": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", "license": "MIT" }, "node_modules/at-least-node": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "license": "ISC", "engines": { "node": ">= 4.0.0" } }, "node_modules/autoprefixer": { "version": "10.4.21", "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz", "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/autoprefixer" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "browserslist": "^4.24.4", "caniuse-lite": "^1.0.30001702", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.1.1", "postcss-value-parser": "^4.2.0" }, "bin": { "autoprefixer": "bin/autoprefixer" }, "engines": { "node": "^10 || ^12 || >=14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/available-typed-arrays": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "license": "MIT", "dependencies": { "possible-typed-array-names": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/axe-core": { "version": "4.10.3", "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.3.tgz", "integrity": "sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==", "license": "MPL-2.0", "engines": { "node": ">=4" } }, "node_modules/axobject-query": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", "license": "Apache-2.0", "engines": { "node": ">= 0.4" } }, "node_modules/babel-jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", "license": "MIT", "dependencies": { "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^27.5.1", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "@babel/core": "^7.8.0" } }, "node_modules/babel-loader": { "version": "8.4.1", "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.4.1.tgz", "integrity": "sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==", "license": "MIT", "dependencies": { "find-cache-dir": "^3.3.1", "loader-utils": "^2.0.4", "make-dir": "^3.1.0", "schema-utils": "^2.6.5" }, "engines": { "node": ">= 8.9" }, "peerDependencies": { "@babel/core": "^7.0.0", "webpack": ">=2" } }, "node_modules/babel-loader/node_modules/schema-utils": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.5", "ajv": "^6.12.4", "ajv-keywords": "^3.5.2" }, "engines": { "node": ">= 8.9.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" } }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "license": "BSD-3-Clause", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-instrument": "^5.0.4", "test-exclude": "^6.0.0" }, "engines": { "node": ">=8" } }, "node_modules/babel-plugin-jest-hoist": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", "license": "MIT", "dependencies": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", "@types/babel__core": "^7.0.0", "@types/babel__traverse": "^7.0.6" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/babel-plugin-macros": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.5", "cosmiconfig": "^7.0.0", "resolve": "^1.19.0" }, "engines": { "node": ">=10", "npm": ">=6" } }, "node_modules/babel-plugin-named-asset-import": { "version": "0.3.8", "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", "license": "MIT", "peerDependencies": { "@babel/core": "^7.1.0" } }, "node_modules/babel-plugin-polyfill-corejs2": { "version": "0.4.14", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz", "integrity": "sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==", "license": "MIT", "dependencies": { "@babel/compat-data": "^7.27.7", "@babel/helper-define-polyfill-provider": "^0.6.5", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/babel-plugin-polyfill-corejs3": { "version": "0.13.0", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.5", "core-js-compat": "^3.43.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { "version": "0.6.5", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz", "integrity": "sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==", "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.5" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-transform-react-remove-prop-types": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", "license": "MIT" }, "node_modules/babel-preset-current-node-syntax": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", "license": "MIT", "dependencies": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-import-attributes": "^7.24.7", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", "@babel/plugin-syntax-numeric-separator": "^7.10.4", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/babel-preset-jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", "license": "MIT", "dependencies": { "babel-plugin-jest-hoist": "^27.5.1", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/babel-preset-react-app": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.1.0.tgz", "integrity": "sha512-f9B1xMdnkCIqe+2dHrJsoQFRz7reChaAHE/65SdaykPklQqhme2WaC08oD3is77x9ff98/9EazAKFDZv5rFEQg==", "license": "MIT", "dependencies": { "@babel/core": "^7.16.0", "@babel/plugin-proposal-class-properties": "^7.16.0", "@babel/plugin-proposal-decorators": "^7.16.4", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", "@babel/plugin-proposal-numeric-separator": "^7.16.0", "@babel/plugin-proposal-optional-chaining": "^7.16.0", "@babel/plugin-proposal-private-methods": "^7.16.0", "@babel/plugin-proposal-private-property-in-object": "^7.16.7", "@babel/plugin-transform-flow-strip-types": "^7.16.0", "@babel/plugin-transform-react-display-name": "^7.16.0", "@babel/plugin-transform-runtime": "^7.16.4", "@babel/preset-env": "^7.16.4", "@babel/preset-react": "^7.16.0", "@babel/preset-typescript": "^7.16.0", "@babel/runtime": "^7.16.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24" } }, "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-private-property-in-object": { "version": "7.21.11", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz", "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.", "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-create-class-features-plugin": "^7.21.0", "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "license": "MIT" }, "node_modules/base64-arraybuffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", "license": "MIT", "engines": { "node": ">= 0.6.0" } }, "node_modules/batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", "license": "MIT" }, "node_modules/bfj": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz", "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==", "license": "MIT", "dependencies": { "bluebird": "^3.7.2", "check-types": "^11.2.3", "hoopy": "^0.1.4", "jsonpath": "^1.1.1", "tryer": "^1.0.1" }, "engines": { "node": ">= 8.0.0" } }, "node_modules/big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "license": "MIT", "engines": { "node": "*" } }, "node_modules/binary-extensions": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", "license": "MIT", "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/binary-search-bounds": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/binary-search-bounds/-/binary-search-bounds-2.0.5.tgz", "integrity": "sha512-H0ea4Fd3lS1+sTEB2TgcLoK21lLhwEJzlQv3IN47pJS976Gx4zoWe0ak3q+uYh60ppQxg9F16Ri4tS1sfD4+jA==", "license": "MIT" }, "node_modules/bit-twiddle": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/bit-twiddle/-/bit-twiddle-1.0.2.tgz", "integrity": "sha512-B9UhK0DKFZhoTFcfvAzhqsjStvGJp9vYWf3+6SNTtdSQnvIgfkHbgHrg/e4+TH71N2GDu8tpmCVoyfrL1d7ntA==", "license": "MIT" }, "node_modules/bitmap-sdf": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/bitmap-sdf/-/bitmap-sdf-1.0.4.tgz", "integrity": "sha512-1G3U4n5JE6RAiALMxu0p1XmeZkTeCwGKykzsLTCqVzfSDaN6S7fKnkIkfejogz+iwqBWc0UYAIKnKHNN7pSfDg==", "license": "MIT" }, "node_modules/bl": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/bl/-/bl-2.2.1.tgz", "integrity": "sha512-6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g==", "license": "MIT", "dependencies": { "readable-stream": "^2.3.5", "safe-buffer": "^5.1.1" } }, "node_modules/bl/node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "license": "MIT" }, "node_modules/bl/node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "node_modules/bl/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "license": "MIT" }, "node_modules/bl/node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", "license": "MIT" }, "node_modules/body-parser": { "version": "1.20.3", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", "license": "MIT", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.5", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.13.0", "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" }, "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/body-parser/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/body-parser/node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, "engines": { "node": ">=0.10.0" } }, "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, "node_modules/bonjour-service": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz", "integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", "multicast-dns": "^7.2.5" } }, "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "license": "ISC" }, "node_modules/brace-expansion": { "version": "1.1.12", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "node_modules/braces": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "license": "MIT", "dependencies": { "fill-range": "^7.1.1" }, "engines": { "node": ">=8" } }, "node_modules/browser-process-hrtime": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", "license": "BSD-2-Clause" }, "node_modules/browserslist": { "version": "4.25.1", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz", "integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "caniuse-lite": "^1.0.30001726", "electron-to-chromium": "^1.5.173", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" }, "engines": { "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, "node_modules/bser": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "license": "Apache-2.0", "dependencies": { "node-int64": "^0.4.0" } }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "license": "MIT" }, "node_modules/builtin-modules": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", "license": "MIT", "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/call-bind": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/call-bind-apply-helpers": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/call-bound": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.2", "get-intrinsic": "^1.3.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/camel-case": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "license": "MIT", "dependencies": { "pascal-case": "^3.1.2", "tslib": "^2.0.3" } }, "node_modules/camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/camelcase-css": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/caniuse-api": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "license": "MIT", "dependencies": { "browserslist": "^4.0.0", "caniuse-lite": "^1.0.0", "lodash.memoize": "^4.1.2", "lodash.uniq": "^4.5.0" } }, "node_modules/caniuse-lite": { "version": "1.0.30001727", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001727.tgz", "integrity": "sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "CC-BY-4.0" }, "node_modules/canvas-fit": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/canvas-fit/-/canvas-fit-1.5.0.tgz", "integrity": "sha512-onIcjRpz69/Hx5bB5HGbYKUF2uC6QT6Gp+pfpGm3A7mPfcluSLV5v4Zu+oflDUwLdUw0rLIBhUbi0v8hM4FJQQ==", "license": "MIT", "dependencies": { "element-size": "^1.1.1" } }, "node_modules/case-sensitive-paths-webpack-plugin": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/check-types": { "version": "11.2.3", "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz", "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==", "license": "MIT" }, "node_modules/chokidar": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "license": "MIT", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "engines": { "node": ">= 8.10.0" }, "funding": { "url": "https://paulmillr.com/funding/" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "node_modules/chokidar/node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/chrome-trace-event": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", "license": "MIT", "engines": { "node": ">=6.0" } }, "node_modules/ci-info": { "version": "3.9.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/sibiraj-s" } ], "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/cjs-module-lexer": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", "license": "MIT" }, "node_modules/clamp": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/clamp/-/clamp-1.0.1.tgz", "integrity": "sha512-kgMuFyE78OC6Dyu3Dy7vcx4uy97EIbVxJB/B0eJ3bUNAkwdNcxYzgKltnyADiYwsR7SEqkkUPsEUT//OVS6XMA==", "license": "MIT" }, "node_modules/clean-css": { "version": "5.3.3", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", "license": "MIT", "dependencies": { "source-map": "~0.6.0" }, "engines": { "node": ">= 10.0" } }, "node_modules/clean-css/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" } }, "node_modules/co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "license": "MIT", "engines": { "iojs": ">= 1.0.0", "node": ">= 0.12.0" } }, "node_modules/coa": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", "license": "MIT", "dependencies": { "@types/q": "^1.5.1", "chalk": "^2.4.1", "q": "^1.1.2" }, "engines": { "node": ">= 4.0" } }, "node_modules/coa/node_modules/ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, "engines": { "node": ">=4" } }, "node_modules/coa/node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" }, "engines": { "node": ">=4" } }, "node_modules/coa/node_modules/color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "license": "MIT", "dependencies": { "color-name": "1.1.3" } }, "node_modules/coa/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "license": "MIT" }, "node_modules/coa/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/coa/node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/coa/node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/collect-v8-coverage": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", "license": "MIT" }, "node_modules/color-alpha": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/color-alpha/-/color-alpha-1.0.4.tgz", "integrity": "sha512-lr8/t5NPozTSqli+duAN+x+no/2WaKTeWvxhHGN+aXT6AJ8vPlzLa7UriyjWak0pSC2jHol9JgjBYnnHsGha9A==", "license": "MIT", "dependencies": { "color-parse": "^1.3.8" } }, "node_modules/color-alpha/node_modules/color-parse": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-1.4.3.tgz", "integrity": "sha512-BADfVl/FHkQkyo8sRBwMYBqemqsgnu7JZAwUgvBvuwwuNUZAhSvLTbsEErS5bQXzOjDR0dWzJ4vXN2Q+QoPx0A==", "license": "MIT", "dependencies": { "color-name": "^1.0.0" } }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/color-id": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/color-id/-/color-id-1.1.0.tgz", "integrity": "sha512-2iRtAn6dC/6/G7bBIo0uupVrIne1NsQJvJxZOBCzQOfk7jRq97feaDZ3RdzuHakRXXnHGNwglto3pqtRx1sX0g==", "license": "MIT", "dependencies": { "clamp": "^1.0.1" } }, "node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "license": "MIT" }, "node_modules/color-normalize": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/color-normalize/-/color-normalize-1.5.0.tgz", "integrity": "sha512-rUT/HDXMr6RFffrR53oX3HGWkDOP9goSAQGBkUaAYKjOE2JxozccdGyufageWDlInRAjm/jYPrf/Y38oa+7obw==", "license": "MIT", "dependencies": { "clamp": "^1.0.1", "color-rgba": "^2.1.1", "dtype": "^2.0.0" } }, "node_modules/color-normalize/node_modules/color-parse": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-1.4.3.tgz", "integrity": "sha512-BADfVl/FHkQkyo8sRBwMYBqemqsgnu7JZAwUgvBvuwwuNUZAhSvLTbsEErS5bQXzOjDR0dWzJ4vXN2Q+QoPx0A==", "license": "MIT", "dependencies": { "color-name": "^1.0.0" } }, "node_modules/color-normalize/node_modules/color-rgba": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/color-rgba/-/color-rgba-2.4.0.tgz", "integrity": "sha512-Nti4qbzr/z2LbUWySr7H9dk3Rl7gZt7ihHAxlgT4Ho90EXWkjtkL1avTleu9yeGuqrt/chxTB6GKK8nZZ6V0+Q==", "license": "MIT", "dependencies": { "color-parse": "^1.4.2", "color-space": "^2.0.0" } }, "node_modules/color-parse": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.0.tgz", "integrity": "sha512-g2Z+QnWsdHLppAbrpcFWo629kLOnOPtpxYV69GCqm92gqSgyXbzlfyN3MXs0412fPBkFmiuS+rXposgBgBa6Kg==", "license": "MIT", "dependencies": { "color-name": "^1.0.0" } }, "node_modules/color-rgba": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/color-rgba/-/color-rgba-3.0.0.tgz", "integrity": "sha512-PPwZYkEY3M2THEHHV6Y95sGUie77S7X8v+h1r6LSAPF3/LL2xJ8duUXSrkic31Nzc4odPwHgUbiX/XuTYzQHQg==", "license": "MIT", "dependencies": { "color-parse": "^2.0.0", "color-space": "^2.0.0" } }, "node_modules/color-space": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/color-space/-/color-space-2.3.2.tgz", "integrity": "sha512-BcKnbOEsOarCwyoLstcoEztwT0IJxqqQkNwDuA3a65sICvvHL2yoeV13psoDFh5IuiOMnIOKdQDwB4Mk3BypiA==", "license": "Unlicense" }, "node_modules/colord": { "version": "2.9.3", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", "license": "MIT" }, "node_modules/colorette": { "version": "2.0.20", "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "license": "MIT" }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/commander": { "version": "8.3.0", "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "license": "MIT", "engines": { "node": ">= 12" } }, "node_modules/common-tags": { "version": "1.8.2", "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", "license": "MIT", "engines": { "node": ">=4.0.0" } }, "node_modules/commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "license": "MIT" }, "node_modules/compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "license": "MIT", "dependencies": { "mime-db": ">= 1.43.0 < 2" }, "engines": { "node": ">= 0.6" } }, "node_modules/compression": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", "license": "MIT", "dependencies": { "bytes": "3.1.2", "compressible": "~2.0.18", "debug": "2.6.9", "negotiator": "~0.6.4", "on-headers": "~1.1.0", "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/compression/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/compression/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "license": "MIT" }, "node_modules/concat-stream": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "engines": [ "node >= 0.8" ], "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^2.2.2", "typedarray": "^0.0.6" } }, "node_modules/concat-stream/node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "license": "MIT" }, "node_modules/concat-stream/node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "node_modules/concat-stream/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "license": "MIT" }, "node_modules/concat-stream/node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/confusing-browser-globals": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", "license": "MIT" }, "node_modules/connect-history-api-fallback": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "license": "MIT", "engines": { "node": ">=0.8" } }, "node_modules/content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "license": "MIT", "dependencies": { "safe-buffer": "5.2.1" }, "engines": { "node": ">= 0.6" } }, "node_modules/content-type": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "license": "MIT" }, "node_modules/cookie": { "version": "0.7.1", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "license": "MIT" }, "node_modules/core-js": { "version": "3.44.0", "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.44.0.tgz", "integrity": "sha512-aFCtd4l6GvAXwVEh3XbbVqJGHDJt0OZRa+5ePGx3LLwi12WfexqQxcsohb2wgsa/92xtl19Hd66G/L+TaAxDMw==", "hasInstallScript": true, "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, "node_modules/core-js-compat": { "version": "3.44.0", "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.44.0.tgz", "integrity": "sha512-JepmAj2zfl6ogy34qfWtcE7nHKAJnKsQFRn++scjVS2bZFllwptzw61BZcZFYBPpUznLfAvh0LGhxKppk04ClA==", "license": "MIT", "dependencies": { "browserslist": "^4.25.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, "node_modules/core-js-pure": { "version": "3.44.0", "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.44.0.tgz", "integrity": "sha512-gvMQAGB4dfVUxpYD0k3Fq8J+n5bB6Ytl15lqlZrOIXFzxOhtPaObfkQGHtMRdyjIf7z2IeNULwi1jEwyS+ltKQ==", "hasInstallScript": true, "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", "license": "MIT" }, "node_modules/cosmiconfig": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "license": "MIT", "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", "parse-json": "^5.0.0", "path-type": "^4.0.0", "yaml": "^1.10.0" }, "engines": { "node": ">=10" } }, "node_modules/country-regex": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/country-regex/-/country-regex-1.1.0.tgz", "integrity": "sha512-iSPlClZP8vX7MC3/u6s3lrDuoQyhQukh5LyABJ3hvfzbQ3Yyayd4fp04zjLnfi267B/B2FkumcWWgrbban7sSA==", "license": "MIT" }, "node_modules/cross-spawn": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" }, "engines": { "node": ">= 8" } }, "node_modules/crypto-random-string": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/css-blank-pseudo": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", "license": "CC0-1.0", "dependencies": { "postcss-selector-parser": "^6.0.9" }, "bin": { "css-blank-pseudo": "dist/cli.cjs" }, "engines": { "node": "^12 || ^14 || >=16" }, "peerDependencies": { "postcss": "^8.4" } }, "node_modules/css-declaration-sorter": { "version": "6.4.1", "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", "license": "ISC", "engines": { "node": "^10 || ^12 || >=14" }, "peerDependencies": { "postcss": "^8.0.9" } }, "node_modules/css-font": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/css-font/-/css-font-1.2.0.tgz", "integrity": "sha512-V4U4Wps4dPDACJ4WpgofJ2RT5Yqwe1lEH6wlOOaIxMi0gTjdIijsc5FmxQlZ7ZZyKQkkutqqvULOp07l9c7ssA==", "license": "MIT", "dependencies": { "css-font-size-keywords": "^1.0.0", "css-font-stretch-keywords": "^1.0.1", "css-font-style-keywords": "^1.0.1", "css-font-weight-keywords": "^1.0.0", "css-global-keywords": "^1.0.1", "css-system-font-keywords": "^1.0.0", "pick-by-alias": "^1.2.0", "string-split-by": "^1.0.0", "unquote": "^1.1.0" } }, "node_modules/css-font-size-keywords": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/css-font-size-keywords/-/css-font-size-keywords-1.0.0.tgz", "integrity": "sha512-Q+svMDbMlelgCfH/RVDKtTDaf5021O486ZThQPIpahnIjUkMUslC+WuOQSWTgGSrNCH08Y7tYNEmmy0hkfMI8Q==", "license": "MIT" }, "node_modules/css-font-stretch-keywords": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/css-font-stretch-keywords/-/css-font-stretch-keywords-1.0.1.tgz", "integrity": "sha512-KmugPO2BNqoyp9zmBIUGwt58UQSfyk1X5DbOlkb2pckDXFSAfjsD5wenb88fNrD6fvS+vu90a/tsPpb9vb0SLg==", "license": "MIT" }, "node_modules/css-font-style-keywords": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/css-font-style-keywords/-/css-font-style-keywords-1.0.1.tgz", "integrity": "sha512-0Fn0aTpcDktnR1RzaBYorIxQily85M2KXRpzmxQPgh8pxUN9Fcn00I8u9I3grNr1QXVgCl9T5Imx0ZwKU973Vg==", "license": "MIT" }, "node_modules/css-font-weight-keywords": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/css-font-weight-keywords/-/css-font-weight-keywords-1.0.0.tgz", "integrity": "sha512-5So8/NH+oDD+EzsnF4iaG4ZFHQ3vaViePkL1ZbZ5iC/KrsCY+WHq/lvOgrtmuOQ9pBBZ1ADGpaf+A4lj1Z9eYA==", "license": "MIT" }, "node_modules/css-global-keywords": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/css-global-keywords/-/css-global-keywords-1.0.1.tgz", "integrity": "sha512-X1xgQhkZ9n94WDwntqst5D/FKkmiU0GlJSFZSV3kLvyJ1WC5VeyoXDOuleUD+SIuH9C7W05is++0Woh0CGfKjQ==", "license": "MIT" }, "node_modules/css-has-pseudo": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", "license": "CC0-1.0", "dependencies": { "postcss-selector-parser": "^6.0.9" }, "bin": { "css-has-pseudo": "dist/cli.cjs" }, "engines": { "node": "^12 || ^14 || >=16" }, "peerDependencies": { "postcss": "^8.4" } }, "node_modules/css-loader": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", "license": "MIT", "dependencies": { "icss-utils": "^5.1.0", "postcss": "^8.4.33", "postcss-modules-extract-imports": "^3.1.0", "postcss-modules-local-by-default": "^4.0.5", "postcss-modules-scope": "^3.2.0", "postcss-modules-values": "^4.0.0", "postcss-value-parser": "^4.2.0", "semver": "^7.5.4" }, "engines": { "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "@rspack/core": "0.x || 1.x", "webpack": "^5.0.0" }, "peerDependenciesMeta": { "@rspack/core": { "optional": true }, "webpack": { "optional": true } } }, "node_modules/css-minimizer-webpack-plugin": { "version": "3.4.1", "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", "license": "MIT", "dependencies": { "cssnano": "^5.0.6", "jest-worker": "^27.0.2", "postcss": "^8.3.5", "schema-utils": "^4.0.0", "serialize-javascript": "^6.0.0", "source-map": "^0.6.1" }, "engines": { "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^5.0.0" }, "peerDependenciesMeta": { "@parcel/css": { "optional": true }, "clean-css": { "optional": true }, "csso": { "optional": true }, "esbuild": { "optional": true } } }, "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/css-prefers-color-scheme": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", "license": "CC0-1.0", "bin": { "css-prefers-color-scheme": "dist/cli.cjs" }, "engines": { "node": "^12 || ^14 || >=16" }, "peerDependencies": { "postcss": "^8.4" } }, "node_modules/css-select": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.0.1", "domhandler": "^4.3.1", "domutils": "^2.8.0", "nth-check": "^2.0.1" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/css-select-base-adapter": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", "license": "MIT" }, "node_modules/css-system-font-keywords": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/css-system-font-keywords/-/css-system-font-keywords-1.0.0.tgz", "integrity": "sha512-1umTtVd/fXS25ftfjB71eASCrYhilmEsvDEI6wG/QplnmlfmVM5HkZ/ZX46DT5K3eblFPgLUHt5BRCb0YXkSFA==", "license": "MIT" }, "node_modules/css-tree": { "version": "1.0.0-alpha.37", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", "license": "MIT", "dependencies": { "mdn-data": "2.0.4", "source-map": "^0.6.1" }, "engines": { "node": ">=8.0.0" } }, "node_modules/css-tree/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/css-what": { "version": "6.2.2", "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", "license": "BSD-2-Clause", "engines": { "node": ">= 6" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/css.escape": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", "license": "MIT" }, "node_modules/csscolorparser": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/csscolorparser/-/csscolorparser-1.0.3.tgz", "integrity": "sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w==", "license": "MIT" }, "node_modules/cssdb": { "version": "7.11.2", "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.11.2.tgz", "integrity": "sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/csstools" }, { "type": "github", "url": "https://github.com/sponsors/csstools" } ], "license": "CC0-1.0" }, "node_modules/cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "license": "MIT", "bin": { "cssesc": "bin/cssesc" }, "engines": { "node": ">=4" } }, "node_modules/cssnano": { "version": "5.1.15", "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", "license": "MIT", "dependencies": { "cssnano-preset-default": "^5.2.14", "lilconfig": "^2.0.3", "yaml": "^1.10.2" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/cssnano" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/cssnano-preset-default": { "version": "5.2.14", "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", "license": "MIT", "dependencies": { "css-declaration-sorter": "^6.3.1", "cssnano-utils": "^3.1.0", "postcss-calc": "^8.2.3", "postcss-colormin": "^5.3.1", "postcss-convert-values": "^5.1.3", "postcss-discard-comments": "^5.1.2", "postcss-discard-duplicates": "^5.1.0", "postcss-discard-empty": "^5.1.1", "postcss-discard-overridden": "^5.1.0", "postcss-merge-longhand": "^5.1.7", "postcss-merge-rules": "^5.1.4", "postcss-minify-font-values": "^5.1.0", "postcss-minify-gradients": "^5.1.1", "postcss-minify-params": "^5.1.4", "postcss-minify-selectors": "^5.2.1", "postcss-normalize-charset": "^5.1.0", "postcss-normalize-display-values": "^5.1.0", "postcss-normalize-positions": "^5.1.1", "postcss-normalize-repeat-style": "^5.1.1", "postcss-normalize-string": "^5.1.0", "postcss-normalize-timing-functions": "^5.1.0", "postcss-normalize-unicode": "^5.1.1", "postcss-normalize-url": "^5.1.0", "postcss-normalize-whitespace": "^5.1.1", "postcss-ordered-values": "^5.1.3", "postcss-reduce-initial": "^5.1.2", "postcss-reduce-transforms": "^5.1.0", "postcss-svgo": "^5.1.0", "postcss-unique-selectors": "^5.1.1" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/cssnano-utils": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/csso": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", "license": "MIT", "dependencies": { "css-tree": "^1.1.2" }, "engines": { "node": ">=8.0.0" } }, "node_modules/csso/node_modules/css-tree": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", "license": "MIT", "dependencies": { "mdn-data": "2.0.14", "source-map": "^0.6.1" }, "engines": { "node": ">=8.0.0" } }, "node_modules/csso/node_modules/mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", "license": "CC0-1.0" }, "node_modules/csso/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/cssom": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", "license": "MIT" }, "node_modules/cssstyle": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "license": "MIT", "dependencies": { "cssom": "~0.3.6" }, "engines": { "node": ">=8" } }, "node_modules/cssstyle/node_modules/cssom": { "version": "0.3.8", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", "license": "MIT" }, "node_modules/d": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz", "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==", "license": "ISC", "dependencies": { "es5-ext": "^0.10.64", "type": "^2.7.2" }, "engines": { "node": ">=0.12" } }, "node_modules/d3-array": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==", "license": "BSD-3-Clause" }, "node_modules/d3-collection": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz", "integrity": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==", "license": "BSD-3-Clause" }, "node_modules/d3-color": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/d3-dispatch": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.6.tgz", "integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==", "license": "BSD-3-Clause" }, "node_modules/d3-force": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-1.2.1.tgz", "integrity": "sha512-HHvehyaiUlVo5CxBJ0yF/xny4xoaxFxDnBXNvNcfW9adORGZfyNF1dj6DGLKyk4Yh3brP/1h3rnDzdIAwL08zg==", "license": "BSD-3-Clause", "dependencies": { "d3-collection": "1", "d3-dispatch": "1", "d3-quadtree": "1", "d3-timer": "1" } }, "node_modules/d3-format": { "version": "1.4.5", "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.4.5.tgz", "integrity": "sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==", "license": "BSD-3-Clause" }, "node_modules/d3-geo": { "version": "1.12.1", "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.12.1.tgz", "integrity": "sha512-XG4d1c/UJSEX9NfU02KwBL6BYPj8YKHxgBEw5om2ZnTRSbIcego6dhHwcxuSR3clxh0EpE38os1DVPOmnYtTPg==", "license": "BSD-3-Clause", "dependencies": { "d3-array": "1" } }, "node_modules/d3-geo-projection": { "version": "2.9.0", "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-2.9.0.tgz", "integrity": "sha512-ZULvK/zBn87of5rWAfFMc9mJOipeSo57O+BBitsKIXmU4rTVAnX1kSsJkE0R+TxY8pGNoM1nbyRRE7GYHhdOEQ==", "license": "BSD-3-Clause", "dependencies": { "commander": "2", "d3-array": "1", "d3-geo": "^1.12.0", "resolve": "^1.1.10" }, "bin": { "geo2svg": "bin/geo2svg", "geograticule": "bin/geograticule", "geoproject": "bin/geoproject", "geoquantize": "bin/geoquantize", "geostitch": "bin/geostitch" } }, "node_modules/d3-geo-projection/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "license": "MIT" }, "node_modules/d3-hierarchy": { "version": "1.1.9", "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz", "integrity": "sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ==", "license": "BSD-3-Clause" }, "node_modules/d3-interpolate": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", "license": "ISC", "dependencies": { "d3-color": "1 - 3" }, "engines": { "node": ">=12" } }, "node_modules/d3-path": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.9.tgz", "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==", "license": "BSD-3-Clause" }, "node_modules/d3-quadtree": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.7.tgz", "integrity": "sha512-RKPAeXnkC59IDGD0Wu5mANy0Q2V28L+fNe65pOCXVdVuTJS3WPKaJlFHer32Rbh9gIo9qMuJXio8ra4+YmIymA==", "license": "BSD-3-Clause" }, "node_modules/d3-shape": { "version": "1.3.7", "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.7.tgz", "integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==", "license": "BSD-3-Clause", "dependencies": { "d3-path": "1" } }, "node_modules/d3-time": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-1.1.0.tgz", "integrity": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==", "license": "BSD-3-Clause" }, "node_modules/d3-time-format": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.3.0.tgz", "integrity": "sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==", "license": "BSD-3-Clause", "dependencies": { "d3-time": "1" } }, "node_modules/d3-timer": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.10.tgz", "integrity": "sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw==", "license": "BSD-3-Clause" }, "node_modules/damerau-levenshtein": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", "license": "BSD-2-Clause" }, "node_modules/data-urls": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", "license": "MIT", "dependencies": { "abab": "^2.0.3", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.0.0" }, "engines": { "node": ">=10" } }, "node_modules/data-view-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/data-view-byte-length": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/inspect-js" } }, "node_modules/data-view-byte-offset": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/debug": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "license": "MIT", "dependencies": { "ms": "^2.1.3" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/decimal.js": { "version": "10.6.0", "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz", "integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==", "license": "MIT" }, "node_modules/dedent": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", "license": "MIT" }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "license": "MIT" }, "node_modules/deepmerge": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/default-gateway": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", "license": "BSD-2-Clause", "dependencies": { "execa": "^5.0.0" }, "engines": { "node": ">= 10" } }, "node_modules/define-data-property": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "license": "MIT", "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/define-lazy-prop": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/define-properties": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "license": "MIT", "dependencies": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/defined": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz", "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==", "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/dequal": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "license": "MIT", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/detect-kerning": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/detect-kerning/-/detect-kerning-2.1.2.tgz", "integrity": "sha512-I3JIbrnKPAntNLl1I6TpSQQdQ4AutYzv/sKMFKbepawV/hlH0GmYKhUoOEMd4xqaUHT+Bm0f4127lh5qs1m1tw==", "license": "MIT" }, "node_modules/detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/detect-node": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "license": "MIT" }, "node_modules/detect-port-alt": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", "license": "MIT", "dependencies": { "address": "^1.0.1", "debug": "^2.6.0" }, "bin": { "detect": "bin/detect-port", "detect-port": "bin/detect-port" }, "engines": { "node": ">= 4.2.1" } }, "node_modules/detect-port-alt/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/detect-port-alt/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, "node_modules/didyoumean": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", "license": "Apache-2.0" }, "node_modules/diff-sequences": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", "license": "MIT", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "license": "MIT", "dependencies": { "path-type": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/dlv": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", "license": "MIT" }, "node_modules/dns-packet": { "version": "5.6.1", "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "license": "MIT", "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" }, "engines": { "node": ">=6" } }, "node_modules/doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, "engines": { "node": ">=6.0.0" } }, "node_modules/dom-accessibility-api": { "version": "0.5.16", "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", "license": "MIT" }, "node_modules/dom-converter": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", "license": "MIT", "dependencies": { "utila": "~0.4" } }, "node_modules/dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/fb55" } ], "license": "BSD-2-Clause" }, "node_modules/domexception": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", "deprecated": "Use your platform's native DOMException instead", "license": "MIT", "dependencies": { "webidl-conversions": "^5.0.0" }, "engines": { "node": ">=8" } }, "node_modules/domexception/node_modules/webidl-conversions": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", "license": "BSD-2-Clause", "engines": { "node": ">=8" } }, "node_modules/domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.2.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/dot-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" } }, "node_modules/dotenv": { "version": "10.0.0", "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", "license": "BSD-2-Clause", "engines": { "node": ">=10" } }, "node_modules/dotenv-expand": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", "license": "BSD-2-Clause" }, "node_modules/draw-svg-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/draw-svg-path/-/draw-svg-path-1.0.0.tgz", "integrity": "sha512-P8j3IHxcgRMcY6sDzr0QvJDLzBnJJqpTG33UZ2Pvp8rw0apCHhJCWqYprqrXjrgHnJ6tuhP1iTJSAodPDHxwkg==", "license": "MIT", "dependencies": { "abs-svg-path": "~0.1.1", "normalize-svg-path": "~0.1.0" } }, "node_modules/dtype": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/dtype/-/dtype-2.0.0.tgz", "integrity": "sha512-s2YVcLKdFGS0hpFqJaTwscsyt0E8nNFdmo73Ocd81xNPj4URI4rj6D60A+vFMIw7BXWlb4yRkEwfBqcZzPGiZg==", "license": "MIT", "engines": { "node": ">= 0.8.0" } }, "node_modules/dunder-proto": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" }, "engines": { "node": ">= 0.4" } }, "node_modules/dup": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dup/-/dup-1.0.0.tgz", "integrity": "sha512-Bz5jxMMC0wgp23Zm15ip1x8IhYRqJvF3nFC0UInJUDkN1z4uNPk9jTnfCUJXbOGiQ1JbXLQsiV41Fb+HXcj5BA==", "license": "MIT" }, "node_modules/duplexer": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "license": "MIT" }, "node_modules/duplexify": { "version": "3.7.1", "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", "license": "MIT", "dependencies": { "end-of-stream": "^1.0.0", "inherits": "^2.0.1", "readable-stream": "^2.0.0", "stream-shift": "^1.0.0" } }, "node_modules/duplexify/node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "license": "MIT" }, "node_modules/duplexify/node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "node_modules/duplexify/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "license": "MIT" }, "node_modules/duplexify/node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/earcut": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==", "license": "ISC" }, "node_modules/eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", "license": "MIT" }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "license": "MIT" }, "node_modules/ejs": { "version": "3.1.10", "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", "license": "Apache-2.0", "dependencies": { "jake": "^10.8.5" }, "bin": { "ejs": "bin/cli.js" }, "engines": { "node": ">=0.10.0" } }, "node_modules/electron-to-chromium": { "version": "1.5.191", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.191.tgz", "integrity": "sha512-xcwe9ELcuxYLUFqZZxL19Z6HVKcvNkIwhbHUz7L3us6u12yR+7uY89dSl570f/IqNthx8dAw3tojG7i4Ni4tDA==", "license": "ISC" }, "node_modules/element-size": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/element-size/-/element-size-1.1.1.tgz", "integrity": "sha512-eaN+GMOq/Q+BIWy0ybsgpcYImjGIdNLyjLFJU4XsLHXYQao5jCNb36GyN6C2qwmDDYSfIBmKpPpr4VnBdLCsPQ==", "license": "MIT" }, "node_modules/elementary-circuits-directed-graph": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/elementary-circuits-directed-graph/-/elementary-circuits-directed-graph-1.3.1.tgz", "integrity": "sha512-ZEiB5qkn2adYmpXGnJKkxT8uJHlW/mxmBpmeqawEHzPxh9HkLD4/1mFYX5l0On+f6rcPIt8/EWlRU2Vo3fX6dQ==", "license": "MIT", "dependencies": { "strongly-connected-components": "^1.0.1" } }, "node_modules/emittery": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, "node_modules/emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "license": "MIT" }, "node_modules/emojis-list": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/encodeurl": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/end-of-stream": { "version": "1.4.5", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", "license": "MIT", "dependencies": { "once": "^1.4.0" } }, "node_modules/enhanced-resolve": { "version": "5.18.2", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.2.tgz", "integrity": "sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==", "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" }, "engines": { "node": ">=10.13.0" } }, "node_modules/entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" } }, "node_modules/error-stack-parser": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", "license": "MIT", "dependencies": { "stackframe": "^1.3.4" } }, "node_modules/es-abstract": { "version": "1.24.0", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.2", "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "data-view-buffer": "^1.0.2", "data-view-byte-length": "^1.0.2", "data-view-byte-offset": "^1.0.1", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "es-set-tostringtag": "^2.1.0", "es-to-primitive": "^1.3.0", "function.prototype.name": "^1.1.8", "get-intrinsic": "^1.3.0", "get-proto": "^1.0.1", "get-symbol-description": "^1.1.0", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "internal-slot": "^1.1.0", "is-array-buffer": "^3.0.5", "is-callable": "^1.2.7", "is-data-view": "^1.0.2", "is-negative-zero": "^2.0.3", "is-regex": "^1.2.1", "is-set": "^2.0.3", "is-shared-array-buffer": "^1.0.4", "is-string": "^1.1.1", "is-typed-array": "^1.1.15", "is-weakref": "^1.1.1", "math-intrinsics": "^1.1.0", "object-inspect": "^1.13.4", "object-keys": "^1.1.1", "object.assign": "^4.1.7", "own-keys": "^1.0.1", "regexp.prototype.flags": "^1.5.4", "safe-array-concat": "^1.1.3", "safe-push-apply": "^1.0.0", "safe-regex-test": "^1.1.0", "set-proto": "^1.0.0", "stop-iteration-iterator": "^1.1.0", "string.prototype.trim": "^1.2.10", "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.3", "typed-array-byte-length": "^1.0.3", "typed-array-byte-offset": "^1.0.4", "typed-array-length": "^1.0.7", "unbox-primitive": "^1.1.0", "which-typed-array": "^1.1.19" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/es-array-method-boxes-properly": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", "license": "MIT" }, "node_modules/es-define-property": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/es-errors": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/es-iterator-helpers": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz", "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-abstract": "^1.23.6", "es-errors": "^1.3.0", "es-set-tostringtag": "^2.0.3", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.6", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "internal-slot": "^1.1.0", "iterator.prototype": "^1.1.4", "safe-array-concat": "^1.1.3" }, "engines": { "node": ">= 0.4" } }, "node_modules/es-module-lexer": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", "license": "MIT" }, "node_modules/es-object-atoms": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0" }, "engines": { "node": ">= 0.4" } }, "node_modules/es-set-tostringtag": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/es-shim-unscopables": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", "license": "MIT", "dependencies": { "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/es-to-primitive": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", "license": "MIT", "dependencies": { "is-callable": "^1.2.7", "is-date-object": "^1.0.5", "is-symbol": "^1.0.4" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/es5-ext": { "version": "0.10.64", "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz", "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==", "hasInstallScript": true, "license": "ISC", "dependencies": { "es6-iterator": "^2.0.3", "es6-symbol": "^3.1.3", "esniff": "^2.0.1", "next-tick": "^1.1.0" }, "engines": { "node": ">=0.10" } }, "node_modules/es6-iterator": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", "license": "MIT", "dependencies": { "d": "1", "es5-ext": "^0.10.35", "es6-symbol": "^3.1.1" } }, "node_modules/es6-symbol": { "version": "3.1.4", "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz", "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==", "license": "ISC", "dependencies": { "d": "^1.0.2", "ext": "^1.7.0" }, "engines": { "node": ">=0.12" } }, "node_modules/es6-weak-map": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", "license": "ISC", "dependencies": { "d": "1", "es5-ext": "^0.10.46", "es6-iterator": "^2.0.3", "es6-symbol": "^3.1.1" } }, "node_modules/escalade": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "license": "MIT" }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/escodegen": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", "license": "BSD-2-Clause", "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", "esutils": "^2.0.2" }, "bin": { "escodegen": "bin/escodegen.js", "esgenerate": "bin/esgenerate.js" }, "engines": { "node": ">=6.0" }, "optionalDependencies": { "source-map": "~0.6.1" } }, "node_modules/escodegen/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "optional": true, "engines": { "node": ">=0.10.0" } }, "node_modules/eslint": { "version": "8.57.1", "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", "@eslint/eslintrc": "^2.1.4", "@eslint/js": "8.57.1", "@humanwhocodes/config-array": "^0.13.0", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "@ungap/structured-clone": "^1.2.0", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", "eslint-scope": "^7.2.2", "eslint-visitor-keys": "^3.4.3", "espree": "^9.6.1", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "globals": "^13.19.0", "graphemer": "^1.4.0", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "is-path-inside": "^3.0.3", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3", "strip-ansi": "^6.0.1", "text-table": "^0.2.0" }, "bin": { "eslint": "bin/eslint.js" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-config-react-app": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", "license": "MIT", "dependencies": { "@babel/core": "^7.16.0", "@babel/eslint-parser": "^7.16.3", "@rushstack/eslint-patch": "^1.1.0", "@typescript-eslint/eslint-plugin": "^5.5.0", "@typescript-eslint/parser": "^5.5.0", "babel-preset-react-app": "^10.0.1", "confusing-browser-globals": "^1.0.11", "eslint-plugin-flowtype": "^8.0.3", "eslint-plugin-import": "^2.25.3", "eslint-plugin-jest": "^25.3.0", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-react": "^7.27.1", "eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-testing-library": "^5.0.1" }, "engines": { "node": ">=14.0.0" }, "peerDependencies": { "eslint": "^8.0.0" } }, "node_modules/eslint-import-resolver-node": { "version": "0.3.9", "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", "license": "MIT", "dependencies": { "debug": "^3.2.7", "is-core-module": "^2.13.0", "resolve": "^1.22.4" } }, "node_modules/eslint-import-resolver-node/node_modules/debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/eslint-module-utils": { "version": "2.12.1", "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz", "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==", "license": "MIT", "dependencies": { "debug": "^3.2.7" }, "engines": { "node": ">=4" }, "peerDependenciesMeta": { "eslint": { "optional": true } } }, "node_modules/eslint-module-utils/node_modules/debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/eslint-plugin-flowtype": { "version": "8.0.3", "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", "license": "BSD-3-Clause", "dependencies": { "lodash": "^4.17.21", "string-natural-compare": "^3.0.1" }, "engines": { "node": ">=12.0.0" }, "peerDependencies": { "@babel/plugin-syntax-flow": "^7.14.5", "@babel/plugin-transform-react-jsx": "^7.14.9", "eslint": "^8.1.0" } }, "node_modules/eslint-plugin-import": { "version": "2.32.0", "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", "license": "MIT", "dependencies": { "@rtsao/scc": "^1.1.0", "array-includes": "^3.1.9", "array.prototype.findlastindex": "^1.2.6", "array.prototype.flat": "^1.3.3", "array.prototype.flatmap": "^1.3.3", "debug": "^3.2.7", "doctrine": "^2.1.0", "eslint-import-resolver-node": "^0.3.9", "eslint-module-utils": "^2.12.1", "hasown": "^2.0.2", "is-core-module": "^2.16.1", "is-glob": "^4.0.3", "minimatch": "^3.1.2", "object.fromentries": "^2.0.8", "object.groupby": "^1.0.3", "object.values": "^1.2.1", "semver": "^6.3.1", "string.prototype.trimend": "^1.0.9", "tsconfig-paths": "^3.15.0" }, "engines": { "node": ">=4" }, "peerDependencies": { "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" } }, "node_modules/eslint-plugin-import/node_modules/debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/eslint-plugin-import/node_modules/doctrine": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, "engines": { "node": ">=0.10.0" } }, "node_modules/eslint-plugin-import/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/eslint-plugin-jest": { "version": "25.7.0", "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", "license": "MIT", "dependencies": { "@typescript-eslint/experimental-utils": "^5.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" }, "peerDependencies": { "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "@typescript-eslint/eslint-plugin": { "optional": true }, "jest": { "optional": true } } }, "node_modules/eslint-plugin-jsx-a11y": { "version": "6.10.2", "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", "license": "MIT", "dependencies": { "aria-query": "^5.3.2", "array-includes": "^3.1.8", "array.prototype.flatmap": "^1.3.2", "ast-types-flow": "^0.0.8", "axe-core": "^4.10.0", "axobject-query": "^4.1.0", "damerau-levenshtein": "^1.0.8", "emoji-regex": "^9.2.2", "hasown": "^2.0.2", "jsx-ast-utils": "^3.3.5", "language-tags": "^1.0.9", "minimatch": "^3.1.2", "object.fromentries": "^2.0.8", "safe-regex-test": "^1.0.3", "string.prototype.includes": "^2.0.1" }, "engines": { "node": ">=4.0" }, "peerDependencies": { "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" } }, "node_modules/eslint-plugin-react": { "version": "7.37.5", "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", "license": "MIT", "dependencies": { "array-includes": "^3.1.8", "array.prototype.findlast": "^1.2.5", "array.prototype.flatmap": "^1.3.3", "array.prototype.tosorted": "^1.1.4", "doctrine": "^2.1.0", "es-iterator-helpers": "^1.2.1", "estraverse": "^5.3.0", "hasown": "^2.0.2", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", "object.entries": "^1.1.9", "object.fromentries": "^2.0.8", "object.values": "^1.2.1", "prop-types": "^15.8.1", "resolve": "^2.0.0-next.5", "semver": "^6.3.1", "string.prototype.matchall": "^4.0.12", "string.prototype.repeat": "^1.0.0" }, "engines": { "node": ">=4" }, "peerDependencies": { "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" } }, "node_modules/eslint-plugin-react-hooks": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", "license": "MIT", "engines": { "node": ">=10" }, "peerDependencies": { "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" } }, "node_modules/eslint-plugin-react/node_modules/doctrine": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, "engines": { "node": ">=0.10.0" } }, "node_modules/eslint-plugin-react/node_modules/resolve": { "version": "2.0.0-next.5", "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", "license": "MIT", "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/eslint-plugin-react/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/eslint-plugin-testing-library": { "version": "5.11.1", "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", "license": "MIT", "dependencies": { "@typescript-eslint/utils": "^5.58.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0", "npm": ">=6" }, "peerDependencies": { "eslint": "^7.5.0 || ^8.0.0" } }, "node_modules/eslint-scope": { "version": "7.2.2", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-visitor-keys": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-webpack-plugin": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", "license": "MIT", "dependencies": { "@types/eslint": "^7.29.0 || ^8.4.1", "jest-worker": "^28.0.2", "micromatch": "^4.0.5", "normalize-path": "^3.0.0", "schema-utils": "^4.0.0" }, "engines": { "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "eslint": "^7.0.0 || ^8.0.0", "webpack": "^5.0.0" } }, "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", "license": "MIT", "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/eslint-webpack-plugin/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/eslint/node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "license": "Python-2.0" }, "node_modules/eslint/node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint/node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "node_modules/eslint/node_modules/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint/node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint/node_modules/p-locate": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/esniff": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", "license": "ISC", "dependencies": { "d": "^1.0.1", "es5-ext": "^0.10.62", "event-emitter": "^0.3.5", "type": "^2.7.2" }, "engines": { "node": ">=0.10" } }, "node_modules/espree": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "license": "BSD-2-Clause", "dependencies": { "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^3.4.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "license": "BSD-2-Clause", "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" }, "engines": { "node": ">=4" } }, "node_modules/esquery": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" }, "engines": { "node": ">=0.10" } }, "node_modules/esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" }, "engines": { "node": ">=4.0" } }, "node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, "node_modules/estree-walker": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", "license": "MIT" }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/event-emitter": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", "license": "MIT", "dependencies": { "d": "1", "es5-ext": "~0.10.14" } }, "node_modules/eventemitter3": { "version": "4.0.7", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", "license": "MIT" }, "node_modules/events": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "license": "MIT", "engines": { "node": ">=0.8.x" } }, "node_modules/execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, "node_modules/exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "engines": { "node": ">= 0.8.0" } }, "node_modules/expect": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "jest-get-type": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/express": { "version": "4.21.2", "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", "license": "MIT", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.3", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.7.1", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.3.1", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.3", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.12", "proxy-addr": "~2.0.7", "qs": "6.13.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.19.0", "serve-static": "1.16.2", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" }, "engines": { "node": ">= 0.10.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/express" } }, "node_modules/express/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/express/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, "node_modules/ext": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", "license": "ISC", "dependencies": { "type": "^2.7.2" } }, "node_modules/falafel": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/falafel/-/falafel-2.2.5.tgz", "integrity": "sha512-HuC1qF9iTnHDnML9YZAdCDQwT0yKl/U55K4XSUXqGAA2GLoafFgWRqdAbhWJxXaYD4pyoVxAJ8wH670jMpI9DQ==", "license": "MIT", "dependencies": { "acorn": "^7.1.1", "isarray": "^2.0.1" }, "engines": { "node": ">=0.4.0" } }, "node_modules/falafel/node_modules/acorn": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "license": "MIT", "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "license": "MIT" }, "node_modules/fast-glob": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" }, "engines": { "node": ">=8.6.0" } }, "node_modules/fast-glob/node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/fast-isnumeric": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/fast-isnumeric/-/fast-isnumeric-1.1.4.tgz", "integrity": "sha512-1mM8qOr2LYz8zGaUdmiqRDiuue00Dxjgcb1NQR7TnhLVh6sQyngP9xvLo7Sl7LZpP/sk5eb+bcyWXw530NTBZw==", "license": "MIT", "dependencies": { "is-string-blank": "^1.0.1" } }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "license": "MIT" }, "node_modules/fast-uri": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/fastify" }, { "type": "opencollective", "url": "https://opencollective.com/fastify" } ], "license": "BSD-3-Clause" }, "node_modules/fastq": { "version": "1.19.1", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", "license": "ISC", "dependencies": { "reusify": "^1.0.4" } }, "node_modules/faye-websocket": { "version": "0.11.4", "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "license": "Apache-2.0", "dependencies": { "websocket-driver": ">=0.5.1" }, "engines": { "node": ">=0.8.0" } }, "node_modules/fb-watchman": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "license": "Apache-2.0", "dependencies": { "bser": "2.1.1" } }, "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "license": "MIT", "dependencies": { "flat-cache": "^3.0.4" }, "engines": { "node": "^10.12.0 || >=12.0.0" } }, "node_modules/file-loader": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", "schema-utils": "^3.0.0" }, "engines": { "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^4.0.0 || ^5.0.0" } }, "node_modules/file-loader/node_modules/schema-utils": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" }, "engines": { "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" } }, "node_modules/filelist": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "license": "Apache-2.0", "dependencies": { "minimatch": "^5.0.1" } }, "node_modules/filelist/node_modules/brace-expansion": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/filelist/node_modules/minimatch": { "version": "5.1.6", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { "node": ">=10" } }, "node_modules/filesize": { "version": "8.0.7", "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", "license": "BSD-3-Clause", "engines": { "node": ">= 0.4.0" } }, "node_modules/fill-range": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/finalhandler": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", "license": "MIT", "dependencies": { "debug": "2.6.9", "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/finalhandler/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, "node_modules/find-cache-dir": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "license": "MIT", "dependencies": { "commondir": "^1.0.1", "make-dir": "^3.0.2", "pkg-dir": "^4.1.0" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, "node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/flat-cache": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "license": "MIT", "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.3", "rimraf": "^3.0.2" }, "engines": { "node": "^10.12.0 || >=12.0.0" } }, "node_modules/flatted": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", "license": "ISC" }, "node_modules/flatten-vertex-data": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/flatten-vertex-data/-/flatten-vertex-data-1.0.2.tgz", "integrity": "sha512-BvCBFK2NZqerFTdMDgqfHBwxYWnxeCkwONsw6PvBMcUXqo8U/KDWwmXhqx1x2kLIg7DqIsJfOaJFOmlua3Lxuw==", "license": "MIT", "dependencies": { "dtype": "^2.0.0" } }, "node_modules/follow-redirects": { "version": "1.15.9", "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", "funding": [ { "type": "individual", "url": "https://github.com/sponsors/RubenVerborgh" } ], "license": "MIT", "engines": { "node": ">=4.0" }, "peerDependenciesMeta": { "debug": { "optional": true } } }, "node_modules/font-atlas": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/font-atlas/-/font-atlas-2.1.0.tgz", "integrity": "sha512-kP3AmvX+HJpW4w3d+PiPR2X6E1yvsBXt2yhuCw+yReO9F1WYhvZwx3c95DGZGwg9xYzDGrgJYa885xmVA+28Cg==", "license": "MIT", "dependencies": { "css-font": "^1.0.0" } }, "node_modules/font-measure": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/font-measure/-/font-measure-1.2.2.tgz", "integrity": "sha512-mRLEpdrWzKe9hbfaF3Qpr06TAjquuBVP5cHy4b3hyeNdjc9i0PO6HniGsX5vjL5OWv7+Bd++NiooNpT/s8BvIA==", "license": "MIT", "dependencies": { "css-font": "^1.2.0" } }, "node_modules/for-each": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", "license": "MIT", "dependencies": { "is-callable": "^1.2.7" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/foreground-child": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", "license": "ISC", "dependencies": { "cross-spawn": "^7.0.6", "signal-exit": "^4.0.1" }, "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/foreground-child/node_modules/signal-exit": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "license": "ISC", "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/fork-ts-checker-webpack-plugin": { "version": "6.5.3", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.8.3", "@types/json-schema": "^7.0.5", "chalk": "^4.1.0", "chokidar": "^3.4.2", "cosmiconfig": "^6.0.0", "deepmerge": "^4.2.2", "fs-extra": "^9.0.0", "glob": "^7.1.6", "memfs": "^3.1.2", "minimatch": "^3.0.4", "schema-utils": "2.7.0", "semver": "^7.3.2", "tapable": "^1.0.0" }, "engines": { "node": ">=10", "yarn": ">=1.0.0" }, "peerDependencies": { "eslint": ">= 6", "typescript": ">= 2.7", "vue-template-compiler": "*", "webpack": ">= 4" }, "peerDependenciesMeta": { "eslint": { "optional": true }, "vue-template-compiler": { "optional": true } } }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", "license": "MIT", "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.1.0", "parse-json": "^5.0.0", "path-type": "^4.0.0", "yaml": "^1.7.2" }, "engines": { "node": ">=8" } }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { "node": ">=10" } }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.4", "ajv": "^6.12.2", "ajv-keywords": "^3.4.1" }, "engines": { "node": ">= 8.9.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" } }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/form-data": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.4.tgz", "integrity": "sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ==", "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "es-set-tostringtag": "^2.1.0", "hasown": "^2.0.2", "mime-types": "^2.1.35" }, "engines": { "node": ">= 6" } }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/fraction.js": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "license": "MIT", "engines": { "node": "*" }, "funding": { "type": "patreon", "url": "https://github.com/sponsors/rawify" } }, "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/from2": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", "license": "MIT", "dependencies": { "inherits": "^2.0.1", "readable-stream": "^2.0.0" } }, "node_modules/from2/node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "license": "MIT" }, "node_modules/from2/node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "node_modules/from2/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "license": "MIT" }, "node_modules/from2/node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { "node": ">=12" } }, "node_modules/fs-monkey": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.1.0.tgz", "integrity": "sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw==", "license": "Unlicense" }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "hasInstallScript": true, "license": "MIT", "optional": true, "os": [ "darwin" ], "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/function.prototype.name": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "functions-have-names": "^1.2.3", "hasown": "^2.0.2", "is-callable": "^1.2.7" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/functions-have-names": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/geojson-vt": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz", "integrity": "sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==", "license": "ISC" }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } }, "node_modules/get-canvas-context": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/get-canvas-context/-/get-canvas-context-1.0.2.tgz", "integrity": "sha512-LnpfLf/TNzr9zVOGiIY6aKCz8EKuXmlYNV7CM2pUjBa/B+c2I15tS7KLySep75+FuerJdmArvJLcsAXWEy2H0A==", "license": "MIT" }, "node_modules/get-intrinsic": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/get-own-enumerable-property-symbols": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", "license": "ISC" }, "node_modules/get-package-type": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "license": "MIT", "engines": { "node": ">=8.0.0" } }, "node_modules/get-proto": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", "license": "MIT", "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" } }, "node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/get-symbol-description": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/gl-mat4": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/gl-mat4/-/gl-mat4-1.2.0.tgz", "integrity": "sha512-sT5C0pwB1/e9G9AvAoLsoaJtbMGjfd/jfxo8jMCKqYYEnjZuFvqV5rehqar0538EmssjdDeiEWnKyBSTw7quoA==", "license": "Zlib" }, "node_modules/gl-matrix": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz", "integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==", "license": "MIT" }, "node_modules/gl-text": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/gl-text/-/gl-text-1.4.0.tgz", "integrity": "sha512-o47+XBqLCj1efmuNyCHt7/UEJmB9l66ql7pnobD6p+sgmBUdzfMZXIF0zD2+KRfpd99DJN+QXdvTFAGCKCVSmQ==", "license": "MIT", "dependencies": { "bit-twiddle": "^1.0.2", "color-normalize": "^1.5.0", "css-font": "^1.2.0", "detect-kerning": "^2.1.2", "es6-weak-map": "^2.0.3", "flatten-vertex-data": "^1.0.2", "font-atlas": "^2.1.0", "font-measure": "^1.2.2", "gl-util": "^3.1.2", "is-plain-obj": "^1.1.0", "object-assign": "^4.1.1", "parse-rect": "^1.2.0", "parse-unit": "^1.0.1", "pick-by-alias": "^1.2.0", "regl": "^2.0.0", "to-px": "^1.0.1", "typedarray-pool": "^1.1.0" } }, "node_modules/gl-text/node_modules/is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/gl-util": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/gl-util/-/gl-util-3.1.3.tgz", "integrity": "sha512-dvRTggw5MSkJnCbh74jZzSoTOGnVYK+Bt+Ckqm39CVcl6+zSsxqWk4lr5NKhkqXHL6qvZAU9h17ZF8mIskY9mA==", "license": "MIT", "dependencies": { "is-browser": "^2.0.1", "is-firefox": "^1.0.3", "is-plain-obj": "^1.1.0", "number-is-integer": "^1.0.1", "object-assign": "^4.1.0", "pick-by-alias": "^1.2.0", "weak-map": "^1.0.5" } }, "node_modules/gl-util/node_modules/is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "deprecated": "Glob versions prior to v9 are no longer supported", "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "license": "ISC", "dependencies": { "is-glob": "^4.0.3" }, "engines": { "node": ">=10.13.0" } }, "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "license": "BSD-2-Clause" }, "node_modules/global-modules": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "license": "MIT", "dependencies": { "global-prefix": "^3.0.0" }, "engines": { "node": ">=6" } }, "node_modules/global-prefix": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "license": "MIT", "dependencies": { "ini": "^1.3.5", "kind-of": "^6.0.2", "which": "^1.3.1" }, "engines": { "node": ">=6" } }, "node_modules/global-prefix/node_modules/which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, "bin": { "which": "bin/which" } }, "node_modules/globals": { "version": "13.24.0", "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "license": "MIT", "dependencies": { "type-fest": "^0.20.2" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/globalthis": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", "license": "MIT", "dependencies": { "define-properties": "^1.2.1", "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "license": "MIT", "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/glsl-inject-defines": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/glsl-inject-defines/-/glsl-inject-defines-1.0.3.tgz", "integrity": "sha512-W49jIhuDtF6w+7wCMcClk27a2hq8znvHtlGnrYkSWEr8tHe9eA2dcnohlcAmxLYBSpSSdzOkRdyPTrx9fw49+A==", "license": "MIT", "dependencies": { "glsl-token-inject-block": "^1.0.0", "glsl-token-string": "^1.0.1", "glsl-tokenizer": "^2.0.2" } }, "node_modules/glsl-resolve": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/glsl-resolve/-/glsl-resolve-0.0.1.tgz", "integrity": "sha512-xxFNsfnhZTK9NBhzJjSBGX6IOqYpvBHxxmo+4vapiljyGNCY0Bekzn0firQkQrazK59c1hYxMDxYS8MDlhw4gA==", "license": "MIT", "dependencies": { "resolve": "^0.6.1", "xtend": "^2.1.2" } }, "node_modules/glsl-resolve/node_modules/resolve": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/resolve/-/resolve-0.6.3.tgz", "integrity": "sha512-UHBY3viPlJKf85YijDUcikKX6tmF4SokIDp518ZDVT92JNDcG5uKIthaT/owt3Sar0lwtOafsQuwrg22/v2Dwg==", "license": "MIT" }, "node_modules/glsl-resolve/node_modules/xtend": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.2.0.tgz", "integrity": "sha512-SLt5uylT+4aoXxXuwtQp5ZnMMzhDb1Xkg4pEqc00WUJCQifPfV9Ub1VrNhp9kXkrjZD2I2Hl8WnjP37jzZLPZw==", "engines": { "node": ">=0.4" } }, "node_modules/glsl-token-assignments": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/glsl-token-assignments/-/glsl-token-assignments-2.0.2.tgz", "integrity": "sha512-OwXrxixCyHzzA0U2g4btSNAyB2Dx8XrztY5aVUCjRSh4/D0WoJn8Qdps7Xub3sz6zE73W3szLrmWtQ7QMpeHEQ==", "license": "MIT" }, "node_modules/glsl-token-defines": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/glsl-token-defines/-/glsl-token-defines-1.0.0.tgz", "integrity": "sha512-Vb5QMVeLjmOwvvOJuPNg3vnRlffscq2/qvIuTpMzuO/7s5kT+63iL6Dfo2FYLWbzuiycWpbC0/KV0biqFwHxaQ==", "license": "MIT", "dependencies": { "glsl-tokenizer": "^2.0.0" } }, "node_modules/glsl-token-depth": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/glsl-token-depth/-/glsl-token-depth-1.1.2.tgz", "integrity": "sha512-eQnIBLc7vFf8axF9aoi/xW37LSWd2hCQr/3sZui8aBJnksq9C7zMeUYHVJWMhFzXrBU7fgIqni4EhXVW4/krpg==", "license": "MIT" }, "node_modules/glsl-token-descope": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/glsl-token-descope/-/glsl-token-descope-1.0.2.tgz", "integrity": "sha512-kS2PTWkvi/YOeicVjXGgX5j7+8N7e56srNDEHDTVZ1dcESmbmpmgrnpjPcjxJjMxh56mSXYoFdZqb90gXkGjQw==", "license": "MIT", "dependencies": { "glsl-token-assignments": "^2.0.0", "glsl-token-depth": "^1.1.0", "glsl-token-properties": "^1.0.0", "glsl-token-scope": "^1.1.0" } }, "node_modules/glsl-token-inject-block": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/glsl-token-inject-block/-/glsl-token-inject-block-1.1.0.tgz", "integrity": "sha512-q/m+ukdUBuHCOtLhSr0uFb/qYQr4/oKrPSdIK2C4TD+qLaJvqM9wfXIF/OOBjuSA3pUoYHurVRNao6LTVVUPWA==", "license": "MIT" }, "node_modules/glsl-token-properties": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/glsl-token-properties/-/glsl-token-properties-1.0.1.tgz", "integrity": "sha512-dSeW1cOIzbuUoYH0y+nxzwK9S9O3wsjttkq5ij9ZGw0OS41BirKJzzH48VLm8qLg+au6b0sINxGC0IrGwtQUcA==", "license": "MIT" }, "node_modules/glsl-token-scope": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/glsl-token-scope/-/glsl-token-scope-1.1.2.tgz", "integrity": "sha512-YKyOMk1B/tz9BwYUdfDoHvMIYTGtVv2vbDSLh94PT4+f87z21FVdou1KNKgF+nECBTo0fJ20dpm0B1vZB1Q03A==", "license": "MIT" }, "node_modules/glsl-token-string": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/glsl-token-string/-/glsl-token-string-1.0.1.tgz", "integrity": "sha512-1mtQ47Uxd47wrovl+T6RshKGkRRCYWhnELmkEcUAPALWGTFe2XZpH3r45XAwL2B6v+l0KNsCnoaZCSnhzKEksg==", "license": "MIT" }, "node_modules/glsl-token-whitespace-trim": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/glsl-token-whitespace-trim/-/glsl-token-whitespace-trim-1.0.0.tgz", "integrity": "sha512-ZJtsPut/aDaUdLUNtmBYhaCmhIjpKNg7IgZSfX5wFReMc2vnj8zok+gB/3Quqs0TsBSX/fGnqUUYZDqyuc2xLQ==", "license": "MIT" }, "node_modules/glsl-tokenizer": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/glsl-tokenizer/-/glsl-tokenizer-2.1.5.tgz", "integrity": "sha512-XSZEJ/i4dmz3Pmbnpsy3cKh7cotvFlBiZnDOwnj/05EwNp2XrhQ4XKJxT7/pDt4kp4YcpRSKz8eTV7S+mwV6MA==", "license": "MIT", "dependencies": { "through2": "^0.6.3" } }, "node_modules/glsl-tokenizer/node_modules/isarray": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", "license": "MIT" }, "node_modules/glsl-tokenizer/node_modules/readable-stream": { "version": "1.0.34", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.1", "isarray": "0.0.1", "string_decoder": "~0.10.x" } }, "node_modules/glsl-tokenizer/node_modules/string_decoder": { "version": "0.10.31", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", "license": "MIT" }, "node_modules/glsl-tokenizer/node_modules/through2": { "version": "0.6.5", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "integrity": "sha512-RkK/CCESdTKQZHdmKICijdKKsCRVHs5KsLZ6pACAmF/1GPUQhonHSXWNERctxEp7RmvjdNbZTL5z9V7nSCXKcg==", "license": "MIT", "dependencies": { "readable-stream": ">=1.0.33-1 <1.1.0-0", "xtend": ">=4.0.0 <4.1.0-0" } }, "node_modules/glslify": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/glslify/-/glslify-7.1.1.tgz", "integrity": "sha512-bud98CJ6kGZcP9Yxcsi7Iz647wuDz3oN+IZsjCRi5X1PI7t/xPKeL0mOwXJjo+CRZMqvq0CkSJiywCcY7kVYog==", "license": "MIT", "dependencies": { "bl": "^2.2.1", "concat-stream": "^1.5.2", "duplexify": "^3.4.5", "falafel": "^2.1.0", "from2": "^2.3.0", "glsl-resolve": "0.0.1", "glsl-token-whitespace-trim": "^1.0.0", "glslify-bundle": "^5.0.0", "glslify-deps": "^1.2.5", "minimist": "^1.2.5", "resolve": "^1.1.5", "stack-trace": "0.0.9", "static-eval": "^2.0.5", "through2": "^2.0.1", "xtend": "^4.0.0" }, "bin": { "glslify": "bin.js" } }, "node_modules/glslify-bundle": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/glslify-bundle/-/glslify-bundle-5.1.1.tgz", "integrity": "sha512-plaAOQPv62M1r3OsWf2UbjN0hUYAB7Aph5bfH58VxJZJhloRNbxOL9tl/7H71K7OLJoSJ2ZqWOKk3ttQ6wy24A==", "license": "MIT", "dependencies": { "glsl-inject-defines": "^1.0.1", "glsl-token-defines": "^1.0.0", "glsl-token-depth": "^1.1.1", "glsl-token-descope": "^1.0.2", "glsl-token-scope": "^1.1.1", "glsl-token-string": "^1.0.1", "glsl-token-whitespace-trim": "^1.0.0", "glsl-tokenizer": "^2.0.2", "murmurhash-js": "^1.0.0", "shallow-copy": "0.0.1" } }, "node_modules/glslify-deps": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/glslify-deps/-/glslify-deps-1.3.2.tgz", "integrity": "sha512-7S7IkHWygJRjcawveXQjRXLO2FTjijPDYC7QfZyAQanY+yGLCFHYnPtsGT9bdyHiwPTw/5a1m1M9hamT2aBpag==", "license": "ISC", "dependencies": { "@choojs/findup": "^0.2.0", "events": "^3.2.0", "glsl-resolve": "0.0.1", "glsl-tokenizer": "^2.0.0", "graceful-fs": "^4.1.2", "inherits": "^2.0.1", "map-limit": "0.0.1", "resolve": "^1.0.0" } }, "node_modules/glslify/node_modules/static-eval": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.1.1.tgz", "integrity": "sha512-MgWpQ/ZjGieSVB3eOJVs4OA2LT/q1vx98KPCTTQPzq/aLr0YUXTsgryTXr4SLfR0ZfUUCiedM9n/ABeDIyy4mA==", "license": "MIT", "dependencies": { "escodegen": "^2.1.0" } }, "node_modules/gopd": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "license": "ISC" }, "node_modules/graphemer": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "license": "MIT" }, "node_modules/grid-index": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/grid-index/-/grid-index-1.1.0.tgz", "integrity": "sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==", "license": "ISC" }, "node_modules/gzip-size": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", "license": "MIT", "dependencies": { "duplexer": "^0.1.2" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/handle-thing": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", "license": "MIT" }, "node_modules/harmony-reflect": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", "license": "(Apache-2.0 OR MPL-1.1)" }, "node_modules/has-bigints": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/has-hover": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/has-hover/-/has-hover-1.0.1.tgz", "integrity": "sha512-0G6w7LnlcpyDzpeGUTuT0CEw05+QlMuGVk1IHNAlHrGJITGodjZu3x8BNDUMfKJSZXNB2ZAclqc1bvrd+uUpfg==", "license": "MIT", "dependencies": { "is-browser": "^2.0.1" } }, "node_modules/has-passive-events": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-passive-events/-/has-passive-events-1.0.0.tgz", "integrity": "sha512-2vSj6IeIsgvsRMyeQ0JaCX5Q3lX4zMn5HpoVc7MEhQ6pv8Iq9rsXjsp+E5ZwaT7T0xhMT0KmU8gtt1EFVdbJiw==", "license": "MIT", "dependencies": { "is-browser": "^2.0.1" } }, "node_modules/has-property-descriptors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "license": "MIT", "dependencies": { "es-define-property": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-proto": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", "license": "MIT", "dependencies": { "dunder-proto": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-symbols": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-tostringtag": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "license": "MIT", "dependencies": { "has-symbols": "^1.0.3" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/hasown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "license": "MIT", "dependencies": { "function-bind": "^1.1.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "license": "MIT", "bin": { "he": "bin/he" } }, "node_modules/hoopy": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", "license": "MIT", "engines": { "node": ">= 6.0.0" } }, "node_modules/hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "license": "MIT", "dependencies": { "inherits": "^2.0.1", "obuf": "^1.0.0", "readable-stream": "^2.0.1", "wbuf": "^1.1.0" } }, "node_modules/hpack.js/node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "license": "MIT" }, "node_modules/hpack.js/node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "node_modules/hpack.js/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "license": "MIT" }, "node_modules/hpack.js/node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/html-encoding-sniffer": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", "license": "MIT", "dependencies": { "whatwg-encoding": "^1.0.5" }, "engines": { "node": ">=10" } }, "node_modules/html-entities": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.6.0.tgz", "integrity": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/mdevils" }, { "type": "patreon", "url": "https://patreon.com/mdevils" } ], "license": "MIT" }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "license": "MIT" }, "node_modules/html-minifier-terser": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", "license": "MIT", "dependencies": { "camel-case": "^4.1.2", "clean-css": "^5.2.2", "commander": "^8.3.0", "he": "^1.2.0", "param-case": "^3.0.4", "relateurl": "^0.2.7", "terser": "^5.10.0" }, "bin": { "html-minifier-terser": "cli.js" }, "engines": { "node": ">=12" } }, "node_modules/html-webpack-plugin": { "version": "5.6.3", "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz", "integrity": "sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==", "license": "MIT", "dependencies": { "@types/html-minifier-terser": "^6.0.0", "html-minifier-terser": "^6.0.2", "lodash": "^4.17.21", "pretty-error": "^4.0.0", "tapable": "^2.0.0" }, "engines": { "node": ">=10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/html-webpack-plugin" }, "peerDependencies": { "@rspack/core": "0.x || 1.x", "webpack": "^5.20.0" }, "peerDependenciesMeta": { "@rspack/core": { "optional": true }, "webpack": { "optional": true } } }, "node_modules/htmlparser2": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { "type": "github", "url": "https://github.com/sponsors/fb55" } ], "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", "domutils": "^2.5.2", "entities": "^2.0.0" } }, "node_modules/http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", "license": "MIT" }, "node_modules/http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "license": "MIT", "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" }, "engines": { "node": ">= 0.8" } }, "node_modules/http-parser-js": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz", "integrity": "sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==", "license": "MIT" }, "node_modules/http-proxy": { "version": "1.18.1", "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "license": "MIT", "dependencies": { "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", "requires-port": "^1.0.0" }, "engines": { "node": ">=8.0.0" } }, "node_modules/http-proxy-agent": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "license": "MIT", "dependencies": { "@tootallnate/once": "1", "agent-base": "6", "debug": "4" }, "engines": { "node": ">= 6" } }, "node_modules/http-proxy-middleware": { "version": "2.0.9", "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.9.tgz", "integrity": "sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==", "license": "MIT", "dependencies": { "@types/http-proxy": "^1.17.8", "http-proxy": "^1.18.1", "is-glob": "^4.0.1", "is-plain-obj": "^3.0.0", "micromatch": "^4.0.2" }, "engines": { "node": ">=12.0.0" }, "peerDependencies": { "@types/express": "^4.17.13" }, "peerDependenciesMeta": { "@types/express": { "optional": true } } }, "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "license": "MIT", "dependencies": { "agent-base": "6", "debug": "4" }, "engines": { "node": ">= 6" } }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "license": "Apache-2.0", "engines": { "node": ">=10.17.0" } }, "node_modules/iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/icss-utils": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/idb": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==", "license": "ISC" }, "node_modules/identity-obj-proxy": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", "license": "MIT", "dependencies": { "harmony-reflect": "^1.4.6" }, "engines": { "node": ">=4" } }, "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "BSD-3-Clause" }, "node_modules/ignore": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/immer": { "version": "9.0.21", "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/immer" } }, "node_modules/import-fresh": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "license": "MIT", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/import-fresh/node_modules/resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/import-local": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "license": "MIT", "dependencies": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" }, "bin": { "import-local-fixture": "fixtures/cli.js" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "license": "MIT", "engines": { "node": ">=0.8.19" } }, "node_modules/indent-string": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "license": "ISC", "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "license": "ISC" }, "node_modules/ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "license": "ISC" }, "node_modules/internal-slot": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "hasown": "^2.0.2", "side-channel": "^1.1.0" }, "engines": { "node": ">= 0.4" } }, "node_modules/ipaddr.js": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", "license": "MIT", "engines": { "node": ">= 10" } }, "node_modules/is-array-buffer": { "version": "3.0.5", "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "license": "MIT" }, "node_modules/is-async-function": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", "license": "MIT", "dependencies": { "async-function": "^1.0.0", "call-bound": "^1.0.3", "get-proto": "^1.0.1", "has-tostringtag": "^1.0.2", "safe-regex-test": "^1.1.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-bigint": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", "license": "MIT", "dependencies": { "has-bigints": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "license": "MIT", "dependencies": { "binary-extensions": "^2.0.0" }, "engines": { "node": ">=8" } }, "node_modules/is-boolean-object": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-browser": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-browser/-/is-browser-2.1.0.tgz", "integrity": "sha512-F5rTJxDQ2sW81fcfOR1GnCXT6sVJC104fCyfj+mjpwNEwaPYSn5fte5jiHmBg3DHsIoL/l8Kvw5VN5SsTRcRFQ==", "license": "MIT" }, "node_modules/is-callable": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-core-module": { "version": "2.16.1", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "license": "MIT", "dependencies": { "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-data-view": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "get-intrinsic": "^1.2.6", "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-date-object": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "license": "MIT", "bin": { "is-docker": "cli.js" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-finalizationregistry": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-finite": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", "license": "MIT", "engines": { "node": ">=0.10.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-firefox": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/is-firefox/-/is-firefox-1.0.3.tgz", "integrity": "sha512-6Q9ITjvWIm0Xdqv+5U12wgOKEM2KoBw4Y926m0OFkvlCxnbG94HKAsVz8w3fWcfAS5YA2fJORXX1dLrkprCCxA==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-generator-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/is-generator-function": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "get-proto": "^1.0.0", "has-tostringtag": "^1.0.2", "safe-regex-test": "^1.1.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-iexplorer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-iexplorer/-/is-iexplorer-1.0.0.tgz", "integrity": "sha512-YeLzceuwg3K6O0MLM3UyUUjKAlyULetwryFp1mHy1I5PfArK0AEqlfa+MR4gkJjcbuJXoDJCvXbyqZVf5CR2Sg==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-map": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-mobile": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/is-mobile/-/is-mobile-4.0.0.tgz", "integrity": "sha512-mlcHZA84t1qLSuWkt2v0I2l61PYdyQDt4aG1mLIXF5FDMm4+haBCxCPYSr/uwqQNRk1MiTizn0ypEuRAOLRAew==", "license": "MIT" }, "node_modules/is-module": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", "license": "MIT" }, "node_modules/is-negative-zero": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "license": "MIT", "engines": { "node": ">=0.12.0" } }, "node_modules/is-number-object": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-obj": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-plain-obj": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-potential-custom-element-name": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", "license": "MIT" }, "node_modules/is-regex": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-regexp": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-root": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/is-set": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-shared-array-buffer": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "license": "MIT", "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-string": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-string-blank": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-string-blank/-/is-string-blank-1.0.1.tgz", "integrity": "sha512-9H+ZBCVs3L9OYqv8nuUAzpcT9OTgMD1yAWrG7ihlnibdkbtB850heAmYWxHuXc4CHy4lKeK69tN+ny1K7gBIrw==", "license": "MIT" }, "node_modules/is-svg-path": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-svg-path/-/is-svg-path-1.0.2.tgz", "integrity": "sha512-Lj4vePmqpPR1ZnRctHv8ltSh1OrSxHkhUkd7wi+VQdcdP15/KvQFyk7LhNuM7ZW0EVbJz8kZLVmL9quLrfq4Kg==", "license": "MIT" }, "node_modules/is-symbol": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "has-symbols": "^1.1.0", "safe-regex-test": "^1.1.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-typed-array": { "version": "1.1.15", "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", "license": "MIT", "dependencies": { "which-typed-array": "^1.1.16" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", "license": "MIT" }, "node_modules/is-weakmap": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-weakref": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-weakset": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "license": "MIT", "dependencies": { "is-docker": "^2.0.0" }, "engines": { "node": ">=8" } }, "node_modules/isarray": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "license": "MIT" }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "license": "ISC" }, "node_modules/istanbul-lib-coverage": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "license": "BSD-3-Clause", "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", "semver": "^6.3.0" }, "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/istanbul-lib-report": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "license": "BSD-3-Clause", "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" } }, "node_modules/istanbul-lib-report/node_modules/make-dir": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "license": "MIT", "dependencies": { "semver": "^7.5.3" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "license": "BSD-3-Clause", "dependencies": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", "source-map": "^0.6.1" }, "engines": { "node": ">=10" } }, "node_modules/istanbul-lib-source-maps/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/istanbul-reports": { "version": "3.1.7", "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", "license": "BSD-3-Clause", "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/iterator.prototype": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.6", "get-proto": "^1.0.0", "has-symbols": "^1.1.0", "set-function-name": "^2.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/jackspeak": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "license": "BlueOak-1.0.0", "dependencies": { "@isaacs/cliui": "^8.0.2" }, "funding": { "url": "https://github.com/sponsors/isaacs" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "node_modules/jake": { "version": "10.9.2", "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", "license": "Apache-2.0", "dependencies": { "async": "^3.2.3", "chalk": "^4.0.2", "filelist": "^1.0.4", "minimatch": "^3.1.2" }, "bin": { "jake": "bin/cli.js" }, "engines": { "node": ">=10" } }, "node_modules/jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", "license": "MIT", "dependencies": { "@jest/core": "^27.5.1", "import-local": "^3.0.2", "jest-cli": "^27.5.1" }, "bin": { "jest": "bin/jest.js" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { "node-notifier": { "optional": true } } }, "node_modules/jest-changed-files": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "execa": "^5.0.0", "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-circus": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^0.7.0", "expect": "^27.5.1", "is-generator-fn": "^2.0.0", "jest-each": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3", "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-cli": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", "license": "MIT", "dependencies": { "@jest/core": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "chalk": "^4.0.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "import-local": "^3.0.2", "jest-config": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "prompts": "^2.0.1", "yargs": "^16.2.0" }, "bin": { "jest": "bin/jest.js" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { "node-notifier": { "optional": true } } }, "node_modules/jest-config": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", "license": "MIT", "dependencies": { "@babel/core": "^7.8.0", "@jest/test-sequencer": "^27.5.1", "@jest/types": "^27.5.1", "babel-jest": "^27.5.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.1", "graceful-fs": "^4.2.9", "jest-circus": "^27.5.1", "jest-environment-jsdom": "^27.5.1", "jest-environment-node": "^27.5.1", "jest-get-type": "^27.5.1", "jest-jasmine2": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-runner": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "micromatch": "^4.0.4", "parse-json": "^5.2.0", "pretty-format": "^27.5.1", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "ts-node": ">=9.0.0" }, "peerDependenciesMeta": { "ts-node": { "optional": true } } }, "node_modules/jest-diff": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", "license": "MIT", "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^27.5.1", "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-docblock": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", "license": "MIT", "dependencies": { "detect-newline": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-each": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "chalk": "^4.0.0", "jest-get-type": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-environment-jsdom": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1", "jest-util": "^27.5.1", "jsdom": "^16.6.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-environment-node": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1", "jest-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-get-type": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", "license": "MIT", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-haste-map": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "@types/graceful-fs": "^4.1.2", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^27.5.1", "jest-serializer": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "micromatch": "^4.0.4", "walker": "^1.0.7" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "optionalDependencies": { "fsevents": "^2.3.2" } }, "node_modules/jest-jasmine2": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", "@jest/source-map": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "expect": "^27.5.1", "is-generator-fn": "^2.0.0", "jest-each": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1", "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-leak-detector": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", "license": "MIT", "dependencies": { "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-matcher-utils": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", "license": "MIT", "dependencies": { "chalk": "^4.0.0", "jest-diff": "^27.5.1", "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-message-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.12.13", "@jest/types": "^27.5.1", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-mock": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "@types/node": "*" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-pnp-resolver": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "license": "MIT", "engines": { "node": ">=6" }, "peerDependencies": { "jest-resolve": "*" }, "peerDependenciesMeta": { "jest-resolve": { "optional": true } } }, "node_modules/jest-regex-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", "license": "MIT", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-resolve": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-pnp-resolver": "^1.2.2", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "resolve": "^1.20.0", "resolve.exports": "^1.1.0", "slash": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-resolve-dependencies": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-snapshot": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-runner": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", "license": "MIT", "dependencies": { "@jest/console": "^27.5.1", "@jest/environment": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.8.1", "graceful-fs": "^4.2.9", "jest-docblock": "^27.5.1", "jest-environment-jsdom": "^27.5.1", "jest-environment-node": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-leak-detector": "^27.5.1", "jest-message-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-runtime": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "source-map-support": "^0.5.6", "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-runtime": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/globals": "^27.5.1", "@jest/source-map": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "execa": "^5.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-message-util": "^27.5.1", "jest-mock": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-serializer": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", "license": "MIT", "dependencies": { "@types/node": "*", "graceful-fs": "^4.2.9" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-snapshot": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", "license": "MIT", "dependencies": { "@babel/core": "^7.7.2", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/traverse": "^7.7.2", "@babel/types": "^7.0.0", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/babel__traverse": "^7.0.4", "@types/prettier": "^2.1.5", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", "expect": "^27.5.1", "graceful-fs": "^4.2.9", "jest-diff": "^27.5.1", "jest-get-type": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-util": "^27.5.1", "natural-compare": "^1.4.0", "pretty-format": "^27.5.1", "semver": "^7.3.2" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-validate": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "camelcase": "^6.2.0", "chalk": "^4.0.0", "jest-get-type": "^27.5.1", "leven": "^3.1.0", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-watch-typeahead": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", "license": "MIT", "dependencies": { "ansi-escapes": "^4.3.1", "chalk": "^4.0.0", "jest-regex-util": "^28.0.0", "jest-watcher": "^28.0.0", "slash": "^4.0.0", "string-length": "^5.0.1", "strip-ansi": "^7.0.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "peerDependencies": { "jest": "^27.0.0 || ^28.0.0" } }, "node_modules/jest-watch-typeahead/node_modules/@jest/console": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", "chalk": "^4.0.0", "jest-message-util": "^28.1.3", "jest-util": "^28.1.3", "slash": "^3.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", "license": "MIT", "dependencies": { "@jest/console": "^28.1.3", "@jest/types": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-watch-typeahead/node_modules/@jest/types": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", "@types/yargs": "^17.0.8", "chalk": "^4.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-watch-typeahead/node_modules/@types/yargs": { "version": "17.0.33", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", "license": "MIT", "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/jest-watch-typeahead/node_modules/emittery": { "version": "0.10.2", "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.12.13", "@jest/types": "^28.1.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", "pretty-format": "^28.1.3", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { "version": "28.0.2", "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", "license": "MIT", "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-watch-typeahead/node_modules/jest-util": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", "license": "MIT", "dependencies": { "@jest/test-result": "^28.1.3", "@jest/types": "^28.1.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.10.2", "jest-util": "^28.1.3", "string-length": "^4.0.1" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "license": "MIT", "dependencies": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" } }, "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/jest-watch-typeahead/node_modules/pretty-format": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-watch-typeahead/node_modules/react-is": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", "license": "MIT" }, "node_modules/jest-watch-typeahead/node_modules/slash": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/jest-watch-typeahead/node_modules/string-length": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", "license": "MIT", "dependencies": { "char-regex": "^2.0.0", "strip-ansi": "^7.0.1" }, "engines": { "node": ">=12.20" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.2.tgz", "integrity": "sha512-cbGOjAptfM2LVmWhwRFHEKTPkLwNddVmuqYZQt895yXwAsWsXObCG+YN4DGQ/JBtT4GP1a1lPPdio2z413LmTg==", "license": "MIT", "engines": { "node": ">=12.20" } }, "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, "node_modules/jest-watcher": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", "license": "MIT", "dependencies": { "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "jest-util": "^27.5.1", "string-length": "^4.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "license": "MIT", "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, "engines": { "node": ">= 10.13.0" } }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/jiti": { "version": "1.21.7", "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", "license": "MIT", "bin": { "jiti": "bin/jiti.js" } }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "license": "MIT" }, "node_modules/js-yaml": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "license": "MIT", "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "node_modules/jsdom": { "version": "16.7.0", "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", "license": "MIT", "dependencies": { "abab": "^2.0.5", "acorn": "^8.2.4", "acorn-globals": "^6.0.0", "cssom": "^0.4.4", "cssstyle": "^2.3.0", "data-urls": "^2.0.0", "decimal.js": "^10.2.1", "domexception": "^2.0.1", "escodegen": "^2.0.0", "form-data": "^3.0.0", "html-encoding-sniffer": "^2.0.1", "http-proxy-agent": "^4.0.1", "https-proxy-agent": "^5.0.0", "is-potential-custom-element-name": "^1.0.1", "nwsapi": "^2.2.0", "parse5": "6.0.1", "saxes": "^5.0.1", "symbol-tree": "^3.2.4", "tough-cookie": "^4.0.0", "w3c-hr-time": "^1.0.2", "w3c-xmlserializer": "^2.0.0", "webidl-conversions": "^6.1.0", "whatwg-encoding": "^1.0.5", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.5.0", "ws": "^7.4.6", "xml-name-validator": "^3.0.0" }, "engines": { "node": ">=10" }, "peerDependencies": { "canvas": "^2.5.0" }, "peerDependenciesMeta": { "canvas": { "optional": true } } }, "node_modules/jsesc": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, "engines": { "node": ">=6" } }, "node_modules/json-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "license": "MIT" }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "license": "MIT" }, "node_modules/json-schema": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "license": "(AFL-2.1 OR BSD-3-Clause)" }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "license": "MIT" }, "node_modules/json-stringify-pretty-compact": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/json-stringify-pretty-compact/-/json-stringify-pretty-compact-4.0.0.tgz", "integrity": "sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==", "license": "MIT" }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "license": "MIT", "bin": { "json5": "lib/cli.js" }, "engines": { "node": ">=6" } }, "node_modules/jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "license": "MIT", "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }, "node_modules/jsonpath": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz", "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==", "license": "MIT", "dependencies": { "esprima": "1.2.2", "static-eval": "2.0.2", "underscore": "1.12.1" } }, "node_modules/jsonpath/node_modules/esprima": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz", "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==", "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" }, "engines": { "node": ">=0.4.0" } }, "node_modules/jsonpointer": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/jsx-ast-utils": { "version": "3.3.5", "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", "license": "MIT", "dependencies": { "array-includes": "^3.1.6", "array.prototype.flat": "^1.3.1", "object.assign": "^4.1.4", "object.values": "^1.1.6" }, "engines": { "node": ">=4.0" } }, "node_modules/kdbush": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-4.0.2.tgz", "integrity": "sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==", "license": "ISC" }, "node_modules/keyv": { "version": "4.5.4", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "license": "MIT", "dependencies": { "json-buffer": "3.0.1" } }, "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/klona": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/language-subtag-registry": { "version": "0.3.23", "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", "license": "CC0-1.0" }, "node_modules/language-tags": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", "license": "MIT", "dependencies": { "language-subtag-registry": "^0.3.20" }, "engines": { "node": ">=0.10" } }, "node_modules/launch-editor": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.10.0.tgz", "integrity": "sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==", "license": "MIT", "dependencies": { "picocolors": "^1.0.0", "shell-quote": "^1.8.1" } }, "node_modules/leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/lilconfig": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "license": "MIT" }, "node_modules/loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "license": "MIT", "engines": { "node": ">=6.11.5" } }, "node_modules/loader-utils": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "license": "MIT", "dependencies": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", "json5": "^2.1.2" }, "engines": { "node": ">=8.9.0" } }, "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, "engines": { "node": ">=8" } }, "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "license": "MIT" }, "node_modules/lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", "license": "MIT" }, "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "license": "MIT" }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "license": "MIT" }, "node_modules/lodash.sortby": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", "license": "MIT" }, "node_modules/lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", "license": "MIT" }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "license": "MIT", "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, "bin": { "loose-envify": "cli.js" } }, "node_modules/lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "license": "ISC", "dependencies": { "yallist": "^3.0.2" } }, "node_modules/lz-string": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", "license": "MIT", "bin": { "lz-string": "bin/bin.js" } }, "node_modules/magic-string": { "version": "0.25.9", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", "license": "MIT", "dependencies": { "sourcemap-codec": "^1.4.8" } }, "node_modules/make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "license": "MIT", "dependencies": { "semver": "^6.0.0" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/make-dir/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/makeerror": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "license": "BSD-3-Clause", "dependencies": { "tmpl": "1.0.5" } }, "node_modules/map-limit": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/map-limit/-/map-limit-0.0.1.tgz", "integrity": "sha512-pJpcfLPnIF/Sk3taPW21G/RQsEEirGaFpCW3oXRwH9dnFHPHNGjNyvh++rdmC2fNqEaTw2MhYJraoJWAHx8kEg==", "license": "MIT", "dependencies": { "once": "~1.3.0" } }, "node_modules/map-limit/node_modules/once": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", "integrity": "sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==", "license": "ISC", "dependencies": { "wrappy": "1" } }, "node_modules/mapbox-gl": { "version": "1.13.3", "resolved": "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-1.13.3.tgz", "integrity": "sha512-p8lJFEiqmEQlyv+DQxFAOG/XPWN0Wp7j/Psq93Zywz7qt9CcUKFYDBOoOEKzqe6gudHVJY8/Bhqw6VDpX2lSBg==", "license": "SEE LICENSE IN LICENSE.txt", "peer": true, "dependencies": { "@mapbox/geojson-rewind": "^0.5.2", "@mapbox/geojson-types": "^1.0.2", "@mapbox/jsonlint-lines-primitives": "^2.0.2", "@mapbox/mapbox-gl-supported": "^1.5.0", "@mapbox/point-geometry": "^0.1.0", "@mapbox/tiny-sdf": "^1.1.1", "@mapbox/unitbezier": "^0.0.0", "@mapbox/vector-tile": "^1.3.1", "@mapbox/whoots-js": "^3.1.0", "csscolorparser": "~1.0.3", "earcut": "^2.2.2", "geojson-vt": "^3.2.1", "gl-matrix": "^3.2.1", "grid-index": "^1.1.0", "murmurhash-js": "^1.0.0", "pbf": "^3.2.1", "potpack": "^1.0.1", "quickselect": "^2.0.0", "rw": "^1.3.3", "supercluster": "^7.1.0", "tinyqueue": "^2.0.3", "vt-pbf": "^3.1.1" }, "engines": { "node": ">=6.4.0" } }, "node_modules/maplibre-gl": { "version": "4.7.1", "resolved": "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-4.7.1.tgz", "integrity": "sha512-lgL7XpIwsgICiL82ITplfS7IGwrB1OJIw/pCvprDp2dhmSSEBgmPzYRvwYYYvJGJD7fxUv1Tvpih4nZ6VrLuaA==", "license": "BSD-3-Clause", "dependencies": { "@mapbox/geojson-rewind": "^0.5.2", "@mapbox/jsonlint-lines-primitives": "^2.0.2", "@mapbox/point-geometry": "^0.1.0", "@mapbox/tiny-sdf": "^2.0.6", "@mapbox/unitbezier": "^0.0.1", "@mapbox/vector-tile": "^1.3.1", "@mapbox/whoots-js": "^3.1.0", "@maplibre/maplibre-gl-style-spec": "^20.3.1", "@types/geojson": "^7946.0.14", "@types/geojson-vt": "3.2.5", "@types/mapbox__point-geometry": "^0.1.4", "@types/mapbox__vector-tile": "^1.3.4", "@types/pbf": "^3.0.5", "@types/supercluster": "^7.1.3", "earcut": "^3.0.0", "geojson-vt": "^4.0.2", "gl-matrix": "^3.4.3", "global-prefix": "^4.0.0", "kdbush": "^4.0.2", "murmurhash-js": "^1.0.0", "pbf": "^3.3.0", "potpack": "^2.0.0", "quickselect": "^3.0.0", "supercluster": "^8.0.1", "tinyqueue": "^3.0.0", "vt-pbf": "^3.1.3" }, "engines": { "node": ">=16.14.0", "npm": ">=8.1.0" }, "funding": { "url": "https://github.com/maplibre/maplibre-gl-js?sponsor=1" } }, "node_modules/maplibre-gl/node_modules/@mapbox/tiny-sdf": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz", "integrity": "sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==", "license": "BSD-2-Clause" }, "node_modules/maplibre-gl/node_modules/@mapbox/unitbezier": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==", "license": "BSD-2-Clause" }, "node_modules/maplibre-gl/node_modules/earcut": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/earcut/-/earcut-3.0.2.tgz", "integrity": "sha512-X7hshQbLyMJ/3RPhyObLARM2sNxxmRALLKx1+NVFFnQ9gKzmCrxm9+uLIAdBcvc8FNLpctqlQ2V6AE92Ol9UDQ==", "license": "ISC" }, "node_modules/maplibre-gl/node_modules/geojson-vt": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-4.0.2.tgz", "integrity": "sha512-AV9ROqlNqoZEIJGfm1ncNjEXfkz2hdFlZf0qkVfmkwdKa8vj7H16YUOT81rJw1rdFhyEDlN2Tds91p/glzbl5A==", "license": "ISC" }, "node_modules/maplibre-gl/node_modules/global-prefix": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-4.0.0.tgz", "integrity": "sha512-w0Uf9Y9/nyHinEk5vMJKRie+wa4kR5hmDbEhGGds/kG1PwGLLHKRoNMeJOyCQjjBkANlnScqgzcFwGHgmgLkVA==", "license": "MIT", "dependencies": { "ini": "^4.1.3", "kind-of": "^6.0.3", "which": "^4.0.0" }, "engines": { "node": ">=16" } }, "node_modules/maplibre-gl/node_modules/ini": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.3.tgz", "integrity": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==", "license": "ISC", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/maplibre-gl/node_modules/isexe": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", "license": "ISC", "engines": { "node": ">=16" } }, "node_modules/maplibre-gl/node_modules/potpack": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/potpack/-/potpack-2.1.0.tgz", "integrity": "sha512-pcaShQc1Shq0y+E7GqJqvZj8DTthWV1KeHGdi0Z6IAin2Oi3JnLCOfwnCo84qc+HAp52wT9nK9H7FAJp5a44GQ==", "license": "ISC" }, "node_modules/maplibre-gl/node_modules/quickselect": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-3.0.0.tgz", "integrity": "sha512-XdjUArbK4Bm5fLLvlm5KpTFOiOThgfWWI4axAZDWg4E/0mKdZyI9tNEfds27qCi1ze/vwTR16kvmmGhRra3c2g==", "license": "ISC" }, "node_modules/maplibre-gl/node_modules/supercluster": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-8.0.1.tgz", "integrity": "sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==", "license": "ISC", "dependencies": { "kdbush": "^4.0.2" } }, "node_modules/maplibre-gl/node_modules/tinyqueue": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-3.0.0.tgz", "integrity": "sha512-gRa9gwYU3ECmQYv3lslts5hxuIa90veaEcxDYuu3QGOIAEM2mOZkVHp48ANJuu1CURtRdHKUBY5Lm1tHV+sD4g==", "license": "ISC" }, "node_modules/maplibre-gl/node_modules/which": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", "license": "ISC", "dependencies": { "isexe": "^3.1.1" }, "bin": { "node-which": "bin/which.js" }, "engines": { "node": "^16.13.0 || >=18.0.0" } }, "node_modules/math-intrinsics": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/math-log2": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/math-log2/-/math-log2-1.0.1.tgz", "integrity": "sha512-9W0yGtkaMAkf74XGYVy4Dqw3YUMnTNB2eeiw9aQbUl4A3KmuCEHTt2DgAB07ENzOYAjsYSAYufkAq0Zd+jU7zA==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/mdn-data": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", "license": "CC0-1.0" }, "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/memfs": { "version": "3.5.3", "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", "license": "Unlicense", "dependencies": { "fs-monkey": "^1.0.4" }, "engines": { "node": ">= 4.0.0" } }, "node_modules/merge-descriptors": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", "license": "MIT", "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "license": "MIT" }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/micromatch": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "license": "MIT", "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { "node": ">=8.6" } }, "node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "license": "MIT", "bin": { "mime": "cli.js" }, "engines": { "node": ">=4" } }, "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "license": "MIT", "dependencies": { "mime-db": "1.52.0" }, "engines": { "node": ">= 0.6" } }, "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/min-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/mini-css-extract-plugin": { "version": "2.9.2", "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.2.tgz", "integrity": "sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==", "license": "MIT", "dependencies": { "schema-utils": "^4.0.0", "tapable": "^2.2.1" }, "engines": { "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^5.0.0" } }, "node_modules/minimalistic-assert": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "license": "ISC" }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" }, "engines": { "node": "*" } }, "node_modules/minimist": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/minipass": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "license": "ISC", "engines": { "node": ">=16 || 14 >=14.17" } }, "node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "license": "MIT", "dependencies": { "minimist": "^1.2.6" }, "bin": { "mkdirp": "bin/cmd.js" } }, "node_modules/mouse-change": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/mouse-change/-/mouse-change-1.4.0.tgz", "integrity": "sha512-vpN0s+zLL2ykyyUDh+fayu9Xkor5v/zRD9jhSqjRS1cJTGS0+oakVZzNm5n19JvvEj0you+MXlYTpNxUDQUjkQ==", "license": "MIT", "dependencies": { "mouse-event": "^1.0.0" } }, "node_modules/mouse-event": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/mouse-event/-/mouse-event-1.0.5.tgz", "integrity": "sha512-ItUxtL2IkeSKSp9cyaX2JLUuKk2uMoxBg4bbOWVd29+CskYJR9BGsUqtXenNzKbnDshvupjUewDIYVrOB6NmGw==", "license": "MIT" }, "node_modules/mouse-event-offset": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/mouse-event-offset/-/mouse-event-offset-3.0.2.tgz", "integrity": "sha512-s9sqOs5B1Ykox3Xo8b3Ss2IQju4UwlW6LSR+Q5FXWpprJ5fzMLefIIItr3PH8RwzfGy6gxs/4GAmiNuZScE25w==", "license": "MIT" }, "node_modules/mouse-wheel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mouse-wheel/-/mouse-wheel-1.2.0.tgz", "integrity": "sha512-+OfYBiUOCTWcTECES49neZwL5AoGkXE+lFjIvzwNCnYRlso+EnfvovcBxGoyQ0yQt806eSPjS675K0EwWknXmw==", "license": "MIT", "dependencies": { "right-now": "^1.0.0", "signum": "^1.0.0", "to-px": "^1.0.1" } }, "node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "license": "MIT" }, "node_modules/multicast-dns": { "version": "7.2.5", "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "license": "MIT", "dependencies": { "dns-packet": "^5.2.2", "thunky": "^1.0.2" }, "bin": { "multicast-dns": "cli.js" } }, "node_modules/murmurhash-js": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz", "integrity": "sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==", "license": "MIT" }, "node_modules/mz": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", "license": "MIT", "dependencies": { "any-promise": "^1.0.0", "object-assign": "^4.0.1", "thenify-all": "^1.0.0" } }, "node_modules/nanoid": { "version": "3.3.11", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" }, "engines": { "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, "node_modules/native-promise-only": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/native-promise-only/-/native-promise-only-0.8.1.tgz", "integrity": "sha512-zkVhZUA3y8mbz652WrL5x0fB0ehrBkulWT3TomAQ9iDtyXZvzKeEA6GPxAItBYeNYl5yngKRX612qHOhvMkDeg==", "license": "MIT" }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "license": "MIT" }, "node_modules/natural-compare-lite": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", "license": "MIT" }, "node_modules/needle": { "version": "2.9.1", "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", "license": "MIT", "dependencies": { "debug": "^3.2.6", "iconv-lite": "^0.4.4", "sax": "^1.2.4" }, "bin": { "needle": "bin/needle" }, "engines": { "node": ">= 4.4.x" } }, "node_modules/needle/node_modules/debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/needle/node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, "engines": { "node": ">=0.10.0" } }, "node_modules/negotiator": { "version": "0.6.4", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/neo-async": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "license": "MIT" }, "node_modules/next-tick": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", "license": "ISC" }, "node_modules/no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "license": "MIT", "dependencies": { "lower-case": "^2.0.2", "tslib": "^2.0.3" } }, "node_modules/node-forge": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "license": "(BSD-3-Clause OR GPL-2.0)", "engines": { "node": ">= 6.13.0" } }, "node_modules/node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "license": "MIT" }, "node_modules/node-releases": { "version": "2.0.19", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "license": "MIT" }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/normalize-svg-path": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/normalize-svg-path/-/normalize-svg-path-0.1.0.tgz", "integrity": "sha512-1/kmYej2iedi5+ROxkRESL/pI02pkg0OBnaR4hJkSIX6+ORzepwbuUXfrdZaPjysTsJInj0Rj5NuX027+dMBvA==", "license": "MIT" }, "node_modules/normalize-url": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "license": "MIT", "dependencies": { "path-key": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/nth-check": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0" }, "funding": { "url": "https://github.com/fb55/nth-check?sponsor=1" } }, "node_modules/number-is-integer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/number-is-integer/-/number-is-integer-1.0.1.tgz", "integrity": "sha512-Dq3iuiFBkrbmuQjGFFF3zckXNCQoSD37/SdSbgcBailUx6knDvDwb5CympBgcoWHy36sfS12u74MHYkXyHq6bg==", "license": "MIT", "dependencies": { "is-finite": "^1.0.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/nwsapi": { "version": "2.2.21", "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.21.tgz", "integrity": "sha512-o6nIY3qwiSXl7/LuOU0Dmuctd34Yay0yeuZRLFmDPrrdHpXKFndPj3hM+YEPVHYC5fx2otBx4Ilc/gyYSAUaIA==", "license": "MIT" }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/object-hash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/object-inspect": { "version": "1.13.4", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/object.assign": { "version": "4.1.7", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0", "has-symbols": "^1.1.0", "object-keys": "^1.1.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object.entries": { "version": "1.1.9", "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.4", "define-properties": "^1.2.1", "es-object-atoms": "^1.1.1" }, "engines": { "node": ">= 0.4" } }, "node_modules/object.fromentries": { "version": "2.0.8", "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2", "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object.getownpropertydescriptors": { "version": "2.1.8", "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz", "integrity": "sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==", "license": "MIT", "dependencies": { "array.prototype.reduce": "^1.0.6", "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2", "es-object-atoms": "^1.0.0", "gopd": "^1.0.1", "safe-array-concat": "^1.1.2" }, "engines": { "node": ">= 0.8" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object.groupby": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/object.values": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", "license": "MIT" }, "node_modules/on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, "engines": { "node": ">= 0.8" } }, "node_modules/on-headers": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "license": "ISC", "dependencies": { "wrappy": "1" } }, "node_modules/onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "license": "MIT", "dependencies": { "mimic-fn": "^2.1.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/open": { "version": "8.4.2", "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "license": "MIT", "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", "is-wsl": "^2.2.0" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/optionator": { "version": "0.9.4", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "license": "MIT", "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.5" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/own-keys": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.6", "object-keys": "^1.1.1", "safe-push-apply": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, "engines": { "node": ">=8" } }, "node_modules/p-retry": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", "license": "MIT", "dependencies": { "@types/retry": "0.12.0", "retry": "^0.13.1" }, "engines": { "node": ">=8" } }, "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/package-json-from-dist": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", "license": "BlueOak-1.0.0" }, "node_modules/param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "license": "MIT", "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" } }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "license": "MIT", "dependencies": { "callsites": "^3.0.0" }, "engines": { "node": ">=6" } }, "node_modules/parenthesis": { "version": "3.1.8", "resolved": "https://registry.npmjs.org/parenthesis/-/parenthesis-3.1.8.tgz", "integrity": "sha512-KF/U8tk54BgQewkJPvB4s/US3VQY68BRDpH638+7O/n58TpnwiwnOtGIOsT2/i+M78s61BBpeC83STB88d8sqw==", "license": "MIT" }, "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/parse-rect": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/parse-rect/-/parse-rect-1.2.0.tgz", "integrity": "sha512-4QZ6KYbnE6RTwg9E0HpLchUM9EZt6DnDxajFZZDSV4p/12ZJEvPO702DZpGvRYEPo00yKDys7jASi+/w7aO8LA==", "license": "MIT", "dependencies": { "pick-by-alias": "^1.2.0" } }, "node_modules/parse-svg-path": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/parse-svg-path/-/parse-svg-path-0.1.2.tgz", "integrity": "sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==", "license": "MIT" }, "node_modules/parse-unit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parse-unit/-/parse-unit-1.0.1.tgz", "integrity": "sha512-hrqldJHokR3Qj88EIlV/kAyAi/G5R2+R56TBANxNMy0uPlYcttx0jnMW6Yx5KsKPSbC3KddM/7qQm3+0wEXKxg==", "license": "MIT" }, "node_modules/parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", "license": "MIT" }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/pascal-case": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" } }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "license": "MIT" }, "node_modules/path-scurry": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "license": "BlueOak-1.0.0", "dependencies": { "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/path-scurry/node_modules/lru-cache": { "version": "10.4.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "license": "ISC" }, "node_modules/path-to-regexp": { "version": "0.1.12", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", "license": "MIT" }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/pbf": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.3.0.tgz", "integrity": "sha512-XDF38WCH3z5OV/OVa8GKUNtLAyneuzbCisx7QUCF8Q6Nutx0WnJrQe5O+kOtBlLfRNUws98Y58Lblp+NJG5T4Q==", "license": "BSD-3-Clause", "dependencies": { "ieee754": "^1.1.12", "resolve-protobuf-schema": "^2.1.0" }, "bin": { "pbf": "bin/pbf" } }, "node_modules/performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", "license": "MIT" }, "node_modules/pick-by-alias": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pick-by-alias/-/pick-by-alias-1.2.0.tgz", "integrity": "sha512-ESj2+eBxhGrcA1azgHs7lARG5+5iLakc/6nlfbpjcLl00HuuUOIuORhYXN4D1HfvMSKuVtFQjAlnwi1JHEeDIw==", "license": "MIT" }, "node_modules/picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "license": "MIT", "engines": { "node": ">=8.6" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" } }, "node_modules/pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/pirates": { "version": "4.0.7", "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "license": "MIT", "dependencies": { "find-up": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/pkg-up": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", "license": "MIT", "dependencies": { "find-up": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/pkg-up/node_modules/find-up": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "license": "MIT", "dependencies": { "locate-path": "^3.0.0" }, "engines": { "node": ">=6" } }, "node_modules/pkg-up/node_modules/locate-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "license": "MIT", "dependencies": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" }, "engines": { "node": ">=6" } }, "node_modules/pkg-up/node_modules/p-locate": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "license": "MIT", "dependencies": { "p-limit": "^2.0.0" }, "engines": { "node": ">=6" } }, "node_modules/pkg-up/node_modules/path-exists": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/plotly.js": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/plotly.js/-/plotly.js-3.0.3.tgz", "integrity": "sha512-prm0irr/60HwldgvZUTaY+emK+PZ1XcOOLAKAYgXQNlyIoJ3sd7xRwB/aCtZcwCDbbcvbyX8pIyLkq0gcYFZng==", "license": "MIT", "dependencies": { "@plotly/d3": "3.8.2", "@plotly/d3-sankey": "0.7.2", "@plotly/d3-sankey-circular": "0.33.1", "@plotly/mapbox-gl": "1.13.4", "@plotly/regl": "^2.1.2", "@turf/area": "^7.1.0", "@turf/bbox": "^7.1.0", "@turf/centroid": "^7.1.0", "base64-arraybuffer": "^1.0.2", "canvas-fit": "^1.5.0", "color-alpha": "1.0.4", "color-normalize": "1.5.0", "color-parse": "2.0.0", "color-rgba": "3.0.0", "country-regex": "^1.1.0", "d3-force": "^1.2.1", "d3-format": "^1.4.5", "d3-geo": "^1.12.1", "d3-geo-projection": "^2.9.0", "d3-hierarchy": "^1.1.9", "d3-interpolate": "^3.0.1", "d3-time": "^1.1.0", "d3-time-format": "^2.2.3", "fast-isnumeric": "^1.1.4", "gl-mat4": "^1.2.0", "gl-text": "^1.4.0", "has-hover": "^1.0.1", "has-passive-events": "^1.0.0", "is-mobile": "^4.0.0", "maplibre-gl": "^4.7.1", "mouse-change": "^1.4.0", "mouse-event-offset": "^3.0.2", "mouse-wheel": "^1.2.0", "native-promise-only": "^0.8.1", "parse-svg-path": "^0.1.2", "point-in-polygon": "^1.1.0", "polybooljs": "^1.2.2", "probe-image-size": "^7.2.3", "regl-error2d": "^2.0.12", "regl-line2d": "^3.1.3", "regl-scatter2d": "^3.3.1", "regl-splom": "^1.0.14", "strongly-connected-components": "^1.0.1", "superscript-text": "^1.0.0", "svg-path-sdf": "^1.1.3", "tinycolor2": "^1.4.2", "to-px": "1.0.1", "topojson-client": "^3.1.0", "webgl-context": "^2.2.0", "world-calendars": "^1.0.4" }, "engines": { "node": ">=18.0.0" } }, "node_modules/point-in-polygon": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/point-in-polygon/-/point-in-polygon-1.1.0.tgz", "integrity": "sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==", "license": "MIT" }, "node_modules/polybooljs": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/polybooljs/-/polybooljs-1.2.2.tgz", "integrity": "sha512-ziHW/02J0XuNuUtmidBc6GXE8YohYydp3DWPWXYsd7O721TjcmN+k6ezjdwkDqep+gnWnFY+yqZHvzElra2oCg==", "license": "MIT" }, "node_modules/possible-typed-array-names": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/postcss": { "version": "8.5.6", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12 || >=14" } }, "node_modules/postcss-attribute-case-insensitive": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.10" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-browser-comments": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", "license": "CC0-1.0", "engines": { "node": ">=8" }, "peerDependencies": { "browserslist": ">=4", "postcss": ">=8" } }, "node_modules/postcss-calc": { "version": "8.2.4", "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.9", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2.2" } }, "node_modules/postcss-clamp": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": ">=7.6.0" }, "peerDependencies": { "postcss": "^8.4.6" } }, "node_modules/postcss-color-functional-notation": { "version": "4.2.4", "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-color-hex-alpha": { "version": "8.0.4", "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.4" } }, "node_modules/postcss-color-rebeccapurple": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-colormin": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "caniuse-api": "^3.0.0", "colord": "^2.9.1", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-convert-values": { "version": "5.1.3", "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-custom-media": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.3" } }, "node_modules/postcss-custom-properties": { "version": "12.1.11", "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-custom-selectors": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.4" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.3" } }, "node_modules/postcss-dir-pseudo-class": { "version": "6.0.5", "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", "license": "CC0-1.0", "dependencies": { "postcss-selector-parser": "^6.0.10" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-discard-comments": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-discard-duplicates": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-discard-empty": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-discard-overridden": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-double-position-gradients": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", "license": "CC0-1.0", "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-env-function": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "peerDependencies": { "postcss": "^8.4" } }, "node_modules/postcss-flexbugs-fixes": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", "license": "MIT", "peerDependencies": { "postcss": "^8.1.4" } }, "node_modules/postcss-focus-visible": { "version": "6.0.4", "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", "license": "CC0-1.0", "dependencies": { "postcss-selector-parser": "^6.0.9" }, "engines": { "node": "^12 || ^14 || >=16" }, "peerDependencies": { "postcss": "^8.4" } }, "node_modules/postcss-focus-within": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", "license": "CC0-1.0", "dependencies": { "postcss-selector-parser": "^6.0.9" }, "engines": { "node": "^12 || ^14 || >=16" }, "peerDependencies": { "postcss": "^8.4" } }, "node_modules/postcss-font-variant": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", "license": "MIT", "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/postcss-gap-properties": { "version": "3.0.5", "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", "license": "CC0-1.0", "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-image-set-function": { "version": "4.0.7", "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-import": { "version": "15.1.0", "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.0.0", "read-cache": "^1.0.0", "resolve": "^1.1.7" }, "engines": { "node": ">=14.0.0" }, "peerDependencies": { "postcss": "^8.0.0" } }, "node_modules/postcss-initial": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", "license": "MIT", "peerDependencies": { "postcss": "^8.0.0" } }, "node_modules/postcss-js": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", "license": "MIT", "dependencies": { "camelcase-css": "^2.0.1" }, "engines": { "node": "^12 || ^14 || >= 16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, "peerDependencies": { "postcss": "^8.4.21" } }, "node_modules/postcss-lab-function": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", "license": "CC0-1.0", "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-load-config": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "lilconfig": "^3.0.0", "yaml": "^2.3.4" }, "engines": { "node": ">= 14" }, "peerDependencies": { "postcss": ">=8.0.9", "ts-node": ">=9.0.0" }, "peerDependenciesMeta": { "postcss": { "optional": true }, "ts-node": { "optional": true } } }, "node_modules/postcss-load-config/node_modules/lilconfig": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", "license": "MIT", "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/antonk52" } }, "node_modules/postcss-load-config/node_modules/yaml": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.0.tgz", "integrity": "sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==", "license": "ISC", "bin": { "yaml": "bin.mjs" }, "engines": { "node": ">= 14.6" } }, "node_modules/postcss-loader": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", "license": "MIT", "dependencies": { "cosmiconfig": "^7.0.0", "klona": "^2.0.5", "semver": "^7.3.5" }, "engines": { "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "postcss": "^7.0.0 || ^8.0.1", "webpack": "^5.0.0" } }, "node_modules/postcss-logical": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", "license": "CC0-1.0", "engines": { "node": "^12 || ^14 || >=16" }, "peerDependencies": { "postcss": "^8.4" } }, "node_modules/postcss-media-minmax": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", "license": "MIT", "engines": { "node": ">=10.0.0" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/postcss-merge-longhand": { "version": "5.1.7", "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0", "stylehacks": "^5.1.1" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-merge-rules": { "version": "5.1.4", "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "caniuse-api": "^3.0.0", "cssnano-utils": "^3.1.0", "postcss-selector-parser": "^6.0.5" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-minify-font-values": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-minify-gradients": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", "license": "MIT", "dependencies": { "colord": "^2.9.1", "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-minify-params": { "version": "5.1.4", "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-minify-selectors": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.5" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-modules-extract-imports": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/postcss-modules-local-by-default": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", "license": "MIT", "dependencies": { "icss-utils": "^5.0.0", "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.1.0" }, "engines": { "node": "^10 || ^12 || >= 14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" }, "engines": { "node": ">=4" } }, "node_modules/postcss-modules-scope": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", "license": "ISC", "dependencies": { "postcss-selector-parser": "^7.0.0" }, "engines": { "node": "^10 || ^12 || >= 14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" }, "engines": { "node": ">=4" } }, "node_modules/postcss-modules-values": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "license": "ISC", "dependencies": { "icss-utils": "^5.0.0" }, "engines": { "node": "^10 || ^12 || >= 14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/postcss-nested": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.1.1" }, "engines": { "node": ">=12.0" }, "peerDependencies": { "postcss": "^8.2.14" } }, "node_modules/postcss-nesting": { "version": "10.2.0", "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", "license": "CC0-1.0", "dependencies": { "@csstools/selector-specificity": "^2.0.0", "postcss-selector-parser": "^6.0.10" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-normalize": { "version": "10.0.1", "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", "license": "CC0-1.0", "dependencies": { "@csstools/normalize.css": "*", "postcss-browser-comments": "^4", "sanitize.css": "*" }, "engines": { "node": ">= 12" }, "peerDependencies": { "browserslist": ">= 4", "postcss": ">= 8" } }, "node_modules/postcss-normalize-charset": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-display-values": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-positions": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-repeat-style": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-string": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-timing-functions": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-unicode": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-url": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", "license": "MIT", "dependencies": { "normalize-url": "^6.0.1", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-whitespace": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-opacity-percentage": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", "funding": [ { "type": "kofi", "url": "https://ko-fi.com/mrcgrtz" }, { "type": "liberapay", "url": "https://liberapay.com/mrcgrtz" } ], "license": "MIT", "engines": { "node": "^12 || ^14 || >=16" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-ordered-values": { "version": "5.1.3", "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", "license": "MIT", "dependencies": { "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-overflow-shorthand": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-page-break": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", "license": "MIT", "peerDependencies": { "postcss": "^8" } }, "node_modules/postcss-place": { "version": "7.0.5", "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-preset-env": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", "license": "CC0-1.0", "dependencies": { "@csstools/postcss-cascade-layers": "^1.1.1", "@csstools/postcss-color-function": "^1.1.1", "@csstools/postcss-font-format-keywords": "^1.0.1", "@csstools/postcss-hwb-function": "^1.0.2", "@csstools/postcss-ic-unit": "^1.0.1", "@csstools/postcss-is-pseudo-class": "^2.0.7", "@csstools/postcss-nested-calc": "^1.0.0", "@csstools/postcss-normalize-display-values": "^1.0.1", "@csstools/postcss-oklab-function": "^1.1.1", "@csstools/postcss-progressive-custom-properties": "^1.3.0", "@csstools/postcss-stepped-value-functions": "^1.0.1", "@csstools/postcss-text-decoration-shorthand": "^1.0.0", "@csstools/postcss-trigonometric-functions": "^1.0.2", "@csstools/postcss-unset-value": "^1.0.2", "autoprefixer": "^10.4.13", "browserslist": "^4.21.4", "css-blank-pseudo": "^3.0.3", "css-has-pseudo": "^3.0.4", "css-prefers-color-scheme": "^6.0.3", "cssdb": "^7.1.0", "postcss-attribute-case-insensitive": "^5.0.2", "postcss-clamp": "^4.1.0", "postcss-color-functional-notation": "^4.2.4", "postcss-color-hex-alpha": "^8.0.4", "postcss-color-rebeccapurple": "^7.1.1", "postcss-custom-media": "^8.0.2", "postcss-custom-properties": "^12.1.10", "postcss-custom-selectors": "^6.0.3", "postcss-dir-pseudo-class": "^6.0.5", "postcss-double-position-gradients": "^3.1.2", "postcss-env-function": "^4.0.6", "postcss-focus-visible": "^6.0.4", "postcss-focus-within": "^5.0.4", "postcss-font-variant": "^5.0.0", "postcss-gap-properties": "^3.0.5", "postcss-image-set-function": "^4.0.7", "postcss-initial": "^4.0.1", "postcss-lab-function": "^4.2.1", "postcss-logical": "^5.0.4", "postcss-media-minmax": "^5.0.0", "postcss-nesting": "^10.2.0", "postcss-opacity-percentage": "^1.1.2", "postcss-overflow-shorthand": "^3.0.4", "postcss-page-break": "^3.0.4", "postcss-place": "^7.0.5", "postcss-pseudo-class-any-link": "^7.1.6", "postcss-replace-overflow-wrap": "^4.0.0", "postcss-selector-not": "^6.0.1", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-pseudo-class-any-link": { "version": "7.1.6", "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", "license": "CC0-1.0", "dependencies": { "postcss-selector-parser": "^6.0.10" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-reduce-initial": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "caniuse-api": "^3.0.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-reduce-transforms": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-replace-overflow-wrap": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", "license": "MIT", "peerDependencies": { "postcss": "^8.0.3" } }, "node_modules/postcss-selector-not": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.10" }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { "postcss": "^8.2" } }, "node_modules/postcss-selector-parser": { "version": "6.1.2", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" }, "engines": { "node": ">=4" } }, "node_modules/postcss-svgo": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0", "svgo": "^2.7.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-svgo/node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "license": "MIT", "engines": { "node": ">= 10" } }, "node_modules/postcss-svgo/node_modules/css-tree": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", "license": "MIT", "dependencies": { "mdn-data": "2.0.14", "source-map": "^0.6.1" }, "engines": { "node": ">=8.0.0" } }, "node_modules/postcss-svgo/node_modules/mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", "license": "CC0-1.0" }, "node_modules/postcss-svgo/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/postcss-svgo/node_modules/svgo": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", "license": "MIT", "dependencies": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^4.1.3", "css-tree": "^1.1.3", "csso": "^4.2.0", "picocolors": "^1.0.0", "stable": "^0.1.8" }, "bin": { "svgo": "bin/svgo" }, "engines": { "node": ">=10.13.0" } }, "node_modules/postcss-unique-selectors": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.5" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "license": "MIT" }, "node_modules/potpack": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/potpack/-/potpack-1.0.2.tgz", "integrity": "sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==", "license": "ISC" }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "license": "MIT", "engines": { "node": ">= 0.8.0" } }, "node_modules/pretty-bytes": { "version": "5.6.0", "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", "license": "MIT", "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/pretty-error": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", "license": "MIT", "dependencies": { "lodash": "^4.17.20", "renderkid": "^3.0.0" } }, "node_modules/pretty-format": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^17.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/probe-image-size": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/probe-image-size/-/probe-image-size-7.2.3.tgz", "integrity": "sha512-HubhG4Rb2UH8YtV4ba0Vp5bQ7L78RTONYu/ujmCu5nBI8wGv24s4E9xSKBi0N1MowRpxk76pFCpJtW0KPzOK0w==", "license": "MIT", "dependencies": { "lodash.merge": "^4.6.2", "needle": "^2.5.2", "stream-parser": "~0.3.1" } }, "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "license": "MIT" }, "node_modules/promise": { "version": "8.3.0", "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", "license": "MIT", "dependencies": { "asap": "~2.0.6" } }, "node_modules/prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "license": "MIT", "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" }, "engines": { "node": ">= 6" } }, "node_modules/prop-types": { "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "license": "MIT", "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }, "node_modules/prop-types/node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "license": "MIT" }, "node_modules/protocol-buffers-schema": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz", "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==", "license": "MIT" }, "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "license": "MIT", "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" }, "engines": { "node": ">= 0.10" } }, "node_modules/proxy-addr/node_modules/ipaddr.js": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "license": "MIT", "engines": { "node": ">= 0.10" } }, "node_modules/psl": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz", "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==", "license": "MIT", "dependencies": { "punycode": "^2.3.1" }, "funding": { "url": "https://github.com/sponsors/lupomontero" } }, "node_modules/punycode": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/q": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)", "license": "MIT", "engines": { "node": ">=0.6.0", "teleport": ">=0.2.0" } }, "node_modules/qs": { "version": "6.13.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.0.6" }, "engines": { "node": ">=0.6" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/querystringify": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", "license": "MIT" }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT" }, "node_modules/quickselect": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==", "license": "ISC" }, "node_modules/raf": { "version": "3.4.1", "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", "license": "MIT", "dependencies": { "performance-now": "^2.1.0" } }, "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "license": "MIT", "dependencies": { "safe-buffer": "^5.1.0" } }, "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/raw-body": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", "license": "MIT", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/raw-body/node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, "engines": { "node": ">=0.10.0" } }, "node_modules/react": { "version": "19.1.0", "resolved": "https://registry.npmjs.org/react/-/react-19.1.0.tgz", "integrity": "sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/react-app-polyfill": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", "license": "MIT", "dependencies": { "core-js": "^3.19.2", "object-assign": "^4.1.1", "promise": "^8.1.0", "raf": "^3.4.1", "regenerator-runtime": "^0.13.9", "whatwg-fetch": "^3.6.2" }, "engines": { "node": ">=14" } }, "node_modules/react-dev-utils": { "version": "12.0.1", "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.16.0", "address": "^1.1.2", "browserslist": "^4.18.1", "chalk": "^4.1.2", "cross-spawn": "^7.0.3", "detect-port-alt": "^1.1.6", "escape-string-regexp": "^4.0.0", "filesize": "^8.0.6", "find-up": "^5.0.0", "fork-ts-checker-webpack-plugin": "^6.5.0", "global-modules": "^2.0.0", "globby": "^11.0.4", "gzip-size": "^6.0.0", "immer": "^9.0.7", "is-root": "^2.1.0", "loader-utils": "^3.2.0", "open": "^8.4.0", "pkg-up": "^3.1.0", "prompts": "^2.4.2", "react-error-overlay": "^6.0.11", "recursive-readdir": "^2.2.2", "shell-quote": "^1.7.3", "strip-ansi": "^6.0.1", "text-table": "^0.2.0" }, "engines": { "node": ">=14" } }, "node_modules/react-dev-utils/node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/react-dev-utils/node_modules/loader-utils": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", "license": "MIT", "engines": { "node": ">= 12.13.0" } }, "node_modules/react-dev-utils/node_modules/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/react-dev-utils/node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/react-dev-utils/node_modules/p-locate": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/react-dom": { "version": "19.1.0", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.1.0.tgz", "integrity": "sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==", "license": "MIT", "dependencies": { "scheduler": "^0.26.0" }, "peerDependencies": { "react": "^19.1.0" } }, "node_modules/react-error-overlay": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.1.0.tgz", "integrity": "sha512-SN/U6Ytxf1QGkw/9ve5Y+NxBbZM6Ht95tuXNMKs8EJyFa/Vy/+Co3stop3KBHARfn/giv+Lj1uUnTfOJ3moFEQ==", "license": "MIT" }, "node_modules/react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "license": "MIT" }, "node_modules/react-plotly.js": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/react-plotly.js/-/react-plotly.js-2.6.0.tgz", "integrity": "sha512-g93xcyhAVCSt9kV1svqG1clAEdL6k3U+jjuSzfTV7owaSU9Go6Ph8bl25J+jKfKvIGAEYpe4qj++WHJuc9IaeA==", "license": "MIT", "dependencies": { "prop-types": "^15.8.1" }, "peerDependencies": { "plotly.js": ">1.34.0", "react": ">0.13.0" } }, "node_modules/react-refresh": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/react-router": { "version": "7.7.1", "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.7.1.tgz", "integrity": "sha512-jVKHXoWRIsD/qS6lvGveckwb862EekvapdHJN/cGmzw40KnJH5gg53ujOJ4qX6EKIK9LSBfFed/xiQ5yeXNrUA==", "license": "MIT", "dependencies": { "cookie": "^1.0.1", "set-cookie-parser": "^2.6.0" }, "engines": { "node": ">=20.0.0" }, "peerDependencies": { "react": ">=18", "react-dom": ">=18" }, "peerDependenciesMeta": { "react-dom": { "optional": true } } }, "node_modules/react-router-dom": { "version": "7.7.1", "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.7.1.tgz", "integrity": "sha512-bavdk2BA5r3MYalGKZ01u8PGuDBloQmzpBZVhDLrOOv1N943Wq6dcM9GhB3x8b7AbqPMEezauv4PeGkAJfy7FQ==", "license": "MIT", "dependencies": { "react-router": "7.7.1" }, "engines": { "node": ">=20.0.0" }, "peerDependencies": { "react": ">=18", "react-dom": ">=18" } }, "node_modules/react-router/node_modules/cookie": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz", "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==", "license": "MIT", "engines": { "node": ">=18" } }, "node_modules/react-scripts": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", "license": "MIT", "dependencies": { "@babel/core": "^7.16.0", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", "@svgr/webpack": "^5.5.0", "babel-jest": "^27.4.2", "babel-loader": "^8.2.3", "babel-plugin-named-asset-import": "^0.3.8", "babel-preset-react-app": "^10.0.1", "bfj": "^7.0.2", "browserslist": "^4.18.1", "camelcase": "^6.2.1", "case-sensitive-paths-webpack-plugin": "^2.4.0", "css-loader": "^6.5.1", "css-minimizer-webpack-plugin": "^3.2.0", "dotenv": "^10.0.0", "dotenv-expand": "^5.1.0", "eslint": "^8.3.0", "eslint-config-react-app": "^7.0.1", "eslint-webpack-plugin": "^3.1.1", "file-loader": "^6.2.0", "fs-extra": "^10.0.0", "html-webpack-plugin": "^5.5.0", "identity-obj-proxy": "^3.0.0", "jest": "^27.4.3", "jest-resolve": "^27.4.2", "jest-watch-typeahead": "^1.0.0", "mini-css-extract-plugin": "^2.4.5", "postcss": "^8.4.4", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^6.2.1", "postcss-normalize": "^10.0.1", "postcss-preset-env": "^7.0.1", "prompts": "^2.4.2", "react-app-polyfill": "^3.0.0", "react-dev-utils": "^12.0.1", "react-refresh": "^0.11.0", "resolve": "^1.20.0", "resolve-url-loader": "^4.0.0", "sass-loader": "^12.3.0", "semver": "^7.3.5", "source-map-loader": "^3.0.0", "style-loader": "^3.3.1", "tailwindcss": "^3.0.2", "terser-webpack-plugin": "^5.2.5", "webpack": "^5.64.4", "webpack-dev-server": "^4.6.0", "webpack-manifest-plugin": "^4.0.2", "workbox-webpack-plugin": "^6.4.1" }, "bin": { "react-scripts": "bin/react-scripts.js" }, "engines": { "node": ">=14.0.0" }, "optionalDependencies": { "fsevents": "^2.3.2" }, "peerDependencies": { "react": ">= 16", "typescript": "^3.2.1 || ^4" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/read-cache": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", "license": "MIT", "dependencies": { "pify": "^2.3.0" } }, "node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "license": "MIT", "dependencies": { "picomatch": "^2.2.1" }, "engines": { "node": ">=8.10.0" } }, "node_modules/recursive-readdir": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", "license": "MIT", "dependencies": { "minimatch": "^3.0.5" }, "engines": { "node": ">=6.0.0" } }, "node_modules/redent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "license": "MIT", "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/reflect.getprototypeof": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.9", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.7", "get-proto": "^1.0.1", "which-builtin-type": "^1.2.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/regenerate": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", "license": "MIT" }, "node_modules/regenerate-unicode-properties": { "version": "10.2.0", "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", "license": "MIT", "dependencies": { "regenerate": "^1.4.2" }, "engines": { "node": ">=4" } }, "node_modules/regenerator-runtime": { "version": "0.13.11", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", "license": "MIT" }, "node_modules/regex-parser": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.1.tgz", "integrity": "sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==", "license": "MIT" }, "node_modules/regexp.prototype.flags": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-errors": "^1.3.0", "get-proto": "^1.0.1", "gopd": "^1.2.0", "set-function-name": "^2.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/regexpu-core": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", "license": "MIT", "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.2.0", "regjsgen": "^0.8.0", "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" }, "engines": { "node": ">=4" } }, "node_modules/regjsgen": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", "license": "MIT" }, "node_modules/regjsparser": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", "license": "BSD-2-Clause", "dependencies": { "jsesc": "~3.0.2" }, "bin": { "regjsparser": "bin/parser" } }, "node_modules/regjsparser/node_modules/jsesc": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, "engines": { "node": ">=6" } }, "node_modules/regl": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/regl/-/regl-2.1.1.tgz", "integrity": "sha512-+IOGrxl3FZ8ZM9ixCWQZzFRiRn7Rzn9bu3iFHwg/yz4tlOUQgbO4PHLgG+1ZT60zcIV8tief6Qrmyl8qcoJP0g==", "license": "MIT" }, "node_modules/regl-error2d": { "version": "2.0.12", "resolved": "https://registry.npmjs.org/regl-error2d/-/regl-error2d-2.0.12.tgz", "integrity": "sha512-r7BUprZoPO9AbyqM5qlJesrSRkl+hZnVKWKsVp7YhOl/3RIpi4UDGASGJY0puQ96u5fBYw/OlqV24IGcgJ0McA==", "license": "MIT", "dependencies": { "array-bounds": "^1.0.1", "color-normalize": "^1.5.0", "flatten-vertex-data": "^1.0.2", "object-assign": "^4.1.1", "pick-by-alias": "^1.2.0", "to-float32": "^1.1.0", "update-diff": "^1.1.0" } }, "node_modules/regl-line2d": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/regl-line2d/-/regl-line2d-3.1.3.tgz", "integrity": "sha512-fkgzW+tTn4QUQLpFKsUIE0sgWdCmXAM3ctXcCgoGBZTSX5FE2A0M7aynz7nrZT5baaftLrk9te54B+MEq4QcSA==", "license": "MIT", "dependencies": { "array-bounds": "^1.0.1", "array-find-index": "^1.0.2", "array-normalize": "^1.1.4", "color-normalize": "^1.5.0", "earcut": "^2.1.5", "es6-weak-map": "^2.0.3", "flatten-vertex-data": "^1.0.2", "object-assign": "^4.1.1", "parse-rect": "^1.2.0", "pick-by-alias": "^1.2.0", "to-float32": "^1.1.0" } }, "node_modules/regl-scatter2d": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/regl-scatter2d/-/regl-scatter2d-3.3.1.tgz", "integrity": "sha512-seOmMIVwaCwemSYz/y4WE0dbSO9svNFSqtTh5RE57I7PjGo3tcUYKtH0MTSoshcAsreoqN8HoCtnn8wfHXXfKQ==", "license": "MIT", "dependencies": { "@plotly/point-cluster": "^3.1.9", "array-range": "^1.0.1", "array-rearrange": "^2.2.2", "clamp": "^1.0.1", "color-id": "^1.1.0", "color-normalize": "^1.5.0", "color-rgba": "^2.1.1", "flatten-vertex-data": "^1.0.2", "glslify": "^7.0.0", "is-iexplorer": "^1.0.0", "object-assign": "^4.1.1", "parse-rect": "^1.2.0", "pick-by-alias": "^1.2.0", "to-float32": "^1.1.0", "update-diff": "^1.1.0" } }, "node_modules/regl-scatter2d/node_modules/color-parse": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-1.4.3.tgz", "integrity": "sha512-BADfVl/FHkQkyo8sRBwMYBqemqsgnu7JZAwUgvBvuwwuNUZAhSvLTbsEErS5bQXzOjDR0dWzJ4vXN2Q+QoPx0A==", "license": "MIT", "dependencies": { "color-name": "^1.0.0" } }, "node_modules/regl-scatter2d/node_modules/color-rgba": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/color-rgba/-/color-rgba-2.4.0.tgz", "integrity": "sha512-Nti4qbzr/z2LbUWySr7H9dk3Rl7gZt7ihHAxlgT4Ho90EXWkjtkL1avTleu9yeGuqrt/chxTB6GKK8nZZ6V0+Q==", "license": "MIT", "dependencies": { "color-parse": "^1.4.2", "color-space": "^2.0.0" } }, "node_modules/regl-splom": { "version": "1.0.14", "resolved": "https://registry.npmjs.org/regl-splom/-/regl-splom-1.0.14.tgz", "integrity": "sha512-OiLqjmPRYbd7kDlHC6/zDf6L8lxgDC65BhC8JirhP4ykrK4x22ZyS+BnY8EUinXKDeMgmpRwCvUmk7BK4Nweuw==", "license": "MIT", "dependencies": { "array-bounds": "^1.0.1", "array-range": "^1.0.1", "color-alpha": "^1.0.4", "flatten-vertex-data": "^1.0.2", "parse-rect": "^1.2.0", "pick-by-alias": "^1.2.0", "raf": "^3.4.1", "regl-scatter2d": "^3.2.3" } }, "node_modules/relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", "license": "MIT", "engines": { "node": ">= 0.10" } }, "node_modules/renderkid": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", "license": "MIT", "dependencies": { "css-select": "^4.1.3", "dom-converter": "^0.2.0", "htmlparser2": "^6.1.0", "lodash": "^4.17.21", "strip-ansi": "^6.0.1" } }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "license": "MIT" }, "node_modules/resolve": { "version": "1.22.10", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", "license": "MIT", "dependencies": { "is-core-module": "^2.16.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/resolve-cwd": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "license": "MIT", "dependencies": { "resolve-from": "^5.0.0" }, "engines": { "node": ">=8" } }, "node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/resolve-protobuf-schema": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz", "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==", "license": "MIT", "dependencies": { "protocol-buffers-schema": "^3.3.1" } }, "node_modules/resolve-url-loader": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", "license": "MIT", "dependencies": { "adjust-sourcemap-loader": "^4.0.0", "convert-source-map": "^1.7.0", "loader-utils": "^2.0.0", "postcss": "^7.0.35", "source-map": "0.6.1" }, "engines": { "node": ">=8.9" }, "peerDependencies": { "rework": "1.0.1", "rework-visit": "1.0.0" }, "peerDependenciesMeta": { "rework": { "optional": true }, "rework-visit": { "optional": true } } }, "node_modules/resolve-url-loader/node_modules/convert-source-map": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "license": "MIT" }, "node_modules/resolve-url-loader/node_modules/picocolors": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", "license": "ISC" }, "node_modules/resolve-url-loader/node_modules/postcss": { "version": "7.0.39", "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "license": "MIT", "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/postcss/" } }, "node_modules/resolve-url-loader/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/resolve.exports": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/reusify": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", "license": "MIT", "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" } }, "node_modules/right-now": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/right-now/-/right-now-1.0.0.tgz", "integrity": "sha512-DA8+YS+sMIVpbsuKgy+Z67L9Lxb1p05mNxRpDPNksPDEFir4vmBlUtuN9jkTGn9YMMdlBuK7XQgFiz6ws+yhSg==", "license": "MIT" }, "node_modules/rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "deprecated": "Rimraf versions prior to v4 are no longer supported", "license": "ISC", "dependencies": { "glob": "^7.1.3" }, "bin": { "rimraf": "bin.js" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/rollup": { "version": "2.79.2", "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.2.tgz", "integrity": "sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==", "license": "MIT", "bin": { "rollup": "dist/bin/rollup" }, "engines": { "node": ">=10.0.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "node_modules/rollup-plugin-terser": { "version": "7.0.2", "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.10.4", "jest-worker": "^26.2.1", "serialize-javascript": "^4.0.0", "terser": "^5.0.0" }, "peerDependencies": { "rollup": "^2.0.0" } }, "node_modules/rollup-plugin-terser/node_modules/jest-worker": { "version": "26.6.2", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", "license": "MIT", "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", "supports-color": "^7.0.0" }, "engines": { "node": ">= 10.13.0" } }, "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" } }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/rw": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", "license": "BSD-3-Clause" }, "node_modules/safe-array-concat": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "get-intrinsic": "^1.2.6", "has-symbols": "^1.1.0", "isarray": "^2.0.5" }, "engines": { "node": ">=0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT" }, "node_modules/safe-push-apply": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "isarray": "^2.0.5" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/safe-regex-test": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "license": "MIT" }, "node_modules/sanitize.css": { "version": "13.0.0", "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==", "license": "CC0-1.0" }, "node_modules/sass-loader": { "version": "12.6.0", "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", "license": "MIT", "dependencies": { "klona": "^2.0.4", "neo-async": "^2.6.2" }, "engines": { "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "fibers": ">= 3.1.0", "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", "sass": "^1.3.0", "sass-embedded": "*", "webpack": "^5.0.0" }, "peerDependenciesMeta": { "fibers": { "optional": true }, "node-sass": { "optional": true }, "sass": { "optional": true }, "sass-embedded": { "optional": true } } }, "node_modules/sax": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", "license": "ISC" }, "node_modules/saxes": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", "license": "ISC", "dependencies": { "xmlchars": "^2.2.0" }, "engines": { "node": ">=10" } }, "node_modules/scheduler": { "version": "0.26.0", "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.26.0.tgz", "integrity": "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==", "license": "MIT" }, "node_modules/schema-utils": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", "ajv-formats": "^2.1.1", "ajv-keywords": "^5.1.0" }, "engines": { "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" } }, "node_modules/schema-utils/node_modules/ajv": { "version": "8.17.1", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/schema-utils/node_modules/ajv-keywords": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" }, "peerDependencies": { "ajv": "^8.8.2" } }, "node_modules/schema-utils/node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "license": "MIT" }, "node_modules/select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", "license": "MIT" }, "node_modules/selfsigned": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", "license": "MIT", "dependencies": { "@types/node-forge": "^1.3.0", "node-forge": "^1" }, "engines": { "node": ">=10" } }, "node_modules/semver": { "version": "7.7.2", "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/send": { "version": "0.19.0", "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "license": "MIT", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/send/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, "node_modules/send/node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/serialize-javascript": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" } }, "node_modules/serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "license": "MIT", "dependencies": { "accepts": "~1.3.4", "batch": "0.6.1", "debug": "2.6.9", "escape-html": "~1.0.3", "http-errors": "~1.6.2", "mime-types": "~2.1.17", "parseurl": "~1.3.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/serve-index/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/serve-index/node_modules/depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/serve-index/node_modules/http-errors": { "version": "1.6.3", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", "license": "MIT", "dependencies": { "depd": "~1.1.2", "inherits": "2.0.3", "setprototypeof": "1.1.0", "statuses": ">= 1.4.0 < 2" }, "engines": { "node": ">= 0.6" } }, "node_modules/serve-index/node_modules/inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", "license": "ISC" }, "node_modules/serve-index/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, "node_modules/serve-index/node_modules/setprototypeof": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", "license": "ISC" }, "node_modules/serve-index/node_modules/statuses": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/serve-static": { "version": "1.16.2", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "license": "MIT", "dependencies": { "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/set-cookie-parser": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", "license": "MIT" }, "node_modules/set-function-length": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/set-function-name": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "functions-have-names": "^1.2.3", "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/set-proto": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", "license": "MIT", "dependencies": { "dunder-proto": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" } }, "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "license": "ISC" }, "node_modules/shallow-copy": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz", "integrity": "sha512-b6i4ZpVuUxB9h5gfCxPiusKYkqTMOjEbBs4wMaFbkfia4yFv92UKZ6Df8WXcKbn08JNL/abvg3FnMAOfakDvUw==", "license": "MIT" }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/shell-quote": { "version": "1.8.3", "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz", "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==", "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/side-channel": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3", "side-channel-list": "^1.0.0", "side-channel-map": "^1.0.1", "side-channel-weakmap": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/side-channel-list": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/side-channel-map": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/side-channel-weakmap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3", "side-channel-map": "^1.0.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "license": "ISC" }, "node_modules/signum": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/signum/-/signum-1.0.0.tgz", "integrity": "sha512-yodFGwcyt59XRh7w5W3jPcIQb3Bwi21suEfT7MAWnBX3iCdklJpgDgvGT9o04UonglZN5SNMfJFkHIR/jO8GHw==", "license": "MIT" }, "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "license": "MIT" }, "node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/sockjs": { "version": "0.3.24", "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "license": "MIT", "dependencies": { "faye-websocket": "^0.11.3", "uuid": "^8.3.2", "websocket-driver": "^0.7.4" } }, "node_modules/source-list-map": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", "license": "MIT" }, "node_modules/source-map": { "version": "0.7.6", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", "license": "BSD-3-Clause", "engines": { "node": ">= 12" } }, "node_modules/source-map-js": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-loader": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", "license": "MIT", "dependencies": { "abab": "^2.0.5", "iconv-lite": "^0.6.3", "source-map-js": "^1.0.1" }, "engines": { "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^5.0.0" } }, "node_modules/source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "node_modules/source-map-support/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/sourcemap-codec": { "version": "1.4.8", "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", "deprecated": "Please use @jridgewell/sourcemap-codec instead", "license": "MIT" }, "node_modules/spdy": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", "license": "MIT", "dependencies": { "debug": "^4.1.0", "handle-thing": "^2.0.0", "http-deceiver": "^1.2.7", "select-hose": "^2.0.0", "spdy-transport": "^3.0.0" }, "engines": { "node": ">=6.0.0" } }, "node_modules/spdy-transport": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", "license": "MIT", "dependencies": { "debug": "^4.1.0", "detect-node": "^2.0.4", "hpack.js": "^2.1.6", "obuf": "^1.1.2", "readable-stream": "^3.0.6", "wbuf": "^1.7.3" } }, "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "license": "BSD-3-Clause" }, "node_modules/stable": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", "license": "MIT" }, "node_modules/stack-trace": { "version": "0.0.9", "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz", "integrity": "sha512-vjUc6sfgtgY0dxCdnc40mK6Oftjo9+2K8H/NG81TMhgL392FtiPA9tn9RLyTxXmTLPJPjF3VyzFp6bsWFLisMQ==", "engines": { "node": "*" } }, "node_modules/stack-utils": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "license": "MIT", "dependencies": { "escape-string-regexp": "^2.0.0" }, "engines": { "node": ">=10" } }, "node_modules/stack-utils/node_modules/escape-string-regexp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/stackframe": { "version": "1.3.4", "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", "license": "MIT" }, "node_modules/static-eval": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz", "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==", "license": "MIT", "dependencies": { "escodegen": "^1.8.1" } }, "node_modules/static-eval/node_modules/escodegen": { "version": "1.14.3", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", "license": "BSD-2-Clause", "dependencies": { "esprima": "^4.0.1", "estraverse": "^4.2.0", "esutils": "^2.0.2", "optionator": "^0.8.1" }, "bin": { "escodegen": "bin/escodegen.js", "esgenerate": "bin/esgenerate.js" }, "engines": { "node": ">=4.0" }, "optionalDependencies": { "source-map": "~0.6.1" } }, "node_modules/static-eval/node_modules/estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, "node_modules/static-eval/node_modules/levn": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", "license": "MIT", "dependencies": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/static-eval/node_modules/optionator": { "version": "0.8.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "license": "MIT", "dependencies": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", "levn": "~0.3.0", "prelude-ls": "~1.1.2", "type-check": "~0.3.2", "word-wrap": "~1.2.3" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/static-eval/node_modules/prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", "engines": { "node": ">= 0.8.0" } }, "node_modules/static-eval/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "optional": true, "engines": { "node": ">=0.10.0" } }, "node_modules/static-eval/node_modules/type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", "license": "MIT", "dependencies": { "prelude-ls": "~1.1.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/stop-iteration-iterator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "internal-slot": "^1.1.0" }, "engines": { "node": ">= 0.4" } }, "node_modules/stream-parser": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/stream-parser/-/stream-parser-0.3.1.tgz", "integrity": "sha512-bJ/HgKq41nlKvlhccD5kaCr/P+Hu0wPNKPJOH7en+YrJu/9EgqUF+88w5Jb6KNcjOFMhfX4B2asfeAtIGuHObQ==", "license": "MIT", "dependencies": { "debug": "2" } }, "node_modules/stream-parser/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/stream-parser/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, "node_modules/stream-shift": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", "license": "MIT" }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "license": "MIT", "dependencies": { "safe-buffer": "~5.2.0" } }, "node_modules/string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "license": "MIT", "dependencies": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" } }, "node_modules/string-natural-compare": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", "license": "MIT" }, "node_modules/string-split-by": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/string-split-by/-/string-split-by-1.0.0.tgz", "integrity": "sha512-KaJKY+hfpzNyet/emP81PJA9hTVSfxNLS9SFTWxdCnnW1/zOOwiV248+EfoX7IQFcBaOp4G5YE6xTJMF+pLg6A==", "license": "MIT", "dependencies": { "parenthesis": "^3.1.5" } }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/string-width-cjs": { "name": "string-width", "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/string-width-cjs/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "license": "MIT" }, "node_modules/string-width/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "license": "MIT" }, "node_modules/string.prototype.includes": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.3" }, "engines": { "node": ">= 0.4" } }, "node_modules/string.prototype.matchall": { "version": "4.0.12", "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-abstract": "^1.23.6", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.6", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "internal-slot": "^1.1.0", "regexp.prototype.flags": "^1.5.3", "set-function-name": "^2.0.2", "side-channel": "^1.1.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.repeat": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", "license": "MIT", "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5" } }, "node_modules/string.prototype.trim": { "version": "1.2.10", "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-data-property": "^1.1.4", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-object-atoms": "^1.0.0", "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.trimend": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.trimstart": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/stringify-object": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", "license": "BSD-2-Clause", "dependencies": { "get-own-enumerable-property-symbols": "^3.0.0", "is-obj": "^1.0.1", "is-regexp": "^1.0.0" }, "engines": { "node": ">=4" } }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-ansi-cjs": { "name": "strip-ansi", "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/strip-comments": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/strip-indent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "license": "MIT", "dependencies": { "min-indent": "^1.0.0" }, "engines": { "node": ">=8" } }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "license": "MIT", "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/strongly-connected-components": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/strongly-connected-components/-/strongly-connected-components-1.0.1.tgz", "integrity": "sha512-i0TFx4wPcO0FwX+4RkLJi1MxmcTv90jNZgxMu9XRnMXMeFUY1VJlIoXpZunPUvUUqbCT1pg5PEkFqqpcaElNaA==", "license": "MIT" }, "node_modules/style-loader": { "version": "3.3.4", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", "license": "MIT", "engines": { "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^5.0.0" } }, "node_modules/stylehacks": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "postcss-selector-parser": "^6.0.4" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/sucrase": { "version": "3.35.0", "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.2", "commander": "^4.0.0", "glob": "^10.3.10", "lines-and-columns": "^1.1.6", "mz": "^2.7.0", "pirates": "^4.0.1", "ts-interface-checker": "^0.1.9" }, "bin": { "sucrase": "bin/sucrase", "sucrase-node": "bin/sucrase-node" }, "engines": { "node": ">=16 || 14 >=14.17" } }, "node_modules/sucrase/node_modules/brace-expansion": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/sucrase/node_modules/commander": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/sucrase/node_modules/glob": { "version": "10.4.5", "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", "license": "ISC", "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^3.1.2", "minimatch": "^9.0.4", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/sucrase/node_modules/minimatch": { "version": "9.0.5", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/supercluster": { "version": "7.1.5", "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-7.1.5.tgz", "integrity": "sha512-EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg==", "license": "ISC", "dependencies": { "kdbush": "^3.0.0" } }, "node_modules/supercluster/node_modules/kdbush": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-3.0.0.tgz", "integrity": "sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==", "license": "ISC" }, "node_modules/superscript-text": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/superscript-text/-/superscript-text-1.0.0.tgz", "integrity": "sha512-gwu8l5MtRZ6koO0icVTlmN5pm7Dhh1+Xpe9O4x6ObMAsW+3jPbW14d1DsBq1F4wiI+WOFjXF35pslgec/G8yCQ==", "license": "MIT" }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/supports-hyperlinks": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" }, "engines": { "node": ">=8" } }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/svg-arc-to-cubic-bezier": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/svg-arc-to-cubic-bezier/-/svg-arc-to-cubic-bezier-3.2.0.tgz", "integrity": "sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g==", "license": "ISC" }, "node_modules/svg-parser": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", "license": "MIT" }, "node_modules/svg-path-bounds": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/svg-path-bounds/-/svg-path-bounds-1.0.2.tgz", "integrity": "sha512-H4/uAgLWrppIC0kHsb2/dWUYSmb4GE5UqH06uqWBcg6LBjX2fu0A8+JrO2/FJPZiSsNOKZAhyFFgsLTdYUvSqQ==", "license": "MIT", "dependencies": { "abs-svg-path": "^0.1.1", "is-svg-path": "^1.0.1", "normalize-svg-path": "^1.0.0", "parse-svg-path": "^0.1.2" } }, "node_modules/svg-path-bounds/node_modules/normalize-svg-path": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/normalize-svg-path/-/normalize-svg-path-1.1.0.tgz", "integrity": "sha512-r9KHKG2UUeB5LoTouwDzBy2VxXlHsiM6fyLQvnJa0S5hrhzqElH/CH7TUGhT1fVvIYBIKf3OpY4YJ4CK+iaqHg==", "license": "MIT", "dependencies": { "svg-arc-to-cubic-bezier": "^3.0.0" } }, "node_modules/svg-path-sdf": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/svg-path-sdf/-/svg-path-sdf-1.1.3.tgz", "integrity": "sha512-vJJjVq/R5lSr2KLfVXVAStktfcfa1pNFjFOgyJnzZFXlO/fDZ5DmM8FpnSKKzLPfEYTVeXuVBTHF296TpxuJVg==", "license": "MIT", "dependencies": { "bitmap-sdf": "^1.0.0", "draw-svg-path": "^1.0.0", "is-svg-path": "^1.0.1", "parse-svg-path": "^0.1.2", "svg-path-bounds": "^1.0.1" } }, "node_modules/svgo": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", "license": "MIT", "dependencies": { "chalk": "^2.4.1", "coa": "^2.0.2", "css-select": "^2.0.0", "css-select-base-adapter": "^0.1.1", "css-tree": "1.0.0-alpha.37", "csso": "^4.0.2", "js-yaml": "^3.13.1", "mkdirp": "~0.5.1", "object.values": "^1.1.0", "sax": "~1.2.4", "stable": "^0.1.8", "unquote": "~1.1.1", "util.promisify": "~1.0.0" }, "bin": { "svgo": "bin/svgo" }, "engines": { "node": ">=4.0.0" } }, "node_modules/svgo/node_modules/ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, "engines": { "node": ">=4" } }, "node_modules/svgo/node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" }, "engines": { "node": ">=4" } }, "node_modules/svgo/node_modules/color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "license": "MIT", "dependencies": { "color-name": "1.1.3" } }, "node_modules/svgo/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "license": "MIT" }, "node_modules/svgo/node_modules/css-select": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", "css-what": "^3.2.1", "domutils": "^1.7.0", "nth-check": "^1.0.2" } }, "node_modules/svgo/node_modules/css-what": { "version": "3.4.2", "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", "license": "BSD-2-Clause", "engines": { "node": ">= 6" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/svgo/node_modules/dom-serializer": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "entities": "^2.0.0" } }, "node_modules/svgo/node_modules/domutils": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "0", "domelementtype": "1" } }, "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", "license": "BSD-2-Clause" }, "node_modules/svgo/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/svgo/node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/svgo/node_modules/nth-check": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", "license": "BSD-2-Clause", "dependencies": { "boolbase": "~1.0.0" } }, "node_modules/svgo/node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "license": "MIT" }, "node_modules/tailwindcss": { "version": "3.4.17", "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz", "integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==", "license": "MIT", "dependencies": { "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", "chokidar": "^3.6.0", "didyoumean": "^1.2.2", "dlv": "^1.1.3", "fast-glob": "^3.3.2", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", "jiti": "^1.21.6", "lilconfig": "^3.1.3", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "object-hash": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.4.47", "postcss-import": "^15.1.0", "postcss-js": "^4.0.1", "postcss-load-config": "^4.0.2", "postcss-nested": "^6.2.0", "postcss-selector-parser": "^6.1.2", "resolve": "^1.22.8", "sucrase": "^3.35.0" }, "bin": { "tailwind": "lib/cli.js", "tailwindcss": "lib/cli.js" }, "engines": { "node": ">=14.0.0" } }, "node_modules/tailwindcss/node_modules/lilconfig": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", "license": "MIT", "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/antonk52" } }, "node_modules/tapable": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.2.tgz", "integrity": "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/temp-dir": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/tempy": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", "license": "MIT", "dependencies": { "is-stream": "^2.0.0", "temp-dir": "^2.0.0", "type-fest": "^0.16.0", "unique-string": "^2.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/tempy/node_modules/type-fest": { "version": "0.16.0", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/terminal-link": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", "license": "MIT", "dependencies": { "ansi-escapes": "^4.2.1", "supports-hyperlinks": "^2.0.0" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/terser": { "version": "5.43.1", "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "bin": { "terser": "bin/terser" }, "engines": { "node": ">=10" } }, "node_modules/terser-webpack-plugin": { "version": "5.3.14", "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", "schema-utils": "^4.3.0", "serialize-javascript": "^6.0.2", "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^5.1.0" }, "peerDependenciesMeta": { "@swc/core": { "optional": true }, "esbuild": { "optional": true }, "uglify-js": { "optional": true } } }, "node_modules/terser/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "license": "MIT" }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "license": "ISC", "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" }, "engines": { "node": ">=8" } }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "license": "MIT" }, "node_modules/thenify": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", "license": "MIT", "dependencies": { "any-promise": "^1.0.0" } }, "node_modules/thenify-all": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", "license": "MIT", "dependencies": { "thenify": ">= 3.1.0 < 4" }, "engines": { "node": ">=0.8" } }, "node_modules/throat": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==", "license": "MIT" }, "node_modules/through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" } }, "node_modules/through2/node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "license": "MIT" }, "node_modules/through2/node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "node_modules/through2/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "license": "MIT" }, "node_modules/through2/node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "license": "MIT" }, "node_modules/tinycolor2": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", "license": "MIT" }, "node_modules/tinyqueue": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz", "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==", "license": "ISC" }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "license": "BSD-3-Clause" }, "node_modules/to-float32": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/to-float32/-/to-float32-1.1.0.tgz", "integrity": "sha512-keDnAusn/vc+R3iEiSDw8TOF7gPiTLdK1ArvWtYbJQiVfmRg6i/CAvbKq3uIS0vWroAC7ZecN3DjQKw3aSklUg==", "license": "MIT" }, "node_modules/to-px": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/to-px/-/to-px-1.0.1.tgz", "integrity": "sha512-2y3LjBeIZYL19e5gczp14/uRWFDtDUErJPVN3VU9a7SJO+RjGRtYR47aMN2bZgGlxvW4ZcEz2ddUPVHXcMfuXw==", "license": "MIT", "dependencies": { "parse-unit": "^1.0.1" } }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, "engines": { "node": ">=8.0" } }, "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "license": "MIT", "engines": { "node": ">=0.6" } }, "node_modules/topojson-client": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz", "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==", "license": "ISC", "dependencies": { "commander": "2" }, "bin": { "topo2geo": "bin/topo2geo", "topomerge": "bin/topomerge", "topoquantize": "bin/topoquantize" } }, "node_modules/topojson-client/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "license": "MIT" }, "node_modules/tough-cookie": { "version": "4.1.4", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", "license": "BSD-3-Clause", "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", "universalify": "^0.2.0", "url-parse": "^1.5.3" }, "engines": { "node": ">=6" } }, "node_modules/tough-cookie/node_modules/universalify": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", "license": "MIT", "engines": { "node": ">= 4.0.0" } }, "node_modules/tr46": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", "license": "MIT", "dependencies": { "punycode": "^2.1.1" }, "engines": { "node": ">=8" } }, "node_modules/tryer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", "license": "MIT" }, "node_modules/ts-interface-checker": { "version": "0.1.13", "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", "license": "Apache-2.0" }, "node_modules/tsconfig-paths": { "version": "3.15.0", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "license": "MIT", "dependencies": { "@types/json5": "^0.0.29", "json5": "^1.0.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" } }, "node_modules/tsconfig-paths/node_modules/json5": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "license": "MIT", "dependencies": { "minimist": "^1.2.0" }, "bin": { "json5": "lib/cli.js" } }, "node_modules/tsconfig-paths/node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/tslib": { "version": "2.8.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "license": "0BSD" }, "node_modules/tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "license": "MIT", "dependencies": { "tslib": "^1.8.1" }, "engines": { "node": ">= 6" }, "peerDependencies": { "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, "node_modules/tsutils/node_modules/tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "license": "0BSD" }, "node_modules/type": { "version": "2.7.3", "resolved": "https://registry.npmjs.org/type/-/type-2.7.3.tgz", "integrity": "sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==", "license": "ISC" }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "license": "MIT", "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" }, "engines": { "node": ">= 0.6" } }, "node_modules/typed-array-buffer": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" } }, "node_modules/typed-array-byte-length": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/typed-array-byte-offset": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.15", "reflect.getprototypeof": "^1.0.9" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/typed-array-length": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "is-typed-array": "^1.1.13", "possible-typed-array-names": "^1.0.0", "reflect.getprototypeof": "^1.0.6" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", "license": "MIT" }, "node_modules/typedarray-pool": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/typedarray-pool/-/typedarray-pool-1.2.0.tgz", "integrity": "sha512-YTSQbzX43yvtpfRtIDAYygoYtgT+Rpjuxy9iOpczrjpXLgGoyG7aS5USJXV2d3nn8uHTeb9rXDvzS27zUg5KYQ==", "license": "MIT", "dependencies": { "bit-twiddle": "^1.0.0", "dup": "^1.0.0" } }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "license": "MIT", "dependencies": { "is-typedarray": "^1.0.0" } }, "node_modules/typescript": { "version": "4.9.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", "license": "Apache-2.0", "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { "node": ">=4.2.0" } }, "node_modules/unbox-primitive": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "has-bigints": "^1.0.2", "has-symbols": "^1.1.0", "which-boxed-primitive": "^1.1.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/underscore": { "version": "1.12.1", "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz", "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==", "license": "MIT" }, "node_modules/undici-types": { "version": "7.8.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz", "integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==", "license": "MIT" }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unicode-match-property-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "license": "MIT", "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", "unicode-property-aliases-ecmascript": "^2.0.0" }, "engines": { "node": ">=4" } }, "node_modules/unicode-match-property-value-ecmascript": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unicode-property-aliases-ecmascript": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unique-string": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", "license": "MIT", "dependencies": { "crypto-random-string": "^2.0.0" }, "engines": { "node": ">=8" } }, "node_modules/universalify": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "license": "MIT", "engines": { "node": ">= 10.0.0" } }, "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/unquote": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==", "license": "MIT" }, "node_modules/upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", "license": "MIT", "engines": { "node": ">=4", "yarn": "*" } }, "node_modules/update-browserslist-db": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" }, "peerDependencies": { "browserslist": ">= 4.21.0" } }, "node_modules/update-diff": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/update-diff/-/update-diff-1.1.0.tgz", "integrity": "sha512-rCiBPiHxZwT4+sBhEbChzpO5hYHjm91kScWgdHf4Qeafs6Ba7MBl+d9GlGv72bcTZQO0sLmtQS1pHSWoCLtN/A==", "license": "MIT" }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" } }, "node_modules/url-parse": { "version": "1.5.10", "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", "license": "MIT", "dependencies": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" } }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "license": "MIT" }, "node_modules/util.promisify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", "license": "MIT", "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.2", "has-symbols": "^1.0.1", "object.getownpropertydescriptors": "^2.1.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/utila": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", "license": "MIT" }, "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "license": "MIT", "engines": { "node": ">= 0.4.0" } }, "node_modules/uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "license": "MIT", "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/v8-to-istanbul": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", "license": "ISC", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^1.6.0", "source-map": "^0.7.3" }, "engines": { "node": ">=10.12.0" } }, "node_modules/v8-to-istanbul/node_modules/convert-source-map": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "license": "MIT" }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/vt-pbf": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/vt-pbf/-/vt-pbf-3.1.3.tgz", "integrity": "sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==", "license": "MIT", "dependencies": { "@mapbox/point-geometry": "0.1.0", "@mapbox/vector-tile": "^1.3.1", "pbf": "^3.2.1" } }, "node_modules/w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", "license": "MIT", "dependencies": { "browser-process-hrtime": "^1.0.0" } }, "node_modules/w3c-xmlserializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", "license": "MIT", "dependencies": { "xml-name-validator": "^3.0.0" }, "engines": { "node": ">=10" } }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "license": "Apache-2.0", "dependencies": { "makeerror": "1.0.12" } }, "node_modules/watchpack": { "version": "2.4.4", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" }, "engines": { "node": ">=10.13.0" } }, "node_modules/wbuf": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", "license": "MIT", "dependencies": { "minimalistic-assert": "^1.0.0" } }, "node_modules/weak-map": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/weak-map/-/weak-map-1.0.8.tgz", "integrity": "sha512-lNR9aAefbGPpHO7AEnY0hCFjz1eTkWCXYvkTRrTHs9qv8zJp+SkVYpzfLIFXQQiG3tVvbNFQgVg2bQS8YGgxyw==", "license": "Apache-2.0" }, "node_modules/web-vitals": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz", "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==", "license": "Apache-2.0" }, "node_modules/webgl-context": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/webgl-context/-/webgl-context-2.2.0.tgz", "integrity": "sha512-q/fGIivtqTT7PEoF07axFIlHNk/XCPaYpq64btnepopSWvKNFkoORlQYgqDigBIuGA1ExnFd/GnSUnBNEPQY7Q==", "license": "MIT", "dependencies": { "get-canvas-context": "^1.0.1" } }, "node_modules/webidl-conversions": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", "license": "BSD-2-Clause", "engines": { "node": ">=10.4" } }, "node_modules/webpack": { "version": "5.100.2", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.100.2.tgz", "integrity": "sha512-QaNKAvGCDRh3wW1dsDjeMdDXwZm2vqq3zn6Pvq4rHOEOGSaUMgOOjG2Y9ZbIGzpfkJk9ZYTHpDqgDfeBDcnLaw==", "license": "MIT", "dependencies": { "@types/eslint-scope": "^3.7.7", "@types/estree": "^1.0.8", "@types/json-schema": "^7.0.15", "@webassemblyjs/ast": "^1.14.1", "@webassemblyjs/wasm-edit": "^1.14.1", "@webassemblyjs/wasm-parser": "^1.14.1", "acorn": "^8.15.0", "acorn-import-phases": "^1.0.3", "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.17.2", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^4.3.2", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.3.11", "watchpack": "^2.4.1", "webpack-sources": "^3.3.3" }, "bin": { "webpack": "bin/webpack.js" }, "engines": { "node": ">=10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependenciesMeta": { "webpack-cli": { "optional": true } } }, "node_modules/webpack-dev-middleware": { "version": "5.3.4", "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", "license": "MIT", "dependencies": { "colorette": "^2.0.10", "memfs": "^3.4.3", "mime-types": "^2.1.31", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" }, "engines": { "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^4.0.0 || ^5.0.0" } }, "node_modules/webpack-dev-server": { "version": "4.15.2", "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz", "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", "license": "MIT", "dependencies": { "@types/bonjour": "^3.5.9", "@types/connect-history-api-fallback": "^1.3.5", "@types/express": "^4.17.13", "@types/serve-index": "^1.9.1", "@types/serve-static": "^1.13.10", "@types/sockjs": "^0.3.33", "@types/ws": "^8.5.5", "ansi-html-community": "^0.0.8", "bonjour-service": "^1.0.11", "chokidar": "^3.5.3", "colorette": "^2.0.10", "compression": "^1.7.4", "connect-history-api-fallback": "^2.0.0", "default-gateway": "^6.0.3", "express": "^4.17.3", "graceful-fs": "^4.2.6", "html-entities": "^2.3.2", "http-proxy-middleware": "^2.0.3", "ipaddr.js": "^2.0.1", "launch-editor": "^2.6.0", "open": "^8.0.9", "p-retry": "^4.5.0", "rimraf": "^3.0.2", "schema-utils": "^4.0.0", "selfsigned": "^2.1.1", "serve-index": "^1.9.1", "sockjs": "^0.3.24", "spdy": "^4.0.2", "webpack-dev-middleware": "^5.3.4", "ws": "^8.13.0" }, "bin": { "webpack-dev-server": "bin/webpack-dev-server.js" }, "engines": { "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^4.37.0 || ^5.0.0" }, "peerDependenciesMeta": { "webpack": { "optional": true }, "webpack-cli": { "optional": true } } }, "node_modules/webpack-dev-server/node_modules/ws": { "version": "8.18.3", "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", "license": "MIT", "engines": { "node": ">=10.0.0" }, "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "peerDependenciesMeta": { "bufferutil": { "optional": true }, "utf-8-validate": { "optional": true } } }, "node_modules/webpack-manifest-plugin": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", "license": "MIT", "dependencies": { "tapable": "^2.0.0", "webpack-sources": "^2.2.0" }, "engines": { "node": ">=12.22.0" }, "peerDependencies": { "webpack": "^4.44.2 || ^5.47.0" } }, "node_modules/webpack-manifest-plugin/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", "license": "MIT", "dependencies": { "source-list-map": "^2.0.1", "source-map": "^0.6.1" }, "engines": { "node": ">=10.13.0" } }, "node_modules/webpack-sources": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz", "integrity": "sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==", "license": "MIT", "engines": { "node": ">=10.13.0" } }, "node_modules/webpack/node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" }, "engines": { "node": ">=8.0.0" } }, "node_modules/webpack/node_modules/estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, "node_modules/websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "license": "Apache-2.0", "dependencies": { "http-parser-js": ">=0.5.1", "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" }, "engines": { "node": ">=0.8.0" } }, "node_modules/websocket-extensions": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "license": "Apache-2.0", "engines": { "node": ">=0.8.0" } }, "node_modules/whatwg-encoding": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", "license": "MIT", "dependencies": { "iconv-lite": "0.4.24" } }, "node_modules/whatwg-encoding/node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, "engines": { "node": ">=0.10.0" } }, "node_modules/whatwg-fetch": { "version": "3.6.20", "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", "license": "MIT" }, "node_modules/whatwg-mimetype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", "license": "MIT" }, "node_modules/whatwg-url": { "version": "8.7.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "license": "MIT", "dependencies": { "lodash": "^4.7.0", "tr46": "^2.1.0", "webidl-conversions": "^6.1.0" }, "engines": { "node": ">=10" } }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "bin/node-which" }, "engines": { "node": ">= 8" } }, "node_modules/which-boxed-primitive": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", "license": "MIT", "dependencies": { "is-bigint": "^1.1.0", "is-boolean-object": "^1.2.1", "is-number-object": "^1.1.1", "is-string": "^1.1.1", "is-symbol": "^1.1.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/which-builtin-type": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "function.prototype.name": "^1.1.6", "has-tostringtag": "^1.0.2", "is-async-function": "^2.0.0", "is-date-object": "^1.1.0", "is-finalizationregistry": "^1.1.0", "is-generator-function": "^1.0.10", "is-regex": "^1.2.1", "is-weakref": "^1.0.2", "isarray": "^2.0.5", "which-boxed-primitive": "^1.1.0", "which-collection": "^1.0.2", "which-typed-array": "^1.1.16" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/which-collection": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", "license": "MIT", "dependencies": { "is-map": "^2.0.3", "is-set": "^2.0.3", "is-weakmap": "^2.0.2", "is-weakset": "^2.0.3" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/which-typed-array": { "version": "1.1.19", "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "for-each": "^0.3.5", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/word-wrap": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/workbox-background-sync": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz", "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==", "license": "MIT", "dependencies": { "idb": "^7.0.1", "workbox-core": "6.6.0" } }, "node_modules/workbox-broadcast-update": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz", "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==", "license": "MIT", "dependencies": { "workbox-core": "6.6.0" } }, "node_modules/workbox-build": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz", "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==", "license": "MIT", "dependencies": { "@apideck/better-ajv-errors": "^0.3.1", "@babel/core": "^7.11.1", "@babel/preset-env": "^7.11.0", "@babel/runtime": "^7.11.2", "@rollup/plugin-babel": "^5.2.0", "@rollup/plugin-node-resolve": "^11.2.1", "@rollup/plugin-replace": "^2.4.1", "@surma/rollup-plugin-off-main-thread": "^2.2.3", "ajv": "^8.6.0", "common-tags": "^1.8.0", "fast-json-stable-stringify": "^2.1.0", "fs-extra": "^9.0.1", "glob": "^7.1.6", "lodash": "^4.17.20", "pretty-bytes": "^5.3.0", "rollup": "^2.43.1", "rollup-plugin-terser": "^7.0.0", "source-map": "^0.8.0-beta.0", "stringify-object": "^3.3.0", "strip-comments": "^2.0.1", "tempy": "^0.6.0", "upath": "^1.2.0", "workbox-background-sync": "6.6.0", "workbox-broadcast-update": "6.6.0", "workbox-cacheable-response": "6.6.0", "workbox-core": "6.6.0", "workbox-expiration": "6.6.0", "workbox-google-analytics": "6.6.0", "workbox-navigation-preload": "6.6.0", "workbox-precaching": "6.6.0", "workbox-range-requests": "6.6.0", "workbox-recipes": "6.6.0", "workbox-routing": "6.6.0", "workbox-strategies": "6.6.0", "workbox-streams": "6.6.0", "workbox-sw": "6.6.0", "workbox-window": "6.6.0" }, "engines": { "node": ">=10.0.0" } }, "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", "license": "MIT", "dependencies": { "json-schema": "^0.4.0", "jsonpointer": "^5.0.0", "leven": "^3.1.0" }, "engines": { "node": ">=10" }, "peerDependencies": { "ajv": ">=8" } }, "node_modules/workbox-build/node_modules/ajv": { "version": "8.17.1", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/workbox-build/node_modules/fs-extra": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { "node": ">=10" } }, "node_modules/workbox-build/node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "license": "MIT" }, "node_modules/workbox-build/node_modules/source-map": { "version": "0.8.0-beta.0", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", "license": "BSD-3-Clause", "dependencies": { "whatwg-url": "^7.0.0" }, "engines": { "node": ">= 8" } }, "node_modules/workbox-build/node_modules/tr46": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", "license": "MIT", "dependencies": { "punycode": "^2.1.0" } }, "node_modules/workbox-build/node_modules/webidl-conversions": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", "license": "BSD-2-Clause" }, "node_modules/workbox-build/node_modules/whatwg-url": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", "license": "MIT", "dependencies": { "lodash.sortby": "^4.7.0", "tr46": "^1.0.1", "webidl-conversions": "^4.0.2" } }, "node_modules/workbox-cacheable-response": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz", "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==", "deprecated": "workbox-background-sync@6.6.0", "license": "MIT", "dependencies": { "workbox-core": "6.6.0" } }, "node_modules/workbox-core": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz", "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==", "license": "MIT" }, "node_modules/workbox-expiration": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz", "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==", "license": "MIT", "dependencies": { "idb": "^7.0.1", "workbox-core": "6.6.0" } }, "node_modules/workbox-google-analytics": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz", "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==", "deprecated": "It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained", "license": "MIT", "dependencies": { "workbox-background-sync": "6.6.0", "workbox-core": "6.6.0", "workbox-routing": "6.6.0", "workbox-strategies": "6.6.0" } }, "node_modules/workbox-navigation-preload": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz", "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==", "license": "MIT", "dependencies": { "workbox-core": "6.6.0" } }, "node_modules/workbox-precaching": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz", "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==", "license": "MIT", "dependencies": { "workbox-core": "6.6.0", "workbox-routing": "6.6.0", "workbox-strategies": "6.6.0" } }, "node_modules/workbox-range-requests": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz", "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==", "license": "MIT", "dependencies": { "workbox-core": "6.6.0" } }, "node_modules/workbox-recipes": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz", "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==", "license": "MIT", "dependencies": { "workbox-cacheable-response": "6.6.0", "workbox-core": "6.6.0", "workbox-expiration": "6.6.0", "workbox-precaching": "6.6.0", "workbox-routing": "6.6.0", "workbox-strategies": "6.6.0" } }, "node_modules/workbox-routing": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz", "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==", "license": "MIT", "dependencies": { "workbox-core": "6.6.0" } }, "node_modules/workbox-strategies": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz", "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==", "license": "MIT", "dependencies": { "workbox-core": "6.6.0" } }, "node_modules/workbox-streams": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz", "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==", "license": "MIT", "dependencies": { "workbox-core": "6.6.0", "workbox-routing": "6.6.0" } }, "node_modules/workbox-sw": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz", "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==", "license": "MIT" }, "node_modules/workbox-webpack-plugin": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz", "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==", "license": "MIT", "dependencies": { "fast-json-stable-stringify": "^2.1.0", "pretty-bytes": "^5.4.1", "upath": "^1.2.0", "webpack-sources": "^1.4.3", "workbox-build": "6.6.0" }, "engines": { "node": ">=10.0.0" }, "peerDependencies": { "webpack": "^4.4.0 || ^5.9.0" } }, "node_modules/workbox-webpack-plugin/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", "license": "MIT", "dependencies": { "source-list-map": "^2.0.0", "source-map": "~0.6.1" } }, "node_modules/workbox-window": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz", "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==", "license": "MIT", "dependencies": { "@types/trusted-types": "^2.0.2", "workbox-core": "6.6.0" } }, "node_modules/world-calendars": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/world-calendars/-/world-calendars-1.0.4.tgz", "integrity": "sha512-VGRnLJS+xJmGDPodgJRnGIDwGu0s+Cr9V2HB3EzlDZ5n0qb8h5SJtGUEkjrphZYAglEiXZ6kiXdmk0H/h/uu/w==", "license": "MIT", "dependencies": { "object-assign": "^4.1.0" } }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/wrap-ansi-cjs": { "name": "wrap-ansi", "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "license": "ISC" }, "node_modules/write-file-atomic": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" } }, "node_modules/ws": { "version": "7.5.10", "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "license": "MIT", "engines": { "node": ">=8.3.0" }, "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": "^5.0.2" }, "peerDependenciesMeta": { "bufferutil": { "optional": true }, "utf-8-validate": { "optional": true } } }, "node_modules/xml-name-validator": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", "license": "Apache-2.0" }, "node_modules/xmlchars": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "license": "MIT" }, "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "license": "MIT", "engines": { "node": ">=0.4" } }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "license": "ISC" }, "node_modules/yaml": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "license": "ISC", "engines": { "node": ">= 6" } }, "node_modules/yargs": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "license": "MIT", "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.0", "y18n": "^5.0.5", "yargs-parser": "^20.2.2" }, "engines": { "node": ">=10" } }, "node_modules/yargs-parser": { "version": "20.2.9", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } } } } import React, { useState } from 'react'; import { useNavigate } from 'react-router-dom'; function UploadPage() { const [file, setFile] = useState(null); const navigate = useNavigate(); const handleFileChange = (event) => { setFile(event.target.files[0]); }; const handleSubmit = async (event) => { event.preventDefault(); if (!file) { alert('Please select a file'); return; } const formData = new FormData(); formData.append('file', file); try { const response = await fetch('http://127.0.0.1:5000/upload', { method: 'POST', body: formData, }); const data = await response.json(); console.log('Upload response:', JSON.stringify(data, null, 2)); if (response.ok) { navigate('/visualize', { state: { ...data } }); } else { alert(data.error || 'Upload failed'); } } catch (error) { console.error('Upload error:', error); alert('Upload failed: ' + error.message); } }; return (
{error}
) : plots.length > 0 ? (Loading data...
)}